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
Search - "#programming #software"
-
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rich Cook10
-
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rich Cook4
-
Tips for all the programmers out there:
- A programmer is not a PC repair man, just no one seems to remember about that
- Programming is thinking, not typing.
Counting starts from zero, not one.
- Even after completing a degree and courses and working on IT projects, learning never stops. If you want to stay competitive you should also work on personal projects that force you to use languages and software you never work with on the job.
- You don’t need serious math skills to be a developer. However, you’ll need basic algebra, logic, strong problem-solving skills, and most of all, patience.
- You don’t need a degree to be a developer - programming is like almost any profession: if you’re good at it, people will pay you for your skills, regardless of how you got there.
- Sleeping with a problem, can actually solve it.14 -
My last internship. When acquiring a new project and having to give an estimate the boss/sales guy always went to the programming team first to ask them what the estimate was and then communicated that back to the client(s).
Asked him why he does that because many companies don't:
Well, the programmers are going to write the software so why the hell would *I* be the one who gives the fucking estimates?
Yes that was a good boss.4 -
Sales Guy: Hey Man, you know what? you should go back to college and advance your knowledge in Software Engineering. This way you will be an expert in programming and handling the Servers.
Me: I started programming at the age of 17 and started handling servers by the age of 18. Can I ask you something if you don't mind?
Sale Guy: Yea sure I don't mind anything
Me: Get the fuck out of here8 -
Let's get rid of the developer training: Pair Programming
Let's get rid of the software testers: Test First Programming
Let's get rid of the project managers: Agile
Let's get rid of the project planners: Scrum
Let's get rid of the system admins: DevOps
Let's get rid of the security guys: DevOpsSec
Let's get rid of the hardware budget: Bring Your Own Device
Let's get rid of the servers: Cloud Computing
Let's get rid of the other scruffy guys: Outsourcing
Let's get rid of the office space: Home Office
Let's get rid of the whole fucking company: Takeover9 -
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning"7
-
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots.
So far, the universe is winning."
-Rick Cook2 -
We're using a ticket system at work that a local company wrote specifically for IT-support companies. It's missing so many (to us) essential features that they flat out ignored the feature requests for. I started dissecting their front-end code to find ways to get the site to do what we want and find a lot of ugly code.
Stuff like if(!confirm("blablabla") == false) and whole JavaScript libraries just to perform one task in one page that are loaded on every page you visit, complaining in the js console that they are loaded in the wrong order. It also uses a websocket on a completely arbitrary port making it impossible to work with it if you are on a restricted wifi. They flat out lie about their customers not wanting an offline app even though their communications platform on which they got asked this question once again got swarmed with big customers disagreeing as the mobile perofrmance and design of the mobile webpage is just atrocious.
So i dig farther and farthee adding all the features we want into a userscript with a beat little 'custom namespace' i make pretty good progress until i find a site that does asynchronous loading of its subpages all of a sudden. They never do that anywhere else. Injecting code into the overcomolicated jQuery mess that they call code is impossible to me, so i track changes via a mutationObserver (awesome stuff for userscripts, never heard of it before) and get that running too.
The userscript got such a volume of functions in such a short time that my boss even used it to demonstrate to them what we want and asked them why they couldn't do it in a reasonable timeframe.
All in all I'm pretty proud if the script, but i hate that software companies that write such a mess of code in different coding styles all over the place even get a foot into the door.
And that's just the code part: They very veeeery often just break stuff in updates that then require multiple hotfixes throughout the day after we complain about it. These errors even go so far to break functionality completely or just throw 500s in our face. It really gives you the impression that they are not testing that thing at all.
And the worst: They actively encourage their trainees to write as much code as possible to get paid more than their contract says, so of course they just break stuff all the time to write as much as possible.
Where did i get that information you ask? They state it on ther fucking career page!
We also have reverse proxy in front of that page that manages the HTTPS encryption and Let's Encrypt renewal. Guess what: They internally check if the certificate on the machine is valid and the system refuses to work if it isn't. How do you upload a certificate to the system you asked? You don't! You have to mail it to them for them to SSH into the system and install it manually. When will that be possible you ask? SOON™.
At least after a while i got them to just disable the 'feature'.
While we are at 'features' (sorry for the bad structure): They have this genius 'smart redirect' feature that is supposed to throw you right back where you were once you're done editing something. Brilliant idea, how do they do it? Using a callback libk like everyone else? Noooo. A serverside database entry that only gets correctly updated half of the time. So while multitasking in multiple tabs because the performance of that thing almost forces you to makes it a whole lot worse you are not protected from it if you don't. Example: you did work on ticket A and save that. You get redirected to ticket B you worked on this morning even though its fucking 5 o' clock in the evening. So of course you get confused over wherever you selected the right ticket to begin with. So you have to check that almost everytime.
Alright, rant over.
Let's see if i beed to make another one after their big 'all feature requests on hold, UI redesign, everything will be fixed and much better'-update.5 -
Was programming on the privacy site REST api.
Needed a break and started searching for a good movie or documentary.
Found a documentary about big data/mass surveillance.
I now have loads of motivation for programming on this again as this showed me the importance of secure services/software.20 -
My first software teacher almost made me quit programming for life.
She spent the entire year not showing us how to make a shity app in visual basic. Zero help. We all hated it.
At the end of the year and she realised she had 'forgotten' to teach us 70% of the course. We all failed miserably! I didn't touch programming for almost 3 years. (unless you could MATLAB, which I don't).
That was when I discovered Mehran Sahami's CS106A course on the Stanford website. Honestly the best teacher I've never met! His passion is boundless and mastery of teaching is second to none. Thanks to him I discovered programming and I love it! Karol the robot should get a special mention too!
Good teachers make the world of difference.6 -
/* !rant
What do you appreciate the most when you code? A vertical ultra wide monitor makes me soooo happy. :) */10 -
Crawling through some old code and asking myself:
-Who wrote it?
-When did he write it?
-What did he think then?
-Me
-Last week
-I have no idea -
Well, it all started off with hardware-level programming involving jumpers and stuff like that... Then came Assembly, which was good.. B, C compilers. Finally came the interpreted languages, and that's where in my opinion the abstraction should've ended. But no, we needed more frameworks, more libraries, even more abstraction! Where does it end? As it seems to be going, I guess that users will have kid toys - no iToys! - for electronics and we'll be programming on with bloated Scratch GUI's. Nothing against Scratch, but that shit ain't proper programming anymore. God I can't wait for the future.
ABSTRACT ALL THE THINGS!!!
Oh and not to mention that all software will be governed in political correctness by some Alex SJW AI shit that became sentient. Not a single programming term will be non-offensive anymore, no matter how hard you try to not offend anyone, or God forbid - don't care about it because you just want to make something that's readable, usable and working!! Terms, UI names for buttons, heck even icons! REMOVE IT BECAUSE IT OFFENDS SOMEONE THAT I DON'T EVEN KNOW JACK SHIT ABOUT!!!18 -
After interviewing 3 candidates for software today, I have officially decided its time to seriously pursue creating a YouTube channel with a complete set of series to learn programming MY WAY... not the short cut way... this will go all the way to beginning and start the person up with a solid foundation to build on... I’m going to pour my knowledge into these series.
The education system has failed too many in the real world... to many people I have interviewed they think they know have a degree but are clueless.. this is unacceptable and a waste... AND way too often I see online “learn programming in 30 days or learn programming in a day”... fuck off it’s all lies .. all wrong.. wrong methods wrong philosophy and I’m done with it...
I’m set on doing it this time, I’ve put it off too long, and longer I put it off the more I see shitty interviews! Time to fix it68 -
PM: Guys, we have to upgrade Java 8
Me: hey check out all these cool functional programming stuff (lambdas)in Java 8.
PM: Sorry you can't do that. Our automated testing software isn't up to date to test Java 8. So you have to code it "vanilla"
Me: Erm, upgrade it?
PM: we didn't budget it for that.
Me: *thinks to me miself* brilliant8 -
A colleague from university cried the last week that he cannot use git. For him it was just a big pile of software BS. I didn't bother to ask, as he is a very whiney person and complains about everything.
I asked him today...
He tried to create a git repostitory on his usbdrive. How else could he work on different machines???🤔😝
I tried to introduced him to Github/Bitbucket/...
He knew about them but was afraid they would sell/use his bugriddeld programming excercises😂4 -
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.2
-
Impostor Syndrome at it's finest.
Any experienced developer knows writing good programs has very little to do with syntax and a whole lot to do with where you put it. If this guy actually did any work over his career he probably knows a ton about application architecture and design patterns without even realizing it.
source: https://quora.com/I-have-been-worki...2 -
"If debugging is the process of removing software bugs, then programming must be the process of putting them in." - E. W. Dijkstra2
-
In pair programming session with intern. She deletes something she shouldn't have.
Me: No, wait, don't delete that, undo.
Intern: ...
Intern: What is undo? How do I do that?
Me: ...
Me: *cringes internally*
Me: Uhm.
Me: Go to Edit > Undo, or press Ctrl+Z
I think I understand what is wrong, this poor individual has extremely rudimentary computer literacy skills worse than my 77-year old stepdad's and someone in management decided to give her a Junior Software Engineering position (actually paid internship) which is doing more harm than good.17 -
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.2
-
I build a 10 by 20 RGB LED-Table out of an 15€ IKEA table.
It has several effects and you can also play games like Tetris or Snake on it by using an Android App. It uses a Rasperry Pi Zero W under the hood for a WiFi and Bluetooth connection.
By using homeassistant I can now control the table by using "Ok Google, turn Table blue." - that's so strange to say.
All in all it was ~50 hours of soldering/building and ~90 hours of programming
Software of this project is open source but without building instructions.
https://github.com/Gurkengewuerz/...10 -
You are a consultant and wrote some easy scripts by copying code snippets together?
Good for you!
It makes your job easier?
Good for you!
You didn't care too much about UI because you only needed the job to be done?
That's fine!
BUT DON'T YOU DARE SELL THIS SHIT TO A CUSTOMER AND CALL YOURSELF A SOFTWARE DEVELOPER!
YOU ARE NO DEVELOPER!
YOU DON'T KNOW NOTHING ABOUT HOW TO BUILD A RELIABLE SOFTWARE.
no one needs a solid database structure?
Object oriented programming is "just another hype"?
No one cares for the coding?
FUCK YOU, AND YOUR ATTITUDE!7 -
I used to think Electron apps were gonna do great and make it more accessible for companies to produce high quality programs with ease.
Oh boy I was wrong. All it did is enable big companies with the ability to refactor all of their software to run 5 times slower, consume 10 times more memory and kill your battery 20 times faster.
I fucking hate all of this prototype fast optimize later bullshit. Can I get some value for my dollar? How come technology is just being degraded for the same of "ease of programming".
You save programming time but sacrifice end user time, cus our time just doesn't fucking matter.10 -
Overhearing first year software dev students argue that object oriented programming is pointless and makes no sense...
You're gonna have a bad time...7 -
Are there any other developers out there who find that people judge their skills based on the color scheme they use in an editor?
I started programming with software that only offered one color scheme and have never felt the need to move away from it since I'm used to it.
While I'm sitting in the office, co-workers often come up to me, take one look at the fact I'm using a light color scheme and feel the need to try and convert me to the dark side as if that will make me a better developer.
Does anybody else experience this?26 -
From the guy who wrote all the Programming Microsoft books and the Annotated Turing book. Comes this book.
This book is great for beginners great for people who don’t know a lot about software and how computers work, simple read. I like it because it also gives a different prospective, beginning at Morse code and works up from there all the way up to high level languages.
The book gives snippets of code to discuss it not really a tutorial book. It’s a different type of book that all people could understand.
Good read32 -
After seeing @Gregozor2121 share, I searched around in my bookmarks for similar stuff. Here are a couple of links that I feel is useful for everyone:
A massive list of Free programming books.
https://ebookfoundation.github.io/f...
(Also do explore anything marked as "awesome", cause it literally is awesome!! They have got tons of lists of resources for most programming languages, free software lists, famous stackoverflow answers, quotes & even Pokemon!!)
I also had this bookmarked:
https://github.com/chubin/cheat.sh
Basically cheat sheets at your command line. Pretty neat utility.8 -
"Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it?"
- Brian W. Kernighan (The Elements of Programming Style)5 -
How does programming influence a programmers daily life?
1. We start counting from zero.
2. We observe software more than using it. What is the algorithm behind it? Which Data structure is used?
3. Greeting people with "hello world".
4. Assigning variables to people.12 -
You refactor after there's code. You can't have clean code if there isn't code to be cleaned to begin with. Code first. Think of perfection later.4
-
When I was a little boy my father who was an entrepreneur back then hired a computer programmer to develop some kind of administrative software for him. He was programming on the Commodore VIC20. I was very interested in what he was doing and he gave me some books about programming basic on the VIC20. I read them, started programming and I've been hooked ever since!
As I do still remember this man's name I searched on the internet now and then to see if I could find him. End of last year I found him on FB and wrote him a message to thank him for what he did back then. It's because of him that I found out what I love doing most and have a great working career and life because I do what I love to do and get paid very well for it.
Thanks, mr. Stomp!3 -
Me and some of my friends used to crack programming jokes and ranting about jobs/software engineering etc. Other people used to get irritated by that, even s/w enggs. When I found devRant, I felt like those girls from Avicii's song "Wake me up".
I shared devRant with my friends and said "Guys, we found our people. Hurry!!" 😍😍😎😎😂😂2 -
"Why are there so many programming languages? Why don't you guys all just program in binary?" A friend of mine some of you may remember, the same one who decided to select system32 when trying out some encryption software from the internet, and who put a shutdown script in the start up programs3
-
I thought that as a senior software engineer, I would have the time and freedom to solve various interesting programming problems.
In reality, I spend most of my time doing PowerPoint presentations.5 -
!rant
I'm building a complex software that computes stuff with advanced algorithms and linear programming. That kind of software that proved itself strong, but you know a bug discovery would be a disaster.
The client is a dick, always acting as a bully in every email.
Last email, writes me about a supposed error of the software, while of course complaining that the software is complete crap to ensure that I keep a positive attitude.
After some hours of trying to find the cause of the fucking problem, I realized that the software was actually right since the beginning.
I've replied explaining *why* the software says what it says (acting like it was the most obvious thing in the world). Waiting for a response.
I hope that moron will feel humiliated at least a little bit.2 -
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
P.S. happy chrismahannukwanzika!!1 -
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
-
!rant, advice, !mine
Q: I'm [xx] years old [xyz] professional. Would that be a good idea if I try to change my career to software development right now?
A: Age is mostly doesn't matter. You can learn programming at any age. And, software is everywhere. Every background knowledge will be useful. Your prior knowledge will not be wasted.
But, should you change career?
- YES, if you deeply interested in programming.
- NO, if it's only because you feel there are better opportunities.
It's true that there may be better opportunities. But, without deep interest in the subject, you may struggle to become good software developer. Without being a good developer, your opportunities will be limited and you are likely to regret the decision.
Software development is easier for those who passionate but very difficult for those who doesn't....4 -
When I was 17 years old. I had difficulties in understanding math problem “Calculus” (I can’t remember which one was it). This one day when we were in a Computer Lab, our teacher was showing us how really software’s are made. During my time, it was vb6. I paid close attention. When I went home, I started to think things that I can make using that software so one day I went to my teacher and asked if I can have a copy of the vb6. He gave vb6 and told me that inside are few eBooks that will help in learning.
Fuck School, from that day I started to concentrate on programming only. Made a small calculator which will help me to understand a Calculus problem and double check my answer. From that day, I love programming.
I’ m 26 now and a full stack software developer. All I want to do it build cool shit, something that will blow the eyeball of my friends and that eyeball should pop out from their asshole.
Joke: The person who scored highest in the computer class was afraid to switch on the PC.1 -
A misconception that software engineers just sit in front of their laptops and code 40 hours a week, with no social interaction.
A software engineer’s job is actually pretty social. Personally, I probably spend around half of my time interacting with people. This could be partially due to 1:1, team, and other meetings. But a large part of it is spent in bouncing off ideas about your project with your project mates (especially during the planning phase), chiming in the conversations about some recent or urgent problems to help find or propose solutions, answering others’ questions, organizing some events, etc.
Of course, I do need some dedicated uninterrupted time to focus on programming and to get into the zone, but it’s certainly not the only activity I do at work. The main point to understand is that the software engineering is not a solitary, but a social job.
Overall, I’m very happy with my profession. The enjoyment I get out of my work vastly outweighs all of these points combined.1 -
"If debugging is the process of removing software bugs, then programming must be the process of putting them in." - E. W. Dijkstra3
-
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning2
-
> One of my guys from work.
> Walks up to my office
> Says "say something cursed about software development or programming that would make people cry"
> Me: "If I could I would program games and neural networks with PHP"
> Him: .......you fucking monster.
> Walks away
For reference: We both like php, but know and understand why that is a baaaaad idea.8 -
Well I met my wife and decided my current profession wasn't going to give us the life I wanted for us. So since I did IT communications in the Army, I decided to look into that field, buy I knew I didn't want to do networking; I hated it in the Army. I read about programming I saw that I could learn some for free online before I chose that as a career. I did the website courses on Codacademy and thought it was a lot of fun! So I enrolled in It's software program, got 1 quarter away from an AAS in software development, then while I was on my honeymoon, they shut all the schools down and filed bankruptcy. Now I've started all over and community college to eventually get a BA in computer science.5
-
Are developers working at Google really this incompetent?
Seriously, during the years I've been working deeply and for long time with many software products developed by Google, like the Android SDK or TensorFlow for instance, I can't find a single feature in them that isn't foundamentally wrong and badly designed starting form the basis, clearly due to an evident lack of the most basic programming knowledges... Am I missing something? Are they secretly making anyone out there think they are dumb on purpose for some occult reason? Or is it truly a dumbness matter? I don't understand.. :(15 -
Imagine yourself being a CTO back then.
Brand new Acura NSX. No MacBooks, ThinkPads are hot. Your company has its own skyscraper. CASE tools are just introduced and they’re hotter than blockchain now. You do software architecture in IBM Rational Rose, typing on your Model M and thinking really hard about Java OOP which is very hot right now.
You have Erlang servers at your own data center. You laugh at people writing in COBOL. You excited about aspect-oriented programming.
What a wonderful time.3 -
That horrific feeling when the code that worked last night.. suddenly stops working the next morning... And the debugging continues..
Ending up identifying a new corner case.....2 -
When I was little my brother and I got a ZX Spectrum 128k (James Bond edition) for Christmas. I started writing the programs to show a clock, union jack and other bits and bobs from one of these books. After probably 20ish years of not writing any code I went to university and graduated last year. I now work as helpdesk/software developer. But the ZX Spectrum programming started it all!4
-
This happened when I finished highschool.
I was looking for a programming related career at university, and I had two options: Computer systems engineering or Software engineering. I commented this to my mom.
Me: Mom, this university offers Software engineering. The thing is that the campus is 1 hour from the city and it’s a new career, so I don’t know if it’s a good idea or not.
Mom: Why Software engineering? Don’t you want to be a developer?
Me: Yes, that’s why I was thinking of taking Software engineering
...
Mom: Is not “Software” what is inside the computer? (Inside the chasis on desktop computers)
I started laughing so hard 😂 and, of course, I ran away4 -
Everytime I hear the word 'coding' or 'code' in regard to programming, I get a twitch of annoyance in my brain. Seriously, that word is so overused that it's now cliche to me. And it does nothing to distinguish the kind of language someone is using. Is a software engineer solving an advanced problem using C or is it some newby who only knows HTML? Please stop saying thing like, 'i know how to code' when all you know it's HTML. Be specific, you're not fooling anyone. Also, please, don't use that phrase if you're an advanced software engineer either. You're better than that.18
-
Some fun facts :
☻ Programmers spend approximately 30% of the time surfing the source code 😁
☻ Progress in programming can be classified into 4 stages:
(a). Complex Programming
(b). Making Progress
(c). Slow Progress
(d). Stuck
☻ Programmers have a tendency to report their problems incompletely
☻ The main error messages, execution times and runtime compilation errors and the average time to solve them
☻ The software maintenance consumes more than 50% of the effort
☻ Ctrl C, Ctrl V, and Ctrl-Z have saved more lives than Batman tbh😇3 -
Working as a software engineer but: co-workers randomly walk into my office to ask me <<insert random IT problem (i.e. mouse not working etc.)>> while I'm deeply focused programming. Trying to close my office door results in co-workers backbiting...
Why can't they just go to the IT administrator who's work it is to handle their fucking problems?3 -
First year: intro to programming, basic data structures and algos, parallel programming, databases and a project to finish it. Homework should be kept track of via some version control. Should also be some calculus and linear algebra.
Second year:
Introduce more complex subjects such as programming paradigms, compilers and language theory, low level programming + logic design + basic processor design, logic for system verification, statistics and graph theory. Should also be a project with a company.
Year three:
Advanced algos, datastructures and algorithm analysis. Intro to Computer and data security. Optional courses in graphics programming, machine learning, compilers and automata, embedded systems etc. ends with a big project that goes in depth into a CS subject, not a regular software project in java basically.4 -
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to build bigger and better idiots. So far, the universe is winning. " - Rick Cook1
-
HR is getting so desperate they are prescheduling me interviews attached with CVs in the hopes that I will interview the candidates for a senior, even though the candidates have no experience whatsoever in embedded software programming. Workday, JIRA and Excel does not count you absolute fucknuggets.
For fuck sake, I asked management to hire new grads or juniors, at least I can get a person motivated to learn, but I swear they just don't listen.
They just are content with wasting my time lol3 -
I started thinking and worrying about numbers much more than before
in the US, you write numbers like this:
1,000.00
in Germany usually like this:
1.000,00
and in programming languages like this:
1000.00
now i wonder how to type a number, whenever i have to use german software
should i use the US way, the german way or the dev way? the wrong one could possibly break it11 -
Java 12 is here.
Why so many releases now.
It was good earlier, years taken for next release.
Atleast we could update our resumes properly.15 -
I think this is both a blessing and a curse for me.
Whenever I'm developing something, I ALWAYS keep coming up with new (good) feature ideas WHILE programming. Now, this isn't as bad because they enrich the software/service mostly but goddamn, it's so fucking annoying when I'm working on a certain function/feature and I change stuff three motherfucking trillion times before finishing it because I keep coming up with fifteen billion new ideas.
In the end it's all worth it but at some moments it gets really fucking annoying.9 -
Today I had a programming exam
We had to read a request, write uml, use case etc...
I think "it's going to be easy!"
Than I remember that for some unholy reason we use java7
Than I remember that the keyword to automatically add getters and setters was added in java10
Had to write getters and setters by hand, on a piece of paper, for 5 classes...
I hate my university, we are Information Engineering that is the closest thing we have to Software Engineering in my city and we still do our programming exams on paper, that doesn't test your ability to program, but your ability to learn a load of information by memory9 -
I started programming when I was 12, my parents saw me on websites and games, so their first thought was "he's playing!"
Today, 3 years later, I still use and make websites and software.
And yes, they still think that I'm playing, wasting my time and when I try to explain them what I really do and it is my life, they don't seem to understand...
My father knows nothing about computers, he don't want to learn anything about it, he just know how to use his phone.
Hey my work is awesome!3 -
Crushed my first week at the new job. I'm not a software engineer yet, but it's a QA job with a fair amount of test automation, so lots of programming and another step toward my goal.1
-
I used to think musk was smart af, genius programmer until very recently after he took over Twitter. The more he says about programming probably to impress the groupies the more I realized he has no idea Abt the topic.
He might know things about manufacturing and rockets but dude level of ignorance in software is astonishing19 -
!rant
Is a bachelor's degree worth it?
Context:
Up until yesterday, I was planning on not getting a Bacherlor's degree related to programming. I'm currently an intern and I believe that they'll want to keep me afterwards. Even it they don't, my old boss has a junior developer position opening soon and he asked me if I was interested.
I think I'm a good programmer, but I'm not here to boast, but rather, I want to know your opinion:
Is getting a bachelor's degree in software engineering worth it?
I know this topic is not new and has been asked in many forums, but I noticed a repetitive trend: people who have the degree say it's worth it and people who don't say it's not.
TL;DR:
Is getting a bachelor's degree in software engineering worth it? Why?16 -
Today a teacher asked us about our hobbys. A classmate said 'programming' and after the lesson I asked him which languages he uses. He answered:
"Languages? What languages? I used that software you can program shortcuts with."1 -
Not behing payed after software is complete...
Whanted to go freelance when I was 20, got a 'real job ' and stopped programming for years...3 -
In two days, on 28 June, I'll know whether I'm going to enter the path of becoming a software dev or if I have to try again next year. Wish me luck fam.7
-
OKAY
WHO THE FUCK DESIGNED THIS STUPID ANDROID EMULATOR.
ALL I WANT TO DO IS LISTEN TO MY MUSIC WHILE PROGRAMMING
BUT NOOOOOOO
WHENEVER THE FUCKING EMULATOR IS OPEN THE QUALITY OF THE MUSIC IN MY BLUETOOTH HEADPHONES GOES TO aBsOluTe SHIT.
CMON GUYS. GET YOUR HEADPHONES OUT OF YOUR ASS AND TEST YOUR FUCKING SOFTWARE12 -
I really like this book on the basis of the philosophy overall, no this doesn’t solve all problems but it’s a good baseline of “guidelines/rules” to program by. Good metrics or goals to architect and design software projects high and low level projects.
Fight Software Rot
Avoid duplicate code
Write Flexible, dynamic, adaptable code
Not cargo cult programming and programming by coincidence.
Make robust code, contracts/asserts/exceptions
Test, Test, and TEST again and Continue testing.. this is a big one.. not so much meaning TDD.. but just testing in general never stop trying to break your software.. FIND the bugs.. you should want to find your bugs. Even after releasing code the field continue testing.24 -
Was at a party the other day and was talking to some randoms and they asked me about programming and said it must be fun and fast paced to do it on your own...
All I did was smile and told them I have spent 10 days trying to decide on 16 colour codes for a part of the software the average consumer will never even see...
Game development everybody!2 -
I like what I do for a living.
I build software, mostly from scratch or early stage products. Those are different industries, different companies, different technologies, frameworks and languages. Systems that impact economy in a different way.
When I develop software I am picking different parts of same project and try to understand how companies earn money and what are advantages of their software. What are required regulations and requirements to sell the stuff.
How the money flows from client and what they’re changing for. I especially try to understand stuff from business perspective.
When I pay my debts and luckily be still alive but unemployed and with minimum income from stocks / properties rental I will have plenty of time to duplicate many of those businesses.
I picked programming cause it’s touching all parts of economy basically without any skill requirements and certifications. It’s young impactful industry that is luckily not yet regulated. You just need laptop, like to solve puzzles and have plenty of free time and you can create everything. Never forget about it.
Cloud corporations try to make people think differently but it’s just that simple.7 -
If you woke up tomorrow and it was the year 2000, but you only remembered tech stuff from the future. What would you do?11
-
I worked on a game jam last year, and for the first time I managed to finish a full software project that wasn't for a job or university. It was really fun to work on, and seeing my vision come to life, even if compromises had to be made, as well as applying all the programming and project management knowledge I'd picked up until then was an experience unlike anything I'd had before.
The community aspect was great too, everybody shared and discussed each other's games and were super friendly and encouraging. -
Finally after working on programming languages and Data Structures for too long developing my first software with a GUI. In python. 😀😀😀
Though its only a calculator for now. 😅😅😅😅3 -
"This is the Unix philosophy: Write programs that do one thing and do it well. Write programs to work together. Write programs to handle text streams, because that is a universal interface." -Doug McIlroy
In today's context we can draw parallels with the microservice approach towards building software.2 -
Waiting for software dev internship to start in a few weeks.
Fellow intern from my uni: "I hope they don't sit us at a desk and get us to do a programming task on our own"
"yeah that is totally not going to happen"4 -
A group of ten top software engineers is sent to a class for aspiring managers.
The teacher walks in and asks this question:"You work for a software company which develops avionics (software that controls the instruments of an airplane).
One day you are taking a business trip. As you get on the plane you see a plaque that says this plane is using a beta of the software your team developed. Who would get off?"Nine developers raised their hands.
The teacher looked at the tenth and asked, "Why would you stay on?
"The tenth said, "if my team wrote the software, the plane would not get off the ground2 -
Apart from the usuals like K&R, John McCarthy, Simon Peyton-Jones, Joe Armstrong, Bjarne Stroustroup, and so on, I'd like to mention one more, sort of different from the rest.
Ton Roosendaal.
He started Blender and oversaw its crowdfunded release as an open source project (look it up, it's pretty cool), provides excellent leadership at the Blender Foundation, is a crack programmer, very nice dude and down to earth. His leadership, vision, and handling of Blender's growth as FOSS software and artist-focused DCC tool is amazing. He might not be the brains behind Blender's technical advances all that much (now) but he's a great example of what one can do for software beyond just programming. -
When you become or became a programmer / software engineer, what are or did you reward yourself with for your hard work and success? For me, I want a Subaru STI😁12
-
Being 46 and finally having the chance to focus on software development after years of BA/PM roles, flogging the market trying to get a junior gig, then one day painting a shed with my 16 year old who I introduced to programming about 6 months ago and listen to him speak at length on protocol programming, finer variances between python and swift and his own development of a text based RPG system where he is creating randomized map generation, gear customization etc. only to realize as paint glides down my arm:
" I'M FREEKIN' OLD!!!!"
When did my brain stop absorbing like a sponge and behave more like a brick?1 -
Some people get ego boost when they get positions like team lead or manager for software development team. In a nutshell you don't know shit about programming how the fuck you became tech lead? You fucked up the entire project that you managed and now shifting blame on someone else. Well fuck you!9
-
I have been a software engineer for about 14 years now, in the beginning, I thought to be smart meant writing methods that do everything and more. however as I matured in the industry, I learned. keep it simple. 1 method 1 responsibility. One should trail my code and never have to find themselves where they were before in the journey. a journey should have one purpose and not pivot (context disclaimer here) as it goes. good programming is simple programming, its a story not a case of multiple endings.3
-
Yesterday was the first day of an "Advanced" C programming class. I looked at the first homework afterwards and saw this:
NEVER use 'assert'. Real programmers don't use assert in big software projects because it makes your code stop.
Who the... What... How... Why would you...
*sigh* it's going to be a long two months.5 -
Within our company someone put out a survey for software developers.
The one question was ”What question would you want to ask other software developers at our company?"
One of the responses was "Why am I such an embarrassment to programming?"
I feel like I need to tell this person about devrant.1 -
Started my first software internship and I now understand the coffee jokes on here. There is about 5 machines scattered throughout the building ready for all your programming needs 😂😂😂2
-
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
-
Hi devRant;
What’s your opinion on ‘open source’
Pros for and cons against its use. I’m curious
Reason for my question
I just met a programmer on the bus who is vehemently against open source starting he goes out of his way to not use anything ‘open source’
I myself use open source tools everyday in both my programming classes and outside projects. I vehemently believe the global collaboration potential of the open source concept is key to building bigger and better software and hardware in the future9 -
Traditional programming means spending *days or even weeks* to write instructions to make the software do what *you* want it to do.
AI modelling means spending *weeks or even months* to tweak instructions just to find that the software does whatever *it* wants to do.2 -
Do you know guys why a programming bug is called so? It's because the very first time a software crashed it was because of a bug ( a real bug stuck in a bus on the machine!) That caused that 😂 imagine if something else was stuck instead! Like someone'sfinger : hey I fixed that finger but still got 2 critical fingers and 4 small ones7
-
That feeling when you've been programming, scripting and developing games, software and web pages for nearly a decade and you still feel like a talentless hack that doesn't deserve the wages you are paid, and constantly fear being exposed as a fraud by your peers... :x6
-
My dad got us a a home computer on ~1995 without video games. But he brought a software where we can program our own games. So, we learn programming.4
-
I love technology. I love programming and developing software. I love self-learning new things.
But I REALLY REALLY REALLY hate Math. And suck at it too.
I want to study comp-sci at the university but I'm scared of the math.
Any tips?13 -
Fucking german computer science classes
You get a few UML structograms and have to finish a half finished project. It's the most boring way to learn programming ever. Instead of giving us a task or a project to work on, it's literally translating UML to C#.
Is this what one is gonna do later as a software dev?7 -
I finally finished my Bachelors Degree that I was studying for while working 40-60h a week with 2 children.
During this whole time (3.5 years) I was totally into learning everything. Not just for my studies but I read many books about programming and architecture read thousands of blog posts and loved it to be a software developer.
And now suddenly I lost every interest in reading even one tiny post.
Software Development got boring and I just don't care about it anymore.
Probably just a down period, but who knows.
At least I finally can build my unfinished guitars that had to wait for so long. working on them makes me really feel happy 😊5 -
Best career decision:
Doing many different jobs before programming, move to capital city to pursue first software development job without money, college degree, place to stay and plans for future.
Worst career choice:
Probably would be staying in Poland despite many opportunities to travel around the world, earn big money or work on really cool things as software developer but I won’t know until I die.2 -
We need to separate concerns. Too many CS courses skip over theory and teach outdated tools and technologies, often those of a sponsor who is failing in the market.
Computer Science is supposed to be about the science and formalisms of computation. The job of programming is Software Engineering. A few colleges have SE degrees, but too few.
No one understands anymore the likes of Knuth, McCarthy, Dijkstra, and Hoare. I'm willing to bet that most of you have never read any of their work. Few people really understand their impact on the tools we use today or the importance of their work. CS courses should teach that and expand on it so we can get more huge leaps in tools and concepts.
But we also need Software Engineering to teach students current tools and the latest paradigms.
CS, as it is, doesn't do that. -
!rant (all ranters should read)
Today I was at university, doing some C low-level stuff. Then I looked my Professor.
Holy fucking shit, this man (and obviously the others) learned programming without google, stackoverflow, youtube and online doc/forum/examples/explanation.
I also believe that some of them could not compile and run at home their software.
MASSIVE RESPECT FOR YOU ALL !1 -
hey guys, i was recently appointed to be devops engineer in a company. i did want to be a software developer though but they chose me for devops because my lack of java knowledge and a bit knowledge of linux and stuff.
my question for u guys is that... is devops good? for future career as well.
i m quite afraid to be honest, wouldn't want to have made a bad career decision. 😅😅
i must admit i have always enjoyed programming and hence i am worried in devops.40 -
I had just finished programmer school (Air Force Tech School), and was all set to wade into the world of C++ programming. Got to my first job, and they set my down at a VT220 terminal on a VAX 11/780 and said, "You are the new sys admin." Talk about disappointment. My first actual coding? I got to apply a software patch to a Gould SEL 67 that only had a Mod 40 TTY as an interface ... yes, pretty much a typewriter ... no terminal screen. I am so happy technology has advanced as much as it has.
-
"If debugging is the process of removing software bugs, then programming must be the process of putting them in..."4
-
Mine was not CS but software engineering. I had been programming for 5 years, and I think anything before my degree was just so bad. No patterns or anything. It was really good in the way that I learned how to do things well, not exactly learning about the technologies. I also have an internship that I must do for at least 3 months before getting the degree which also helps.3
-
My job. Working in a small IT department. Web programming most of the day and being able to help people with their phones, software, internet connection, and so on...
The only thing I sometimes wished for were some other devs in my company that would understand me and my problems and with whom I could discuss new technologies.
But now I got devrant. I'll be fine from now on.1 -
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to build bigger and better idiots. So far the universe is winning." ~~ Rick Cook
This guy single handedly explained GANs back in 90s and nobody noticed -
I'd like to follow some of you on GitHub to see what you are working on! 😊
Post your GitHub profiles in the comments if you are active 👍11 -
Hello everyone.
So, i am thinking about where to get lists of programming languages, frameworks and softwares that is fundamental. For example:
If i would like to develop a web site. I would use html, css, js & php. Maybe a site or frameworks for reference and 'roadmap'. I want to become a good programmer.6 -
1 - I love coding because since when I was a kid I really loved to solve problems and create things
2 - I always tried to understand how computers worked, and how could yo make a program because when I was a kid I was almost always on the computer and my dream was to create a virus 😂
3 - I was studying my baccalaureate and I hadn't decided what to study in the university. I was only playing videogames and installing software to make jokes. So, my computing teacher taught me to code in VB.net and how to manage a local network so I decided to study and IT degree before going to the university, and when I was studying that I falled in love with programming so I'm currently in the university studying software development engineer -
Working on Django as a server side programming, and having a little bit work with htmls and JavaScript.
What I am called then ?
A. Software Developer
B. Backend software developer
C. Web developer
D. Other. Mention it13 -
While in Mec engineering university program I was in a robocup team (small robots playing soccer against an other team of robots using AI).
I designed the mechanical structure of the robots. After 2 years of development (while all those years our goal was to participate in the upcoming international tournament) we realized the software part of the project was mismanaged and really far behind. I couldn't accept that and learned how to code over night. Couldn't let the project I put so much time in die because of someone else.
With the help of others that came from other backgrounds than software, we made it the to tournament and the following two others after this one.
Now my job involves programming more than standard mec engineering. It also pushed me to do a masters in robotics in which I developed my coding skills even more.3 -
Just accepted my first "real" job as a front end web developer at a software dev shop! I say "real" because I have no clout at my current job and I'm repeatedly thrown under the bus by the head of IT and my tech recommendations are typically scoffed at.
Really ready to be in a place where everyone else breathes programming. Yay.3 -
Hey there! :)
I have been lurking for half a year now and finally decided to create an account to share my stories in the future years.
I'm gonna start studying software-engineering for my bachelor's degree within the next month after already having studied programming for the past five years so I hope I can balance work, study and fun as well as I plan to.
Looking forward to that and generally having a good time on devRant. ^^3 -
The number of scripters and 'data scientists' that call themselves developers will increase, the true art of development will become sidelined and the world's code will become progressively more bloated and inefficient as the rift between hardware and software widens to an echoey chasm.
Then quantum processors will come along, requiring new logic, languages and practices, and once again the true developers will rise up and pave the way for a bunch of entitled, know-it-all and self-promoting QuarkaScripters to come along decades later and pretend like they invented programming. -
My biggest data loss and also contributed in me getting into computer stuff was when dad formatted the computer before I was able to take a backup, felt so bad at that time it had all my photos from school with friends.
So instead of crying in the corner and me not knowing they can be brought back, at least half of them, I started learning how computers work, how software work, what type of software is out there ...etc. Though that brought more work for dad having to format my mess every month of so XD
But I ended up learning a lot of new things. Then one programming class at school sent me into the dev world2 -
Since im still a student in software dev (am I still welcome here on devrant? :P), it is easy for me to not do coding. Specially because the summerbreak just started. However I am going to try and learn some stuff about network programming, that caught my attention :D3
-
Programming deeply inspired me before it became my day job. Before Facebook conquered the front-end and API code space. Before Electron apps. Before D. Trump became president. Each of those dealt a hit to either my passion for dev or motivation to create software for others10
-
"Programming today is a race between software engineers striving to build bigger and better idiot-proof software, and the universe trying to build bigger and better idiots. So far, the universe is winning."
Source: Can't remember -
If debugging is the process of removing software bugs, then programming must be the process of putting them in.
-
Am I the only one that cringes when I see software developer consistently ranked as one of the best jobs to have? Are other jobs that horrible that this is as good as it gets? I’m probably too cynical I suppose.
I feel like I was seduced by the fun of programming only to have the corporate enterprise suck my soul dry.9 -
Why the fuck do everyone want to teach "web development ", "programming ", "software engineer"...."coding". Everywhere I visit - I am hunted with "learn coding".8
-
Dijkstra 1988: "Unfathomed misunderstanding is further revealed by the term 'software maintenance', as a result of which many people continue to believe that programs —and even programming languages themselves— are subject to wear and tear. Your car needs maintenance too, doesn't it?"
npm 2018: "Naaaah!" -
Being a trainee and a student over distance while taking part in developer conventions and meetups.
I also read books and tend my pet projects with which I try to dance on the bloody edge.
Also see this:
https://github.com/vhf/... -
When I started uni and I took my first programming subject (Data Structures) I hated it as much as I could. My teacher was a complete @$$hole, he wasn't good at teaching, and most people were failing the subject. When I finished that semester I swore I would never be a programmer...
11 years later and I have a Master's in IT and have been working as a Software Engineer for 6+ years. #life
I wish I had a better experience learning the basics1 -
Hello everyone !
I am a self taught programmer. Currently in last semester in electronics engineering. I want to become a software developer but can't decide the right career path for me to take. I like back end, Android, Data structures and algorithm, Parallel programming, Machine learning and computer vision, and even security. I am afraid I will remain the jack off all trades and won't be the master of any. This way I won't be doing any good in my career. Any advice as what to do ?7 -
What if there was like a 1-2 day workshop that helped recruiters be more technically fluent? Like the basics of software development (not programming, but concepts and what engineers really do)?6
-
What are the chances of landing any kind of job in the software field without my CS bachelor's degree completed?
Cuz I'm so tired of the impractical bullshit I've had to do in class for the last 2 or 3 years. I just don't get why the University does not prepare people to work in dev teams yet it seems to be a prerequisite for any consideration to be hired in the field.
Edit: I'm quite familiar with programming and learn quickly. But is that not sufficient?6 -
Do you need a degree to become a software engineer ?
Now this is a question I’ve seen many people ask. I personally have no degree and I’ve been doing programming for the past 10 years (since I was 18 ). Whatever I learned, I learned from reading and watching tutorials.
So far It wasn’t a problem for me.
What do u guys think and what is your experience is this matter ?9 -
If you have 15 minutes now , and the whole world is listening to your advice to be a software engineer.
What would your advice be? (Your advice will some how reflect WHAT YOU REALLY WANT TO KNOW when you were beginner)
I will go first, "Do not compare yourself when you pick up programming, it take times, understanding and passion to lead you to become one. Be consistent in aspect of learning more. Focus one , master one language and master another one. Don't look down on yourself."15 -
What's your opinion about Dreamweaver? I haven't seen any web devs talking about it in all of the space of programming community. Is this because it's a software more focused on design itself or have some special motive either?4
-
This is a real history..
So i went to my friend’s party.. and he invited this hot girl.. (u know the girl that would never talk to any programmer)..
so she started asking me about programming, maths, software...
and I was like wtf.. is this real? (because u guys know that this is impossible jaja)
Actually, we spent all night talking about it..
for some reason she started hanging out with me and my friend..
now we are dating.. kind of crazy uh?
(she is an engineer btw)4 -
Learning programming, networking, robotics, and other technical skills are very important but do not forget that these are future working software developers.
They will need to know a lot more intangibles. Like effective pair programming, performing proper git pull requests and code reviews, estimating work, and general problem-solving skills and more.
These people will be learning technical skills for the rest of their life (if they are smart about it) but what can really get them ahead is the ability to have good foundational skills and then build the technical skills around them over time. -
Convo b/w female software engineer and her boyfriend;
him-Hey babe
her-Hello world;
him-??
her-Ohh no, I meant to say hy babe, actually u r my whole world;
him-Ooo pls!...wt were u dnh anyways?
her-been doing coding for last 12 hrs with boss;
him-gosh!! ...did u eat?
her-0;
him-??
her- I mean false;
him-false?
her-sorry , I meant no;
him-ur mom called , so call her
her-mom();
him-WTF?????
her-I will call her...dont worry;
him-I think u should rest for a while
her-while(project!=over) {work();}
him-U r enjoying this...irritating me...aren't u?
her-what? :)
him-When will u come home?
her-if(boss==leaves){cout<<"soon"<<endl;}
him-Now its too much...its really annoying...are u getting me? Have u lost ur mind?
her-ERROR 404....mind not found!
him-u do realise...I m not getting any of ur jokes
her-JokeOutOfBoundException
him-Are u drunk? How many eyes do I have?
her-1
him-Idiot , I have 2 eyes
her-oh sorry I counted from 0
him-i think we should break up
her-oh no!!, dont break; continue;
him-thats it, urBF.exit()
her-No wait..... ; is imp , write like....urBF.exit();3 -
I like being diverse in what I can program. I like software development, web development, networking programming, I’m starting to get into embedding programming and using lower level languages like C/C++ (I’ve used them before but not for anything practical) and I enjoy the diversity. It makes me feel good knowing I can extend my programming knowledge.
Also I like having project ideas lined up so I know what I want to do next. And if I don’t finish one I know is easy but I can’t figure out, I CANT MOVE ON! I have to finish it. It’ll drive me fucking nuts.11 -
I started to learn programming to be liked by a girl and since then I periodically ask myself if this is really for me... And periodically, right as I start thinking it may not be for me, I find myself solving issues programming stuff, seeing parallelism between software development and anything and randomly toss out the classical: "you know, with and Arduino you could(...)" To people put of nowhere.
So yeah. Guess it's for me. I hate it but... Wait, I could automate my windows depending on the difference between internal and external temperature... Hmm... Later guys, got a project to deal with!14 -
AAAAAAAA I want to talk with my friends about programming and software, but there is only one friend who understands even a BIT (Rest he doesn't just care about probably). It's driving me crazy that i can't talk with any of my friends about programming, because they don't know shit about it. I really can't make new friends either because i somehow have forgotten how to talk to humans (i'm extremely introverted lol). It's paiful when you have to explain a programming meme.8
-
Is Vim viable for Java ecosystem?
Im using vim only for years for various languages and I never had a problem. I dont use IDE or any GUI software almost never for programming.
Im being reassigned to a Java Spring project at my company, and my colleges are telling me I should start using some IDE and what not, but none of them gave me any real reason.
So Im asking is it really that inconviniet to work without IDE in Java/Spring ecosystem? Some real reasons pls.
Im developing in linux, and I know my way in bash5 -
I dont understand why we must use PHP to
understand OOP
Im a student software developer and this is the first time i will learn about Object Oriented programming but i dont know man im really confused why our prof makes us use PHP to understand the concept of OOP rather than to learn Python or Java which is ten times easier for an OOP based application
I can understand that PHP can be used for OOP but why just why... can someone please explain why this might be and how does it feel to use PHP for OOP purpouses9 -
I just recalled I once had to explain to my CTO what’s the difference between stack and heap memory
It baffled me a little bit, but contrary to what one might perhaps expect, this was a guy who was already making a living off of programming for about ten years selling his software to various clients, so he was clearly competent enough to create software that works, and he had in fact put this startup on its feet operationally with it already being profitable before outside investments were secured
And here I was with my theoretical CS knowledge making zero bucks before getting this job8 -
There are too many people that consider software engineering a "job". Anyone else here love the process, people and programming? How do people end up at these bad companies and WHY DO THEY STAY??!?!?! There is so much demand for programmers, designers, software engineers, et al. Such that I do not understand how people stay at these companies that hire people who want to make money instead of code.2
-
3 weeks into Elixir and Functional programming in general. Words can't describe how much I love developing software with this toolset. Can this get any better ?4
-
Things nobody told you when starting to learn a new programming language:
Congratulations! You became a collector. From now on you will collect websites, books and a ton of related software.4 -
Gonna be applying for college. Gonna major in programming.. I've always read the horror stories.. I hope my teachers arent retarded and dont make me use shit software..
Any advice?..3 -
I am sick of people discriminating against programming we are the ones that create the software for the parademocs and we are the ones that make the games, so this has to stop.5
-
- Understand programming and how the software work... then choose whatever programming language to build it, it is just Scripting after all.
-
In software architecture definitely my own architecture in a programming project for uni
In building architecture the recently "modernised" Park Inn hotel in Bratislava 😅2 -
I am a programming teacher in Colombia and the week's topic is very useful for me, thanks to all for writing your ideas, but in the other hand I think that some points have not been understood, for example in my college we use in the beginning of the course notepad so that the students learn the sintaxis and good practices and they no dependent of a especific tool or Ide (an advantage of this practice is that the student learn to use command tools easily). We want that que student learn programming and not a language or software . This because in our experience the students learn to use a tool but not to resolve a problem and this is bad in a long term.2
-
Finish my only pet project;
Learn a new compiled language;
Get better at functional programming;
Read more books about networks and software engineering;3 -
What if the programming community had something like the Oscars, to celebrate, cleanly coded, cutting edge software, with an award ceremony and everything... and broadcasted on tv.
I bet you'd get more respect at work.3 -
I like to say programming is the art of "creative logic". Much like architecture has an aesthetic to consider or cooking has well-defined procedures with greatly varying inputs and outputs, there has to be room for creativity, be it at the planning stage or during wild improvisation sessions.
Without that creative aspect, software development sounds dreary to me.
Where science meets art is where the magic happens.
If only the artists shared this view and actually took an interest in the technical side...1 -
Complete my Clojure POC and do a knowledge sharing session in work on Functional Programming. Also get promoted to Senior Software Engineer.
-
As a Software Design junky, I just enjoy using TypeScript for more conventional C-style programming structures in JavaScript !2
-
I've been working as a developer for 10 years now... I got my first software development job when I was still learning for my masters.
After all this time I have switched programming languages and product types a few times from web development to mobile apps to desktop software (C++, CEF, QT,).
And I have come to the conclusion that I want early retirement... like right now retirement... I'm done dealing with management that doesn't understand shit... dealing with people we have outsourced part of the shit to... needing to fix stuff that is broken after some other person refactored the code and didn't fully test it and it somehow got approved... dealing with people that think that "know better" and implemented things like that 5 years ago because they thought like "THAT" and will not accept my merge request because of that.
Like don't get me wrong I love to make and develop software, but since this is the 3rd job in the row with a toxic environment like this I feel like I need to move to the country side and open up a farm or something :|2 -
At this point, I feel so far from tech and programming so nothing is exciting anymore, although, I'm working as a "software engineer".
Every job feels deadend and requires nothing but absolute mundane skills. I mean "make the text bigger"-joke does not come out of thin air. No science, engineering, and little-to-no standards are involved in most jobs.
This leads us to this: you can get excited about rust, fp, extra dazzling clean code, uncle Bob's sect of salvation coders or whatever but you'll be hit with reality so don't get your hopes up.1 -
What does a job as a Software Developer Feels like ?
( I was wondering what tasks are exactly needed to be done when you're finally employed as a Software Developer proficient in one or more programming languages. )
Have a Nice day ;)question developer software development programming software engineering coding software developer jobs3 -
So what's a good programming laptop anyway?
Just got a €1300 Asus at work. Beautiful machine, 4 cores, 16gb RAM,
BUT the trackpad sucks. Really sucks, as in you can't work with it. I'll be scrolling using two fingers, but half the time I just see the cursor going down. Is it only Macbooks that are decent in this field? Is my only hope to get a macbook and run Windows in boot camp? (rly need windows since my companies software is written in .Net8 -
What's your thoughts on stored procedures(of DBs)?
What are the pros and the cost you found or perceived?
When they are opportune?
Overusing them more than a programming language is an abuse?
I was introduced to a software started initially by economy\finance people which knew a little bit programming, nonetheless their doing became messy though time and at a certain point hired a team of 4 people(from my company) to deal with it, but the approach of the two programmers to build most of the framework on calling stored procedures or queries makes me want to puke, there are almost no layers of separation of concern in place x_x3 -
To all who were influenced by the React license thing, watch this:
https://youtu.be/hnHsZQ1JDII
It's a really good explanation of the situation and how software patents and licenses work
PS. FunFunFunction does really cool videos about JS and functional programming so also check out his other stuff if you're into that kind of thing2 -
*phases of learning to program*
Phase 1:
Yeah its so easy i love programming i'm gonna be a top programmer.
Phase 2:
Uuuhg.. programming sucks,i think i'm not meant for it,should i give up do something else maybe...
#programming #100DaysOfCode #mumbai #love #indian #gujarati #vadodarabarodacity #instagram #vadodaradiary #msubaroda #aapduvadodara #vadodaranews #vadodarawomen #officialvadodara #vadodaracity #barodarocks #barodagoogle #vadodarafashion #vadodara_lover #barodadiaries #barodamirror #india #vadodarabaroda #geek #developerslife #webdev #php #design #css #java #developers #html #softwarehouse #softwares #softwaredevelopment #technology #coderlife #designer #softwareengineer #webdesigner #codingisfun #programmerproblems #programmerjokes #programmerlifestyle #programmergirl #webdevelopment #developerlife #devlife #webdesign #programmersday #softwareengineering #programmering #programmerhumor #development #dev #programmerlife #programmer #developer #vadodara #coding #software #baroda #programming #vadodaradiaries #vadodara_baroda #coder #webdeveloper #gujarat #programmerslife #javascript #vadodara_igers #codinglife #barodacity #code #vadodarablogger #programmers #softwaredeveloper #ourvadodara #goals #beyourself #happy #smile #lifeisgood #socialmedia #success #friday2 -
Hi I just joined this great Community and here is my thoughts about programming tap "++" if you agree if not then change your mind.
For me programming is like becoming wizard of next generation. Like wizard you can control or create anything because in future you will find electronics containing programs written by a wizard (programmer). We are not people who can repair computer but greater then that because a pc is just a box without programs (software)
You are reading this article because you loves challenges and you are hard working too.1 -
Soo.. what do you do as a software developer, rank senior, when you turn 35 and programming kinda becomes repetitive. Data source this, controller that, factory f-yeah. Well, you sign up for math studies. And then you realize you forgot everything down to multiplication tables... fuck3
-
As a developer I never understood the intended benefit of standups. Issues + a scrum/kanban board like trello or GitHub project + a chat for quick questions or to schedule an ad-hoc pair programming session should be enough to make everyone know everything they need to know about the project status at any time.
Obliging developers to talk in a group session to reiterate in a more verbose way what they already wrote down when working on it, will make a lot of people uncomfortable. Talking too much or not complying to the talking rules is an expected side effect besides anxiety and reduced productivity.
If you want a talk show, hire talk masters.
If you want software development, hire software developers.
Don't confuse one with the other!10 -
Okay, this time it's BINGO game for software testers/QA....
C'mon, tell us your bingo score 😄joke/meme testing programming fun programming qa bingo software tester coding fun tester software testing2 -
I work on my high school's tech team but all we do is hardware replacement work which I've been doing since I know how to read disassembly instructions. (I was a bored destructive kid)
I thought I was going to enjoy work and learn. Now all I do is work with immature children who know nothing and learn programming on my own when we don't have parts in
Also attempt to educate my 'coworkers' when we do have software issues I know about -
Went to meet up last night. I was there acting like I have no experience and was just starting to learn programming. Suddenly this guy turns and faced me he said non verbatim “don’t use JavaScript thats the worst programming language, its used by wanna be software engineer. Use c# they have blazor so you wont have to code using JS”. My blood pressure went up guys. I understand this because hes kinda old and dont want to learn new things but i got caught off guard. To be honest im not mad, im just sad though, imagine if i was really new and had no experience and just started few months ago. All the hard work and studying will be nothing. Btw hes nice he offered me free food and beer its just JS.
If you’re learning any language specifically JS. Dont mind the naysayers. Just learn it and be good at it. Languages has its use cases. Conversation with whats better programming language is useless and a waste of time thats what my professor said and its true.15 -
Initially I wanted to be a sysadmin 6 years ago actually. And to this day I still am, to some extent. But since a while ago - I believe last year - that idea started to shift. I always got so enraged at software going tits up, further fueled by the fact that without programming skills I couldn't do anything about it but weep.
Last year in February I did my first part of the LPIC-1 exam, and this year also in February I did the second part. Failed the second part though so I'll have to go back for that. But in the exam results I found that my shell scripting skills are pretty much perfect. I got a big fat 100% on that part.
So that got me thinking. Is the shell a proper programming language, and could I use this to write my own software? And the answer turned out to be yes. Granted like every programming language "'it's\ definitely\ not\ perfect.'" But hey it does most of what I need and for automation it's absolutely great.
So that's what I do nowadays. Still a sysadmin, but I picked up a habit of writing out everything I would otherwise do manually into code. I love it! -
What is the best programming language for fintech - Python or Java?
Here's the graphic from Cleveroad's research: https://cleveroad.com/blog/...
What's your opinion?11 -
Give me more fancy abbreviation questions.
After 10+ years of programming this will definitely improve my knowledge about software development.5 -
Coding the board software for a car while you drive it at 120 kmph can be called agile programming?1
-
If debugging is the process of removing software bugs, then programming must be the process if putting them in
-
University has stomped on my passion for programming. The current academic education system is not a good fit for me. I want to invest my free time (I'm also working part time for a software company) in personal or open source projects because deep down I still love the act of programming. Do you have any suggestions for me? If anybody would be so kind to help me, I can provide further details about my areas of interest and things I don't like that much.3
-
So I've recently got into college after programming for years by myself like many guys here, the thing is I was expecting to find some guys like me so maybe we could start some project or something like that but oh boy, freshman software engineer students are the "best": Don't give a fuck about coding. Most of them are gamers who think that just because they're gamers they can make a videogame (hahaha) and the worst part is that the only student of them who already have a lot of experience in programming is so fucking arrogant and annoying that I'd rather change majors before doing a project with him.
There are two other guys who are also really interested in programming and one of them already have quite a lot of experience too but they're on different majors...
College being disappointment since the first month: Check1 -
I have small knowledge in programming in Java, have not learned it in a couple of months, and I was wondering, how do you take what you know to make a larger piece of software. HTML and CSS seems easy in comparison as I know how to a websites but, I can't comprehend Java programming.1
-
dev && !rant
I am thinking about picking up a functional language. Currently I use Kotlin (and I fucking love that language) but I have to admit that it's support for functional programming is limited.
But I think their lies a certain beauty in fp and I want to do some project with it.
The 2 main problems are:
1. I have no experience in functional programming. I have no clue how to structure my program (potantialy without oop) and write clean testable code.
2. I don't know what language to use. Scala seems great since it has good IDE support and I like the Java ecosystem and Haskell seems to have more beauty but is missing that IDE support and it is very unfamilar for me.
So what do you guys think I should pick up? And how do I learn to write good software with it?17 -
The condition of software development in 2019: “Please don’t apply if you don’t have the core concepts of programming, and you depend upon copying and pasting the code from StackOverflow/saved file.”2
-
welp I went from "gosh rust makes programming so stupid because I don't have to keep anything in my head like in JavaScript, if it compiles it runs zzzz you can literally be wasted / in dementia and write working software now"
to "I wonder if I can inspect how long threads are waiting for mutex locks to squeeze the hell out of performance"
new code golf23 -
Looking for help I'm a software development student been studying programming for 3 years so have some experience just wondering is any good online tutorials or books that could help me develop my Python skills we don't cover it in college and I would love to pick up on how to use Python but all courses I find are very basic and expect I'm a beginner3
-
How do I become a consultant? Do I need to master some programming languages and programming patterns and get "know-how" beyond of the general population of software engineers?10
-
On my list:
* John Romero (id Software)
* Yukihiro Matsumoto (Ruby programming language)
* Donald Knuth (LaTeX)
* Gosuke Myashita (serverspec)
* Johan de Wit (puppet guru and my personal sensei that taught me a lot of things and also a good friend I cherish)2 -
I am fairly new to "enterprise" programming, but have some experience with self-study and open source. I'm getting more frustrated by the day because the code quality of our software is appallingly bad: functionality that should be centralised isn't, assumptions about internal structures and functionality of objects are made throughout the code, concerns are not separated, and so on. In my current team, we explicitly disabled SonarQube because "someone would have to fix it and our software wouldn't pass even after a month of work".
While I understand the concerns that companies would rather see new features than "quality improvements", so what? Every time we want to add something, we either have to restructure half the source code or add it in a really horrible way (and get pressured to do it that way).
Is it normal that code quality in companies is so bad?10 -
We decide the quality of a software only by looking at the programming language that being used to make it.1
-
Building software is fucking hard. Whoever made us serious and responsible for the perfect working of the software we build. Who guaranteed that? We never did!1
-
Okay so here's a question to all, what do people/companies make you program? This applies to Web and Software programming3
-
Half of the courses we had in our college were about electronics. Except Microprocessors and Transistors, it's not relevant.
We even had chemistry and engineering drawing. So we essentially wasted more than half of our time.
Besides languages, weren't taught anything about real world software development.
Nothing about how to work with an existing code base, version control, design patterns, system design, creating a website, debugging, functional programming, scalability, reliability.
The industry should be involved in setting the syllabus and also contributing part time teachers.3 -
I love the logic that underlies algorithm. But nowadays I fear that this is almost disappeared, now programming a software is 5% logic and 95% read system specificactions, documentation, implement third part solutions, think about who developed the system thought it had to be and rant because you don't understand it. I like to solve math problems using algorithms rather than deal with user interactivity, for example. Yes, all this is pointless, but sometimes I miss the exercises that I did at school or in "IT Olympiad"
-
im really tired of people who just happen to have been around for 10+ years being put into management roles despite not knowing how to manage, especially for software projects. really feel like im in the wrong field even though i love programming and am good at what i do. past few jobs have been similar in poor management, unclear roadmaps, etc., but this is the first time ive been directly insulted by someone above me. the pay isnt even that great here. i could just leave but why bother if every other company is pretty much the same3
-
My parents know that I work with "codes" in computers to make all sort of things 😁. My siblings have some idea of what programming and software engineering is. They tell me that it is fun (they have tried it), but they still don't value it that much 😕
-
if you work at some company, do you work there because:
1. you enjoy programming
2. you like the company
3. you like the difficult challenge the company gives you to solve
4. just for a lot of money
5. you believe the software you're programming is going to help other people
6. other (please say what)
?
you can choose multiple options but please try to choose 1 that you think is the "deal breaker" on top of all options listed above.6 -
Windows is THE platform for writing software and you know it. Also JS is the king of all programming languages because it's just the best.9
-
Time estimation of software development should be a product of observation of historical evidence, and many factors that come with it, like:
- What was the language used?
- How many developers worked on it
- How many years each developer has in experience in programming?
- IQ of each developer
- How many kids they have
- The weather
- ...etc
Analyzed by data scientist.
TL;DR
Not something you get by asking developers and interrupting their work, because many are people with superior complexity who often overestimate their capability of solving given problems.
Don't trust them to estimate!4 -
"Controlling complexity is the essence of computer programming."
-Brian Kernighan (Software Tools)1 -
Admittedly as an engineer my SQL knowledge is minimal and I develop database driven web applications on a daily basis. Most programming languages have object-relational-mappers that handle things for me. I have a unified object store with easy querying and SQL is handled form me. You don’t have to be an expert in every technology to be an engineer.rant engineer orm sql engineering software development object oriented programming software engineering database8
-
Today, I discovered a new software development methodology being used by co-workers. No, no, it's neither agile nor pair programming. It's called disruptive programming:
A methodology where it's ok to make sure your part of coffee works. Fuck the rest and let them go figure. -
When did you last shut down your linux system? Mine, apparently was on June 20th, would have done to apply some system updates. (This is my personal system and not a dedicated server)1
-
I'm in Uni for Software Engineering, and while all my classes are currently online, I'm looking to get a laptop for class later on. Once I get it, I'm gonna pop a linux distro on it (gotta clean up the poor windows infected machine), but I'm curious if there's a distro anyone thinks would be best for programming? I used to use Fedora, but idk if there's anything better now9
-
!rant
Hi fellow DevRanters! I've been studying software engineering for a while now and, while I love programming, I'm starting to think that all I'll be doing as a software engineer now a days is pulling data from a database, sticking it in a nice gui with some buttons and moving on to the next, similar, project. At the same time I am loving linux more and more, I love working with bash and other unix-like tools and I am interested in systems languages like C and Rust. It is for these reasons that I am playing with the idea of switching to Systems and network engineering. What are your thoughts on this? Is Systems and network engineering a field in which I get to program a lot? Will there be more variation in it? Is my view of software engineering completely off? Please share your thoughts and opinions! -
Some of you might appreciate this, thought I'd share.
I'm currently on the board for a new school, and one of the choices we've made is to require a basic software programming class (most likely python) in middle school or jr high.
As a board, we've decided that it serves a couple great purposes: teach critical thinking and understanding (even a little bit) how software is written, since that's the axis of the world.4 -
To those with more years of experience, can software development be a 9-5 career with (almost) no studying outside of work? I want to achieve that. I want it as a source of income and to spend my free time on my hobbies and with family. Is that even possible?
note:
I love programming by the way, I'm just tired of having it taking my whole life and I want to do other things before I die...6 -
2019 Dev Resolutions
- Learn the rest of the languages I want to use
- make a game
- make money off something I program
- contribute to a project
- learn and use git
- get a good schedule for programming
- use a few languages in one project
- be better than I am now
- not be so hard on myself
- publish software/website/game -
So I have to endure Java Programming lab once a week.
The computers in the lab have Windows XP.
You're not allowed to install additional software.
There's eclipse installed.
But no. You cannot use eclipse. You are FORCED to use J FUCKING GRASP.
WHAT SORT OF DERANGED TEACHER WOULD USE SUCH A DISGRACE OF AN IDE?????1 -
I suck at data structures and algorithm, how can i be good at it? Or maybe i suck at programming in general, i don't know, 2 companies emailed me that I didn't pass their technical exam, I'm disappointed and thinking maybe software development is not for me.3
-
Entropy wins. More useless accumulated historical nonsense in each programming language. Complex software stacks impossible to reach the bottom. However C and C++ still there possibly even some Cobol and Fortran zombies. And we devs still writing our ifs and loops for that kind of legacy stuff.
-
Hi do anyone has a formula or tips on working on two different freelance software projects at the same time?
Ps: both has same project time frame (1 month), different programming tools: ( Ruby on Rails), the other MERN stack...7 -
What's the best laptop for coding and programming. Especially for software engineering, fullstack development and making android apps etc. I want it to be able to develop anything on it apps games websites etc. Suggest a budget model and a price doesn't matter but still realistic model.6
-
As a part of the university, I have to get an internship for 20 weeks. I wondered if anyone had an idea for a type of company (not a specific one) that would be fun to try out?
I’m studying as a software engineer. I have a lot of experience programming, so I figured I’d like to try out a different kind of company, I don’t know what type though. I want to enhance my experiences as an engineer. That is not necessarily as a programmer (though it could be by programming), but I want to probably work among multiple kinds of engineers or something.
I don’t know, I just figured that some here had an idea to something that isn’t the most obvious choice.
The country isn’t relevant since I don’t ask for a specific company, but it might be relevant to mention that I live in Europe.5 -
Get a solid educational foundation in software engineering. There is so much more than just developing or programming. In addition be sure you get a solid understanding of object oriented principles. This really makes the difference between highly educated devs and self taught devs. The latter almost always have some lack of knowledge.
-
!rant
So i'm currently an IGCSE student, and i learn programming as a hobby, but this year is the graduation year and i took all the subjects necessary for The Faculty of Computer Science, but i wanted some advice from the people working in this field, so is it a great job with good income? and are thier many job oppurtinities out there on the market? And finally which is better Software engineering or CS?
Thanks for your time.5 -
What if we have a AI that will build code what ever we say?
Is it be a new concept or new programming , it would so easy to build any software.
Maybe in a future some one will do this I hope.3 -
First computer I saw was an Apple II running Oregon Trail in grade school. Then I played computer games on my uncles Apple IIe. The first home video game I ever saw was Pong. It was a device you hooked to the RF input on the TV. It had 2 paddles to control the input (single axis controllers). The first game console I played on was the Atari. The first computer I programmed was on a black and white Macintosh. Then the other programmers in my high school told me the PC was better. Well, it was better for learning IMO. That was with Windows 3.0. But the programming was Turbo Pascal in DOS. DOS gave you complete control of the machine. Better at the time for me learning to do graphics and sounds programming. The first computer I bought was a 386 and I played with VR programming. Made my own joysticks using the limited joystick port. Fun times learning electronics and software together.
-
Why do software companies make a huge point on their websites what kind of technologies they use, in addition to drop-naming the various development methodologies they practice? I was under the impression that clients, other than programmers (and perhaps people who manage programmers), won't have the faintest idea about what these words mean and how they relate to the product that needs to be built or the problem that needs solving?
As a second observation, most software company websites seem focused on the client - case studies, services, portfolio, work with us etc. Often however, their blogs are all about development and programming and not targeted at the client. Why? Just to get page views and improve their search ranking?3 -
Recent graduate asking about programming work.
I just graduated a bachelor's for Games Programming. I've studied c++, Java, Unreal, Android studio and Mathematics. Also includes group projects and game specific stuff.
I spent a year in Germany doing software and database courses which included 6 months working as a front end developer as an intern.
I keep getting job offers for front end work but I'm seeing no interest from software or games. I hate websites, specifically front end and don't want to end up stuck in that career.
Should I avoid front end jobs and hold out for something else, or do you think I should bear with it for now? I'm currently waiting on an interview for a 12 month contract as a front end developer at a rate of £200 a day, 5 days a week. Yet I have absolutely no idea if this is good or not.
Any advice you more experienced people can give me? 😰3 -
https://spectrum.ieee.org/computing...
I agree with Python being very useful due to library availability. Not sure what I think about C beating out C++ though. I would much prefer programming in C++ to C any day. I don't like Java, but a LOT of people use Java.
I find it interesting that a lot of people talk about Rust, but I am not seeing it in the top 10. Is it just too new?
What I find most interesting is that this is a good list of languages to learn. These are what are being used in the field. Well, at least from the the perspective of IEEE.
Thoughts?5 -
hi guys, i need your opinions on my life's issue,
i'm a full-stack web developer from Iran, studying master's degree of software engineering here and my goal is to get application for one of europe's universities. this is a three years goal. during this 3 years i have to study hard, do some journal papers, do programming, get IELTS degree, then sign up for application.
all this hardworks is for getting rid of my country, for bad economical problems, and having a better life at the end, start my own company, live my life to the fullest, grow my family and ... .
what's your advices? critics? ideas?3 -
I love to sleep a lot and can't stay up too late.
I love cooking meals that take a long time to make.
I love video games, books, TV shows and exercising at the gym.
But I also love software development, and I fear I can't enjoy both worlds.
All of my freelance developer friends always stay up late and never have time for anything. In one hand I'm very jealous of their programming skills and wish I had these too. But I fear I will lose my life to it.
Can I still be a developer and have a life?2 -
I'm have an English test this week, and I need help! What are some important norms, rules or standards when it comes to software development/coding/programming/whatever? The task is to write about such norms and social construct of your future profession, and how important they are.
-
Bsc Computer science (I've seen the maths in that course,it's a bit crazy but the programming modules is what I love)
or
BCom information systems (less complex maths,not much programming and a lot of finance and business based modules)but I can take a post graduate straight up programming and software dev course after that
Or
BTEch IT applications development(very practical experience on programming languages) plus in my second year I get industry experience.
Confused
Which one??1 -
TLDR: Opinions of area of interest between these subjects (specializations):
1 Algorithms
2 Programming languages
3 Business analytics
4 Pervasive computing
Hi, I'm about to choose specialisation of my software development masters. I'm almost certain what I'll go with (algorithms), but I wondered what other people thought and would choose if they had the opportunity. I'm still not too experienced in all of these areas, making the choice a bit hard :-)2 -
Does anybody know a good free software (open source) basic programming language written in python? Preferebly on github😉3
-
In high school I had a digital media class, where we mostly learned Adobe design software and video editing and whatnot, but one project was to actually code using Programming (the software) and I loved it. Later that year I used a free project in the class to learn arduino per my teachers recommendation. Absolutely loved every second of that project, and have been coding ever since.
-
If debugging is the process of removing software bugs, then programming must be the process of putting them in.1
-
!rant
Software development has acquired some interesting jargon over the years, but I keep wondering if other languages and cultures have commonplace expressions for what can be translated as "improvisation-oriented programming" or "hammering code" (i. e. hacking something in a brutish way) -
For Apple hardware, including iPhone, iPad, and iPod Touch, iOS app development is the most common way of making mobile applications . The software is written in the Swift programming language or Objective-C and then submitted to the App Store for users to download.
In case you're a mobile application developer, you might have had second thoughts about iOS improvement. Every designer needs a Mac PC— Macs are more costly than their Windows-based partners. Moreover, when you complete your application, it faces a tough quality survey measure before it gets circulated through the App Store.1 -
I was put into pair programming for writing code in BASIC in my 5th grade. I did all the exercises while my pair simply watched. It was simply natural to me, and a bug in code helped me to print my name in a infinite loop. Amazed with what computers can do, and my story with computer and software development started there.
-
I'm currently working for 1month to win some money in a company that repair people computer and do a bit of programming.
They've made a software that get every value in a table with SQL and print it.
My boss, gave me as project to make a software that get everything from a database and copy paste it into an another, like a automatic backup system. BUT HE ASKED ME to do it from the last software with Delphi and on Windows XP...
God damn, now i have to remove everything about printing while i was just able to do the software from scratch with C#...9 -
I have kind of been put in charge of software development in one department of the company I work at. Only myself and a developer in the IT department have ever done programming as our main jobs and follow formal processes. The issue I am having is I don't know how to approach some co-workers assisting me part time with programming to tell them the code they wrote needs major refactoring. Just after a short review there are hundreds of lines of duplicated code and code that is duplicating features built into the framework etc. I just hate conflict and don't know how to tell them we have a lot of work to do. Any advice?2
-
The thought process that goes into developing software. I mean, the things that go through our minds as we try to write the code for the problem, and how we draw parallels from past experiences or similar things done in a different programming language. This, I feel makes us better at problem solving and consequently, better programmers and people.1
-
Something I hate is that I do not have friends who are also software engineers. I have friends who do cybersec and IT but none that develop software. I have nobody to share programming memes with or to share interesting projects I found
What about the other software engineers at my work? They are the type that are not passionate about computers and programming like I am. Unfortunately for me, they are just there to collect a paycheck
This makes me sad and frustrated because it makes me feel alone3 -
Studying a programming focused studyprogram.
Having to do minor software projects spanning about 2 weeks on average on a regular basis with regular classes in between.
Projects more often than not involve coding knowledge we haven't been teached prior during class.
Literally get told most of the stuff we needed for certain projects right after we already finished them and therefore already teached it to us ourselves.
Sitting in class bored because of this right now and will be probably again and again...1 -
How would I go about programming such device in terms of software and language? Would I use HTML and make a web interface? Need advice so I can get started on this idea that I have.2
-
Good morning devRant community, so currently im on my early morning commute to College, and it got me thinking.
So I’m very passionate about programming but i also love playing around with the Stock Markets, Are there Software Engineering positions which work with the markets? I’ve been thinking its called a “Quant” but im not too sure, Also does anyone have any possible experience within the field? What it takes to get in etc?.
I highly appreciate it! Hope you have an amazing day/night. :-)10 -
wk192: None. I was never asked to do a single coding challenge in any job interview. I had three successes and a bunch more interviews without programming anything in the interview or having ever shown any previous programming projects. I really wonder what criteria are important to companies hiring software developers if not how well they are at developing software.
-
Im not “senior”, but I’m maybe middle level but anyway....
Learn good object oriented design!
Have a decent computer science background!
If you don’t know a certain framework or “tech”, google it and learn it quickly! Most of the “hot new techs” can be learned rather quickly by anyone who has a strong foundational understanding of programming and computer science. Its not sacred knowledge reserved to the chosen software prophets lol -
I've had a hard time getting on board with Google using the "Yes, and..." approach in design sprints. IMHO, it's tough to apply a stream-of-consciousness from improvisational theater to building software. Two completely different arenas.
Personally, I've always applied the "No, because..." approach, designing pessimistically/programming defensively, while still being innovative, creative & empathetic. I get the psychology of public criticism making teammates butthurt & stymieing future contributions...but that's maturity.10 -
I had dabbled in some game programing in Unity (like Unity 1 or 2 at the time) and played around with python. But I hadn't spent much time programming. I was going to school for marketing because when I graduated high school, there were basically no software jobs anywhere near my hometown. But I got an internship at a place that had a single web developer but like 5 clients who had websites. The dev left and I volunteered to build websites, thinking it had to be better than writing about asphalt pumps. They gave me a $5 raise. At that point I realized 2 things.
1. The area around my hometown was starting to have more software jobs (I actually ended up moving and I'm extremely happy I did now).
2. Devs usually make more than marketers.
I already knew I enjoyed programming, I just didn't see it as a realistic career until I got a pay raise I didn't even ask for, and for a job I wasn't qualified to do even. -
Hey all! I'm gonna be graduating soon from grad school and I'm starting to realize that I have no idea what I wanna do with my programming career!
I currently work as QA but have been really working towards being a programmer but the only problem is that I really dislike web applications ... specifically front end.
With most jobs being full stack web apps, I feel like I'm really gonna be limiting myself once I'm applying for junior software engineering jobs.
I'm just wanting your thoughts and some advice on what I should do since in still trying to figure things out. The only goal I have in life for my career at the moment is to be a software engineer.5 -
How/when do you know that a particular programming language is correct/wrong for a particular project?
I think that language doesn't make much of a difference but again, I am new to software development. -
1 - To be able to use string for my class homework.
2 - A one-stop-shop that explains everything I've ever wanted to know when it comes to programming.
3 - A job as a software developer. -
So, I’m currently a software tester (please don’t hate me) who is looking to move into development. I’ve been teaching myself programming and have been applying for junior dev jobs.
But it’s been tough, places I’ve been applying for want candidates who have had at least 1 year experience developing in a previous role.
I’ve had an interview for a junior role, but they wanted someone with more experience (and it was my first technical interview so I may have made a few mistakes)
I don’t want to be testing software manually forever (seriously, the manual regression test pack where I work is 1000+ test cases), I find programming more interesting and fun.
What can I do devRant?
Onwards and upwards with the applications. 👍4 -
I'm curious about where have you learned coding? I had learned Java most of my life, in a university course since the age of 15. It was a special programming course for high school students and out of 6000 students who applied I was one of the lucky 50 that got in after 3 huge tests in logical thinking and math. This was the path I took to have this job now as a full time software engineer. I'm interested to know how all of you guys learned programming and when have you started. Feel free to tell about apps or programs you use as I'd like to further increase my knowledge in other languages too ☺4
-
We get our degree from a high-end higher education institution and with it we have proven that we studied Computer Science and a number of important programming languages in-depth.
Now why is it that when we get a job as a Software Developer, that people only seem to value you if you get industry certificates in those programming languages?
I understand a degree forms the basis with which to tackle modern-day software problems, but for your entire education to be practically invisible to stakeholders? That's what seems strange to me. We are valued by the number of certificates we have? Something doesn't add up. The only reason for this I can see is that the Business department hasn't had the thorough STEM education we had and thus thinks we are still novices who need to get 'trained'.2 -
I have to deal with the hardest part of programming: naming things! i fucking hate it, being so incredible uncreative finding a name for a side project..
So heres my idea: I want to build a little cli tool (and probably in the future an app or a web interface) with a rest api on my server for simple storing text snippets. I will be a simple key value store, but my goal is experimenting with new languages and software ;)
I can't imagine a cool name for that thing, do you have an idea? :)3 -
Programming, Motherfucker
Do you speak it?
We are a community of motherfucking programmers who have been humiliated by software development methodologies for years.
We are tired of XP, Scrum, Kanban, Waterfall, Software Craftsmanship (aka XP-Lite) and anything else getting in the way of...Programming, Motherfucker.
We are tired of being told we're socialy awkward idiots who need to be manipulated to work in a Forced Pair Programming chain gang without any time to be creative because none of the 10 managers on the project can do... Programming, Motherfucker.
We must destroy these methodologies that get in the way of...Programming, Motherfucker.3 -
I rolled out a feature in one of my previous organizations. It looked awesome. I couldn’t wait to receive all the praises and appreciations but instead was bombarded with bugs and issues. Well, I tested the feature on chrome but little did I know that the users used IE and safari. This is where polyfills in javascript step in. Here I've assembled a list of some important polyfills. Do read it and let me know your opinions.
https://readosapien.com/polyfills-o...1 -
Today is one of those days where i feel i don't know anything about software development. How to learn programming from scratch is my latest google search :)
-
When you want to improve your life but time isn't enough because you have to earn for a living. To pay bills,l and necessity. It's far easier to find low wage job than pursuing to become a software engineer. Sometimes I eat once in a day and 6 hrs of sleep because I have to improve my programming skills.
-
Im working as a software testing engineer with 2years of experience, I want to change my domain...I have some options infront of me..like Data Science, SAP HANA, Android app development, Full stack developer..I'm at intermediate level in java programming...please guide me to pick one from them