Details
-
AboutPython, C# , Ruby > oxygen
-
Skillsbash, python, C++, C#, F#, Java, Ruby, SQL, TCL, absolutely no front-end
-
LocationJupiter
Joined devRant on 11/29/2019
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
I post an answer to StackOverflow for the first time in a few months. INSTANT DOWNVOTE + "CORRECT BUT NOT `LOGICAL ENOUGH`"
FUCK YOU
thx for coming to my TedTalk5 -
So I'm competing in a programming contest for a $10,000 scholarship. I'm very confident in my programming ability but I have no clue what to build for the competition. Anyone have any ideas for a coding project that would wow the judges?2
-
So a few months back I wrote some software to perform "zoombombing"(dictionary-attempted login to random call) and uploaded it to Github because one of my buddies wanted to try it out.
I took a look at the traffic on that repo today and I found that most the traffic is coming from an external website called www.turkhackteam.org.
WTF WHY IS SOME TURKISH SCRIPT-KIDDIE WEBSITE LINKING PEOPLE TO MY REPO!4 -
```
section .text
global _start ;must be declared for linker (ld)
_start: ;tells linker entry point
mov edx,len ;message length
mov ecx,msg ;message to write
mov ebx,1 ;file descriptor (stdout)
mov eax,4 ;system call number (sys_write)
int 0x80 ;call kernel
mov eax,1 ;system call number (sys_exit)
int 0x80 ;call kernel
section .data
msg db 'Hello, world!', 0xa ;string to be printed
len equ $ - msg ;length of the string
```
I've never seen such a terrible way to print "hello world"8 -
Epoch 2/4
777/1054 [=====================>........] - ETA: 45:31 - loss: 2.6682
Screw you Keras model1 -
I had a question about a software concepts I didn't understand so I posted it to softwareengineering.stackexchange.com since stackoverflow would eat me for trying to ask for help with a concept.
I thought nothing was worse than stackoverflow...
I was wrong, in the first 2 minutes I got 2 downvotes and no comments why I got downvoted. I checked other posts...
All downvoted at least -3 and no comments why.
Congrats Software Engineering you stole the crown for most toxic community from stack5 -
I just spent the last 4 hours lip-syncing audio to an animation.
I forget why i was doing that in the first place...1 -
Dear teenager who came up to me and said "Oh python, you must be a beginner programmer"
kill yourself
sincerely,
Angry dev who is tired of people shaming python27 -
http://www.bark.us/
This company's trying to steal Mark Zuckerberg's award for most intrusive spyware.
They literally advertise themselves as being able to read every text your child sends.
Creepy14 -
So I migrated over to ja.stackoverflow.com, which is just the japanese version of stackoverflow, and realized how much different japanese devs are to the american ones Im used too.
On the standard StackOverflow I would see people argue and lots of questions would be downvoted. but on its japanese counterpart if you even ask for a little more context on a question they speak to you as if you were there boss. They also always say thank you sir at the end of their comment.
Im tempted to just keep google translate open and stay on ja.stackoverflow12 -
1. start up my monitors, have one monitor streaming news while the other one is browsing devRant.
2. drink an ungodly amount of caffeine
3. crash so hard that I have an excuse not to code and go back to bed. -
Today I thought I had a really unique idea so I started writing the script for it.
In the middle of writing it I decided I would take a break and look at social media.
First thing I see is an ad for what I was just writing...
FML4 -
I threw an error into my code to find where the code was having trouble but instead of raising and error it fixes the problem and runs flawlessly
At this point I can't tell if python loves me or hates me2 -
Trying to optimize web-scraping has been one of my greatest failures in life. 4 hours later and all my data is finally gathered. : (1
-
- Finish all my projects
- Find a job that pays 9 figures
- Cure Cancer
- Refrain from drinking 20 red bulls/per minute
- Own a planet9 -
I told him that he should patch the getQueryString() due to it going through no sanitization before going straight to the API so at this point I feel entitled to fuck with their shit.5
-
does anyone know what other storage is? I got on my mac today and was going to reinstall xcode after deleting it because of how shitty the software is but I couldn't download it because I didn't have enough space. I go to look at my storage and I have 155 GB of storage named "other" AND IT WONT EVEN LET ME CHECK WHAT OTHER IS9
-
I just received two katanas as a present and I have absolutely no use for them. I was thinking I could make a cool robotics project with them, does anyone have any ideas?8
-
in the past 48 hours my partner must have asked me 50 times to create an "AI" that can get the data we need off of wikipedia.
Background: I am in AP Computer Science AB but I have been programming long enough that this class is a joke. We were assigned to partners with the task of creating a search engine that finds informations on wikipedia("which is dumb because thats what the search tool is for") so I created a Java Web-Scraping program in probably 30 minutes and showed my partner. He told me I am completely wrong because it would be "cool" to incorporate machine learning into the assignment.
Do I even tell his what machine learning is or should I just let his figure it out?7 -
Has hacking become a hobby for script-kiddies?
I have been thinking about this for a while know, I went to a class at Stanford last summer to learn penetration-testing. Keep in mind that the class was supposed to be advanced as we all knew the basics already. When I got there I was aggravated by the course as the whole course was using kali linux and the applications that come with it.
After the course was done and I washed off the gross feeling of using other peoples tools, I went online to try to learn some tricks about pen-testing outside of kali-linux tools. To my chagrin, I found that almost 90% of documentation from senior pen-testers were discussing tools like "aircrack-ng" or "burp-suite".
Now I know that the really good pen-testers use their own code and tools but my question is has hacking become a script kiddie hobby or am I thinking about the tools the wrong way?
It sounds very interesting to learn https and network exploits but it takes the fun out of it if the only documentation tells me to use tools.3 -
Don't you just love when you try to recycle code you wrote 2 years ago just to find that the modules you used haven't been updated and your code has gone to shit ;)3
-
Has anyone else noticed how hostile Stack Overflow has become? I was up at 4 am the other night (or I guess technically morning) and I was too tired to think straight so I posted a question about a syntax error I had and went to bed.
By the time I woke up I had 3 down votes and 2 comments saying how dumb this question was yet not a single answer.39