Programming as a career

Message Bookmarked
Bookmark Removed
Not all messages are displayed: show all messages (903 of them)

Please open a ticket

How I Redd One of the Blecchs (James Redd and the Blecchs), Monday, 6 May 2019 17:56 (seven years ago)

If the ticket management software is anything like the one I use at work, I'll have to make a second ticket when the ticket management software crashes when I try to make the first ticket.

just another country (snoball), Monday, 6 May 2019 18:05 (seven years ago)

What hub are you on?

Careless Love Battery (James Redd and the Blecchs), Tuesday, 7 May 2019 01:30 (seven years ago)

Please send a screenshot to the following distribution list: sixfootmeneh✧✧✧@vax✧✧✧.c✧✧

Careless Love Battery (James Redd and the Blecchs), Tuesday, 7 May 2019 01:34 (seven years ago)

Would it be cromulent to ask an intern candidate to differentiate a function that I need for work because they list calculus as a concentration?

Soccer Team's Philosophies and Hypotheses (Leee), Wednesday, 8 May 2019 01:34 (seven years ago)

Is that something they'd probably need to do on the job?

but everybody calls me, (lukas), Wednesday, 8 May 2019 02:30 (seven years ago)

they opened the door

j., Wednesday, 8 May 2019 02:46 (seven years ago)

Not normally! It's just that I'm working on a feature that requires equations that algebra can't solve, and I like human feedback to complement what Wolfram Alpha has given me.

Soccer Team's Philosophies and Hypotheses (Leee), Wednesday, 8 May 2019 05:31 (seven years ago)

I want, not I like.

Soccer Team's Philosophies and Hypotheses (Leee), Wednesday, 8 May 2019 05:39 (seven years ago)

four weeks pass...

Is SQL knowledge among developers something that's on its way out? And I don't mean DBA-level knowledge, just simple familiarity with basic selects, joins, etc.

In a station of the metro / My milkshake brings all the boys to the yard (Leee), Friday, 7 June 2019 17:17 (six years ago)

It's all about the nosql now, I fear.

koogs, Friday, 7 June 2019 17:20 (six years ago)

Probably, which is dumb, because databases are good, and it’s possible to use them in smart ways, but only if you know SQL, and nobody has designed a language other than SQL for RDBMSes that can actually use all their features efficiently as far as I know.

don't mock my smock or i'll clean your clock (silby), Friday, 7 June 2019 17:26 (six years ago)

idk how common this is but where I work each team has its own database person. not that we really get any special privileges but we do get to optimize stupidly complex queries and run endless scans for marketing people

frogbs, Friday, 7 June 2019 17:27 (six years ago)

I certainly haven't used sql in 5 years.

Database layers in code always used to be a faff, as was waiting for the DBA to write you a stored procedure to do what you needed.

That said, getting errors at 9am every morning because you've gone over your opaque iops limit in an aws hosted dB somewhere gets old quickly too.

koogs, Friday, 7 June 2019 17:30 (six years ago)

(first job I had involved the sql-based Informix report generator language and I used to love crafting those reports)

koogs, Friday, 7 June 2019 17:32 (six years ago)

i just used an sql query the other day!

j., Friday, 7 June 2019 17:59 (six years ago)

it reeeeally depends on what you're doing

persistence and mapping frameworks are good enough now that, unless it's really high traffic or a very complex table structure, it's a good idea to *not* write your own queries

I think the new status quo is fine because developers wrote too much bad sql

mh, Friday, 7 June 2019 18:24 (six years ago)

I wrote a few queries the last few weeks but they're being used in a data transfer tool

btw I'm all in favor of Apache NiFi now, as long as it's used intelligently. nice software!

mh, Friday, 7 June 2019 18:26 (six years ago)

The trouble is using ORMs exclusively will not teach you how to design a database well, and depending on the ORM can teach you actively bad ways of using a database.

don't mock my smock or i'll clean your clock (silby), Friday, 7 June 2019 18:32 (six years ago)

oh, for sure. someone else should be designing your database, but the majority of the people actually writing software to hit the database, no prob

do NOT do the code-first, auto-generate the database path if it's going to be hit by more than one application. a particularly bull-headed jerk of a former coworker apparently was the software architect for a piece of software where he did exactly that and he completely fucked the project and I think people realized he wasn't as good as he liked to claim. dude should not have been designing anything used by more than a couple people imo

mh, Friday, 7 June 2019 18:36 (six years ago)

one month passes...

"Payment amount
£54.2400"

dunno who's doing the QA at (large electricity provider)'s website but they need to be better than they are.

had an hungarian tester once who did a report which contained a *mix* of european format numbers and english numbers. wasn't even consistent within the same one page email, really confusing. ie:

25,456 = 25 thousand 4 hundred and fifty six in english, 25 and 456 thousandths in hungarian

4.294 = 4 thousand 2 hundred and 94 in hungarian, 4 and 294 thousandths in english.

https://docs.oracle.com/cd/E19455-01/806-0169/overview-9/index.html

koogs, Friday, 12 July 2019 18:03 (six years ago)

While not a “programmer” I love SQL - so simple, so elegant

calstars, Friday, 12 July 2019 18:39 (six years ago)

Me too! I love that its grammar is so much closer to natural (english) language than anything else I've worked with. It's intuitive! More so for "verbal" people than "quantitative" people, I think, if that's a real distinction

Dan I., Friday, 12 July 2019 19:12 (six years ago)

It’s a language for writers

calstars, Friday, 12 July 2019 19:14 (six years ago)

y'all would love COBOL then :)

frogbs, Friday, 12 July 2019 19:32 (six years ago)

