Details
-
AboutInfosec Nerd
-
SkillsBash, Python, PHP, TSQL, Powershell, HTML, Perl, CSS
-
LocationIllinois
-
Github
Joined devRant on 5/16/2016
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 just replaced 180 lines of Python with 5 lines. I want to smack the author but that would be workplace violence. Funny how if you import some built in libraries you don't have to basically write it's entire functionality and can just use it. I am so ready for this week to be over.3
-
I bit the bullet and got a copy of Windows 10. I’m going to insert this into my computer and upgrade when I get home. Pray for those who are near me when I fuck this computer all up. And watch for flying tools...2
-
I inherited some code today. I am in the process of reworking it to drop into my framework so I can use it with our product. I am seeing this throughout the code...
try:
\do something\
except:
pass
Ahem... HANDLE YOUR DAMN EXCEPTIONS!!! DON'T JUST PASS THEM INTO THE BLACK HOLE OF NOTHINGNESS! FFS!!! Using pass like this means "Fuck it. I don't care if this fails and I want NOTHING to tell management when it does. I want to blindly look into their frustrated eyes and say ..duhh, I don't know why it failed... Fuck troubleshooting. You know what, this job isn't meant for me anyways." My outer voice is politely saying "There is a better way to do this. Please allow me to show you." Meanwhile my inner voice is flipping tables and clubbing baby seals. /rant -
I fucked up. I used the shebang line #!/usr/bin/env python3 in a script that was being ran every 5 minutes with a cron job. This generated an email to a system that dropped a file for processing and sent an age email for each file every minute. Because the Linux OS generated emails didn’t contain a keyword the script closed by design but I forgot to uncomment the delete temp file line. This started on Wednesday before a 4 day weekend. By the time I got in on Monday I was 40GB over my email quota and receiving 2500 emails a minute. I fixed the script and stopped the emails but down I have to clear out those emails. Here it is Wednesday and I am deleting 1 MB every 3 seconds. This is painful.1
-
I am in school. Talking to the dean of the program he mentioned that there is a programming class that is required. Naturally I inquire about the language in the class and he responds with Python. I am ecstatic. I love Python. I eat, sleep, and breathe Python. Class comes up, and time to buy books. I am now the owner of Windows Powershell Cookbook and Learn Powershell in a Month of Lunches. :-(2
-
Well, that is a record. 11 minutes into work and I already want to choke slam whoever wrote this shell script. I am looking for someone older than dirt because they used ` ` instead of $(). And now I am going to have to change group GIDs for 3 groups times 500 machines. They all need to match and are ALL different. FML
-
All these certifications and capabilities and years of IT experience and I find myself writing analytics against Minecraft logs for my kids's MC server to determine that my son really is being a jerk in game like my daughters claim.2
-
I took a certification test today that has an accumulative checkpoint score every 15 questions. I needed a 74 to pass the test... Here is a rough timeline of checkpoint scores and my thoughts:
64 - rough start I can recover
71 - OK, still failing but at least the score went up
63 - what the hell??
67 - OMG I am failing this test.
71 - You know, I don't need this job. I can find plenty of other work.
71 - This fucking test is brutal and I hate everyone. OMFG I only have an hour left!
Queue total internal meltdown. My job really depends on this certification.
73 - screw it. I failed. I am guessing from here on out.
77 - Holy shit I have a chance!! Only 25 questions to go. DONT SCREW THIS UP!
77 - YESSSSS My score didn't go down. 10 questions to go.
76 - Holy shit. After 6 month of studying, I passed the most brutal test of my life. ..... Barely. -
Took a half day for a dental appointment and got a root canal done. Still not as painful as the meeting this afternoon. SOAP vs REST discussion which developed into JSON vs XML. I am getting NOTHING done.3
-
Person: So what do you do for a living..
Me: (here we go)... I am an information security analyst working in an incident response team for x company. I do log collection and manage a large scale correlation engine.
Person: Oh, so are you super smart or something? (Blinks her eyes and continues with blank stare)
Me: Uh... Smart enough I guess.
Person: Can you hack things like a hacker.
Me: That really isn't my job...
Person: What's your job again?
Me: Computer guy
(She lights up)
Person: Why didn't you just say that? I can understand that.
Yeah... I seem to have painful conversations like this often.10 -
So I am the resident Linux Guru and a contract manager asks me who wrote rm. I guessed and said Dennis Ritchie.
"I thought you were the UNIX Guy" he says. He goes on to claim that Robert Morris wrote it and named it rm after his initials. ... In front of the whole team he did this. Ok.
Did some research and even contacted Robert T Morris at MIT ( his son) and he pointed me to a sight with documentation from the initial UNIX research at Bell Labs where his dad did in fact work with Dennis Ritchie and Ken Thompson. Turns out, I was right. -
import time
time.travel('now-10 years')
self.slap()
time.travel('now+10 years')
Does anyone know how to get the travel method working?3