Details
-
AboutI am a god
-
SkillsCan shoot lightning at people
-
LocationYour mum
Joined devRant on 1/27/2020
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
I am planning to build a list of Gem companies.
Would crowdsource the details.
Definition: Gem companies are NOT FAANG but companies with better ethics, culture, WLB, and good salary.
Will structure it as follows:
1. Name
2. Location(s)
3. Domain
4. Website
5. Jobs page
Make this public for anyone who wants to refer. This list can be used by any job hunter to search, apply, and land a decent job.10 -
I'm creating my personal portfolio website and writing tag line for my header section but I'm not a native English person, I wrote this tag line to all the English I'm currently knew but it is gramitically incorrect and sounds to dumb can a native English speaker help me to write this in better way, Thanks in advance:D
"I'm a self-taught web developer and I've been doing web development past couple of years. I love to make cool stuff for myself and other people and am always open to learning new things, I currently pursuing my bachelor's degree."9 -
Help me think. Apparently, I have generated my little tile world. So it's basically the world map assembled from little tiles, which have their own color (pic1).
When I click on one of the plots, I want to open a 5x5 isometric tileset that represents the selected plot. (pic 2). I would like to define the amount of the mountains/water/sand/farmland by the initial RGB value of the plot. Every plot has its own id, location, position, and RGB. (pic 3). Is this possible at all or shall I look for some different approach?15 -
As we are all aware, no two programmers are identical with regard to personal preferences, pet peeves, coding style, indenting with spaces or tabs, etc.
Confession:
I have a somewhat strong fascination with SVG files/elements. Particularly icons, logos, illustrations, animations, etc. The main points of intrigue for me are the most obvious: lossless quality when scaling and usage versatility, however, it goes beyond simply appreciating the format and using it frequently. I will sit at my PC for a few hours sometimes, just "harvesting" SVG elements from websites that are rich with vector icons, et al. There is just something about SVG that gets my blood and creativity flowing. I have thousands of various SVG files from all over the web and I thoroughly enjoy using Figma to inspect and/or modify them, and to create my own designs, icons, mockups, etc.
Unrelated to SVG, but I also find myself formatting code by hand every now and then. Not like massive, obfuscated WordPress bundle/chunk files and whatnot, but just a smaller HTML page I'm working on, JSON export data, etc. I only do it until it becomes more consciously tedious, but up to that point, I find it quite therapeutic.
Question:
So, I'm just curious if there are others out there who have any similar interests, fascinations or urges, behaviours, etc.
*** NOTE: I am not a professional programmer/developer, as I do not do it for a living, but because it is my primary hobby and I am very passionate about it. So, for those who may be speculating on just what kind of a shitty abomination of a coworker I must be, fret not. Haha.
Also, if anyone happens to have knowledge of more "bare-bones" methods of scraping SVG elements from web pages, apps, etc. and feels inclined to share said knowledge, I would love to hear your thoughts about it. Thank you! :)2 -
Entire fucking world:
Shift + Enter == New Line
Spreadsheets:
Alt + Enter == New Line
Spreadsheets are America of digital world.5 -
You know i was just thinking to myself how most of the valid applications for most forms of technology are essentially related to communications, optics, number crunching, and data storage.
and mostly the only things we could trust would be used for military or intelligence purposes.
and most of the things we can trust have already been developed for the government.
so the moral of the story is support your local militia group or warlord if you want a job. because every other application is just a rehash.
on a lighter note most of the things hobbyists would do require more people than they have and/or more investment than they can afford.3 -
When I was like 8 years old or so, I had Nero installed on my older sister’s PC. Nero is a software for burning CDs.
Nero had a button called “Create CD” and 8yo me thought “what if I create CDs and sell them” 😂 I thought a fucking disc will materialize inside the drive 😂 big brain time
Interestingly enough I’d already built one PC from scratch at that age, but optical drives that can write discs were so rare to me that I didn’t even understand them. And physics. And common sense.1 -
Window 11 dev preview
- really liked the animation. It feels smooth.
- settings got rearrange like android settings and kind of make more sense than windows 10
- gaming performance is same as windows 10
- after disabling the online results in search, it's far better and speedy comapre to windows 1019 -
Previusly on programming....how can the programmer be more efficient and avoid redundant work and be productive
in todays episode.....how can the programmer spend his whole life writing presentation pages -
The moment I told my client that I can't do the ewallet project for RM 30 which is so underpriced.
He call his son who is a lawyer to sue me for the blablabla....
.......3 -
ImgBurn has one of the weirdest sounds ever..
-job completed- Some kind of funny instruments jingling
-job failed- Sexy woman voice: "Oh no! :("
-you press 'stop job' more than once'- Sexy woman voice: "Hey! I said I got it!"
Lmfao.. -
Here I am, a year after product launch, deleting features that delayed launch, introduced complexities, doubled the database load and made me miserable, because we figured out nobody has ever used them.1
-
What was your most disappointing moment as a software developer?
Mine was the realization that when you're working for someone, all they want to see is the final product. The people paying you don't give a shit whether you put your braces on a new line, your domain model doesn't call a database directly or if you're applying the best practices. Your teammates do, but the people paying you don't.
People hire you to get the job done, and that job is to solve a problem for someone. Not in the way that's best for you, but in the most effective way for them. Since I realized this, I lost some pride in my work.5 -
I decided to fix my car after car mechanic gave up... The backlight was blinking even the car was locked and turned off in the parking. Took me 4 days to figure it out. What I realised is that we are pushing tech to places where tech and electronics shouldn't be... My next car will be 1972 ford c, it doesn't have any of these modern problems.14
-
fork() can fail: this is important
Ah, fork(). The way processes make more processes. Well, one of them, anyway. It seems I have another story to tell about it.
It can fail. Got that? Are you taking this seriously? You should. fork can fail. Just like malloc, it can fail. Neither of them fail often, but when they do, you can't just ignore it. You have to do something intelligent about it.
People seem to know that fork will return 0 if you're the child and some positive number if you're the parent -- that number is the child's pid. They sock this number away and then use it later.
Guess what happens when you don't test for failure? Yep, that's right, you probably treat "-1" (fork's error result) as a pid.
That's the beginning of the pain. The true pain comes later when it's time to send a signal. Maybe you want to shut down a child process.
Do you kill(pid, signal)? Maybe you do kill(pid, 9).
Do you know what happens when pid is -1? You really should. It's Important. Yes, with a capital I.
...
...
...
Here, I'll paste from the kill(2) man page on my Linux box.
If pid equals -1, then sig is sent to every process for which the calling process has permission to send signals, except for process 1 (init), ...
See that? Killing "pid -1" is equivalent to massacring every other process you are permitted to signal. If you're root, that's probably everything. You live and init lives, but that's it. Everything else is gone gone gone.
Do you have code which manages processes? Have you ever found a machine totally dead except for the text console getty/login (which are respawned by init, naturally) and the process manager? Did you blame the oomkiller in the kernel?
It might not be the guilty party here. Go see if you killed -1.
Unix: just enough potholes and bear traps to keep an entire valley going.
Source: https://rachelbythebay.com/w/2014/...12