I agree that SQL is intuitive and expressive for a large range of problems. Unfortunately it also leads developers to put a lot of business logic in the database which is kind of an anti-pattern.

o. nate, Friday, 12 July 2019 19:35 (six years ago)

It never ceases to amaze me how much “mission critical” shit is written in toy languages designed to be intentionally “dumber” than Real Computer Scientist code

El Tomboto, Friday, 12 July 2019 19:39 (six years ago)

lol dan have you tried a little language called ~applescript~

j., Friday, 12 July 2019 19:47 (six years ago)

SQL itself is adequate, it’s relational databases that are truly a great invention

president of deluded fruitcakes anonymous (silby), Friday, 12 July 2019 20:22 (six years ago)

On the other end of the (in)comprehensibility spectrum, I find myself forced to trial-and-error my way through a regex thing (program? query?) today and wow, I fucking hate this. This kind of Perl-like bullshit needs to die forever

Dan I., Friday, 12 July 2019 20:59 (six years ago)

(I know, it's "powerful" or whatever, but as a human being--*barf*)

Dan I., Friday, 12 July 2019 21:00 (six years ago)

Oh I see, Perl descended from regex. That makes sense

Dan I., Friday, 12 July 2019 21:02 (six years ago)

perl is ludicrous but with regex I'm grateful to not have to write 50+ lines of complicated loops just to do a search and replace.

The Pingularity (ledge), Friday, 12 July 2019 21:23 (six years ago)

I saw the best minds of my generation destroyed by Perl-induced madness.

Vini C. Riley (James Redd and the Blecchs), Friday, 12 July 2019 21:26 (six years ago)

SQL is fun. But it’s when dealing with massive amounts of data that things get frustrating. Large amounts of data is rarely organized in a way that allows you to write “elegant” SQL, unfortunately.

John Jacob Jingleheimer Schmidt, Friday, 12 July 2019 21:40 (six years ago)

perl is the most wonderful language i ever learned and you are all monsters

j., Friday, 12 July 2019 21:44 (six years ago)

xp yeah but it isn't really made for that, I'm a 'write a readable query and parse the data in Java' sorta guy

lately I've had to write a lot of queries involving aggregates and subsets its frustrating because I get into a lot of situations where it's like..."ok I can do this and this and that, but I can't figure out how to do ALL of it together, even though I'm 90% sure there's a way to do it"

frogbs, Friday, 12 July 2019 22:20 (six years ago)

I fall into the trap of trying to craft a single query to do some complex things that are probably better left as multiple queries, but I also use Rails which makes that kind of data manipulation much easier.

The Worf of Wall Street (Leee), Friday, 12 July 2019 22:32 (six years ago)

Crafting a single query to do a complex thing is fun as hell to me now, I love doing it. Sometimes I give up and cheat with a temp table :(

president of deluded fruitcakes anonymous (silby), Friday, 12 July 2019 23:13 (six years ago)

ive a fella from dundaaàwk ahint me at work tackling some new code or something and he has taken to yeowling "och ye know wharray fucking meant ye tick baawstird" at his screen oh maybe ten times an hour

phil neville jacket (darraghmac), Friday, 12 July 2019 23:27 (six years ago)

SQL rules

brigadier pudding (DJP), Saturday, 13 July 2019 01:01 (six years ago)

I’ve been playing around a lot in R recently. I like that it’s more of a really powerful calculator than a programming language.

American Fear of Pranksterism (Ed), Saturday, 13 July 2019 01:58 (six years ago)

Regex'es are painful to work with, no doubt, but there's often not a simpler alternative to accomplish what you can do with them. Actually one thing that I don't like about SQL (despite it's being mostly awesome) is the lack of regexes.

o. nate, Saturday, 13 July 2019 02:18 (six years ago)

SQL wuz here ‘19

calstars, Saturday, 13 July 2019 02:18 (six years ago)

I’m a bad person who does SQL irregularly and rather than remember how to do a partition statement the other week, I once again wrote a query in LinqPad and had it generate a query for me

untuned mass damper (mh), Saturday, 13 July 2019 14:12 (six years ago)

It never ceases to amaze me how much “mission critical” shit is written in toy languages designed to be intentionally “dumber” than Real Computer Scientist code

― El Tomboto, Friday, July 12, 2019 2:39 PM (yesterday) bookmarkflaglink

I’ve known a few people who worked on code for fighter jet stuff and it was all, by regulation, done in Ada. I think it’s less dumb than incredibly explicit and lacking abstractions that would make fuck-ups easier

Apparently the rules have changed and the F-35 has been programmed in C++, which makes sense considering how much of a boondoggle that entire project is

untuned mass damper (mh), Saturday, 13 July 2019 14:17 (six years ago)

Yeah I heard ADA is used in aeronautics and shit because it’s really really hard to fuck up (there’s a word in programming language concepts for this, extra safe or something )

brimstead, Saturday, 13 July 2019 15:54 (six years ago)

seeing some dumb fite on Twitter about '10x engineers' with no idea what means

nashwan, Saturday, 13 July 2019 17:15 (six years ago)

developers' inability to use SQL these days does get a bit infuriating sometimes.

my colleague added a page to the CMS just to add values to a lookup table the other day then deleted the page when he was done, because he can't write an INSERT statement. but he is completely hopeless and hopefully will get fired soon

Colonel Poo, Saturday, 13 July 2019 18:28 (six years ago)

I'm not sure why SQL doesn't support regex out of the box really. it's completely trivial to add it to SQL Server with a C# CLR function, so why they don't just include it as standard I don't know. I think Postgres might support them?

Colonel Poo, Saturday, 13 July 2019 18:29 (six years ago)


You must be logged in to post. Please either login here, or if you are not registered, you may register here.