Details
-
AboutFormer black-ops (unsanctioned) BI Developer, also works with C#, ASP.NET, MVC
-
SkillsSQL, MDX, star-schema, c#, asp.net, MVC, webforms, vb.net
Joined devRant on 7/6/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
-
If Google hadn't kill Google Play Music, I don't think a single soul would voluntarily switch to it's YouTube Crap Music.
If you remember prior to 2011 the initial plan of Google was to take market away from Apple's iTunes. They initially shipped Amazon music with branded Android OS before the development of Play music.
As a long term user of Play music I'd say "killing the product" was a "bitch move"!
Because Play music is doing really great and you could tell from its reviews and moreover the destination product is quarterly-baked not even a viable replacement in the least sense.
There are more than a million and one problem with YouTube music, currently you would notice your playlist history gets clogged up with your videos when you visit the video web. It's more like the actual YouTube app hiding behind a curtain to mimick a music player. Which is so so stupid and annoying!
As a user all I want from a music player is to fucking listen to music not to watch fucking videos... which makes the app unnecessarily filled with stupid options you never really need.
I understand that monetisation is necessary but please show some fucking courtesy by doing shit with wisdom!14 -
So I got everything done that I'm supposed to this month. Now usually I would try to get ahead of the rush. However, since now even upper management doesn't trust me to do my job I figure I will adopt the same development process as the rest of the group: do nothing for the first three weeks of the month and in the last week hastily make excuses for why nothing is done while doing just enough to justify my continued employment.
-
I think I figured out why so many companies jumped on board the Agile approach. Companies heard Productivity Bonus and Put Stuff into a List Of Things to Do, and left out all the rest of their responsibilities. One of my past companies was like "We're going to take an Agile approach to everything! Except, we're not going to shield developers from everyone who has stuff in the backlog, and we're going to have other meetings during the day on top of the scrum meetings to check on your progress, and we're going to measure points in time instead of complexity".
I feel like the creators of the Agile Manifesto would be really upset at all of the poorly implemented processes. Because all of us developers are pretty upset.6 -
In our morning stand up, dev was bragging about how much code he was refactoring (like over-the-top bragging) and how much the changes will improve readability (WTF does that mean?), performance, blah blah blah. Boss was very impressed, I wasn't. This morning I looked at the change history and yes, he spent nearly two solid days changing code. What code? A service that is over 10 years old, hasn't been used in over 5, mostly auto-generated code (various data contracts from third party systems). He "re-wrote" the auto-generated code, "fixed" various IDisposable implementations and other complete wastes of time. How –bleep-ing needy are people for praise and how –bleep-ing stupid are people for believing such bull-bleep? I think I should get a t-shirt made with a picture of a BS-Meter and when he starts talking, “Wait a sec, I gotta change my shirt. OK…you were saying?”5
-
Outside:
keep staring at the screen with a poker face.
Inside:
I WILL CHOP YOUR FINGER OFF IF YOU DARE TOUCH THE SCREEN AGAIN.5 -
Wrote a SQL stored procedure today to do a complicated query. Decided to make it so that I could pass multiple records into the stored procedure in comma separated format, but the damned thing would only pull the first record. The query worked fine outside the procedure but it wouldn't pull anything more than the first record. After deleting and recreating and spending 30 minutes trying to figure out what was wrong I realized I changed the length of the wrong parameter. Set the correct one to varchar max and it was all good. 30 minutes of my life I will never get back.🐘💨1
-
Fine don't take my suggestion during refactoring old code. Keep the python code over 100 lines of code...we could have cut it in half, but whatever
-
Agile is cool but management likes to screw it up by trying to micromanage. This usually starts but making an inexperienced pm your scrum master. They control all meetings and turn daily standup to a 30 minute interrogation session.1
-
So I'm a UX Designer and my husband is a Mobile Engineer so obviously he makes more. I swear my field doesn't get enough credit it deserves (considering we're the ones figuring how the user will use the app/site/whatever device). My mother in-law decided my work isn't as important as his and that I stand below him. Gee thanks for the biggest insult, even when I had to go to grad school for 2 years, worked full-time at the same time so that we could help his family with some stuff considering we're the only couple who is capable of it. :/29
-
I shared this video a while back with some coworkers including my PM and another department that was making ridiculous requests. Didn't change a thing.
https://youtu.be/BKorP55Aqvg
They went as far as to ask me if they ever did anything like that. I, in all seriousness said yes. They laughed.3 -
When you have 2 "priority" projects you're working on and then the coordinator decides to give you one more...1
-
Spent longer than I'd care to admit trying to find the reason my new features weren't being displayed. All coded fine but hadn't cleared browser cache. It's been a long week!3
-
One of the dumbest things I've done as a dev... I was a front-end/php guy that got hired into a asp.net company. My boss told me to take down a section of the website. I hopped on the server and started looking at files and saved a config file. 2 minutes later I had 3 devs in my office asking what I'd done that took down our entire network.
Thankfully my boss laughed it after they republished the site, but that was my intro into asp.net development.1 -
if you want it done that way then fucking do it yourself because that shit makes no sense to me, and you have not adequately made your case to me as to why it makes sense, and since I'm writing it it seems prudent for it to make goddamn sense to me.6
-
Pretty simple oversight in a SQL pull led someone to run about 3,300 background checks that had already been run. Somebody told me we spend $25 per check, which would have totaled around $84,000. It ended up being much less, but for a good 40 minutes I assumed I'd be looking for other work the next day.1
-
Colleague: We need to deliver it today so let's hardcode some values in the code to make it work
Me: Ok you do it. I don't even want to see it!3 -
Saw the following SQL in an SP at work:
Type_ID = CASE Product.Type_ID
WHEN 1 THEN 1
WHEN 2 THEN 1
WHEN 3 THEN 2
WHEN 4 THEN 3
END
Seems a little bit redundant to me :-)...1