Programming as a career

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

(Google image search has the answer. i remember doing it at the time and getting less than half)

koogs, Wednesday, 24 August 2022 20:05 (three years ago)

two months pass...

https://thetypingoftheregex.com/

ionjusit (P. Flick), Thursday, 27 October 2022 14:29 (three years ago)

so,

"What have you done to his eyes?"

with "What" and "have" highlighted. what matches that? 4 letter words with a 'ha' in them? how do you write that as a reg exp? what am i missing?

koogs, Thursday, 27 October 2022 15:57 (three years ago)

would it work to do everything in string before 'you'?

I have to google regex solutions rather than knuckling down and learning the syntax, so i don't share this as someone who can complete it. Admire anyone who can though!

ionjusit (P. Flick), Thursday, 27 October 2022 16:44 (three years ago)

um, maybe, letters rather than words. it goes so quickly though it's hard to spot the patterns.

i had another that was two words starting with ex among other words.

koogs, Thursday, 27 October 2022 17:16 (three years ago)

there's a video of the game on the guy's twitter feed, you use the global flag: /What|have/g

ledge, Thursday, 27 October 2022 17:49 (three years ago)

I guess /[^\s]+ha[^\s]+/ would work, harder to type quickly though.

ledge, Thursday, 27 October 2022 17:52 (three years ago)

Ugh so fussy, but I guess that's regex for you (I keep forgetting to match the punctuation when that's part of what it looks for).

Fartleby the Scrivener (Leee), Thursday, 27 October 2022 18:01 (three years ago)

i've written my fair share of regexes and i have no idea how to do the exclusions... what's the syntax? also symbol ligatures (try typing !=) are for disgusting savages

diamonddave85 (diamonddave85), Thursday, 27 October 2022 19:55 (three years ago)

symbol ligatures and cursive italics or, as i call it, "frontend brain".

𝔠𝔞𝔢𝔨 (caek), Thursday, 27 October 2022 19:57 (three years ago)

ligatures and italics have over 600 years or + of history tho – I think they're extremely useful.

fpsa, Friday, 28 October 2022 02:47 (three years ago)

Regex is, and always has been, a horror show, so this is very apt.

Chewshabadoo, Friday, 28 October 2022 07:15 (three years ago)

regex stands for reginald, ex-marine

lag∞n, Friday, 28 October 2022 19:04 (three years ago)

I feel a new screename comin' on!

Capital Radio Sweetheart (James Redd and the Blecchs), Friday, 28 October 2022 19:17 (three years ago)

HI DERE!

Regex Dwight (James Redd and the Blecchs), Friday, 28 October 2022 19:20 (three years ago)

Should probably post this in the macOS hoonja-doonja thread, but holy crap this was the best $3 I spent.
https://krillapps.com/patterns/

Elvis Telecom, Wednesday, 2 November 2022 08:49 (three years ago)

My point is really that product designers who can’t program struggle to iterate. They can make the design process feel glacial and cumbersome. If you can program, it’s possible to brute-force a solution and retain some creative momentum. I guess this is probably a better discussion for a different thread!

― Allen (etaeoe), Friday, November 4, 2022 12:09 PM (ten minutes ago) bookmarkflaglink

ok i put it here

lag∞n, Friday, 4 November 2022 16:21 (three years ago)

whats the nature of the block as far as iteration just not understanding how much work various changes will take / inability to design with flexibility baked in

lag∞n, Friday, 4 November 2022 16:23 (three years ago)

the one good PM i've ever worked with came from 4th line tech support. PMs who start there career in non-technical roles are generally useless. MBA types are worse.

𝔠𝔞𝔢𝔨 (caek), Friday, 4 November 2022 16:40 (three years ago)

lol I had typed out a long comment responding to that in the other thread but gave up when it was moving too quickly

mh, Friday, 4 November 2022 18:08 (three years ago)

tl;dr version is that product ideas and direction can come from anywhere but you have to
1. Have someone running a project who can comprehend the nature of the work being done by people reporting to them, whether that's a management relationship or just a project coordinator
2. Have people who can successfully break that work down into digestible components, and explain to that management how they have value. Maybe that's an individual developer, maybe that's the person guiding a software development team

not all projects have easy first deliverable pieces and the terrible project managers are the ones who think a demo is going to "work" off the bat. and the really bad ones don't understand what completing something looks like and think that as soon as it appears to "work" you can just send it out the door

mh, Friday, 4 November 2022 18:16 (three years ago)

are we talking about project managers or product managers? i was talking about product.

𝔠𝔞𝔢𝔨 (caek), Friday, 4 November 2022 18:18 (three years ago)

I think product design (what is the thing being addressed, what are the working parts, how do people interact with this) is a different skill from product management or project management, for sure

one of the best project managers I had did work to learn all the jargon and how the pieces interacted but had absolutely no idea what half the things actually were. but they could run meetings very well, communicate with other groups to figure out if we were lined up with what other teams and stakeholders expected

mh, Friday, 4 November 2022 18:20 (three years ago)

yeah I kind of conflated the two, but I think in the twitter example (sleeping on floor lady) it sounded like those roles were also very conflated

mh, Friday, 4 November 2022 18:21 (three years ago)

They are often conflated. They shouldn’t be! I do think both are valuable, I just don’t think product designers who make web shit but can’t program are super useful.

Allen (etaeoe), Friday, 4 November 2022 18:49 (three years ago)

I don’t know if we’re too easy on product designers (i.e., it’s fine you don’t know anything about technology) or too easy on engineers (i.e., it’s fine you don’t know anything about the product you’re writing). Maybe it’s both.

Allen (etaeoe), Friday, 4 November 2022 18:50 (three years ago)

I've mentioned it before, but the one guy I knew in high school who was enamored with Google when it first appeared in the late 90s, then went to the nice school, did a non-programming course of study, and then went to work at Google was just heartbroken when he got there and found out that management wouldn't even consider product ideas if they didn't come from programmers

he quit that place and did ok later though

mh, Friday, 4 November 2022 18:56 (three years ago)

one month passes...

broke some tests that were asserting using the toString() output of an object containing other objects containing other objects containing other objects

koogs, Wednesday, 21 December 2022 11:25 (three years ago)

I respect their confidence in their ability to maintain consistent string representations.

Allen (etaeoe), Wednesday, 21 December 2022 14:14 (three years ago)

elsewhere we have tests that compare the md5sum of the (binary file) output with an expected md5sum. and if they don't match, then what? absolutely no way of debugging it. could be one bit out, could be complee garbage.

koogs, Wednesday, 21 December 2022 15:01 (three years ago)

One bit out would be impressive, until your assassination by the NSA shortly after.

Andrew Farrell, Wednesday, 21 December 2022 18:47 (three years ago)

(i didn't mean we were generating clashes, more that the output could be a single bit different from the expected but the md5sum would be completely different and there'd be no way of knowing how close you are)

koogs, Wednesday, 21 December 2022 19:46 (three years ago)

Oh yeah, sure!

Andrew Farrell, Wednesday, 21 December 2022 19:50 (three years ago)

I think it’s relatively affordable these days to generate MD5 collisions these days

G. D’Arcy Cheesewright (silby), Wednesday, 21 December 2022 21:15 (three years ago)

Oh yeah good point!

Andrew Farrell, Wednesday, 21 December 2022 21:23 (three years ago)

these days!

G. D’Arcy Cheesewright (silby), Wednesday, 21 December 2022 22:41 (three years ago)

three months pass...

The byline -- is he ours? https://github.blog/2023-03-23-we-updated-our-rsa-ssh-host-key/

Shartreuse (Leee), Tuesday, 28 March 2023 17:45 (three years ago)

wrong dude

mh, Tuesday, 28 March 2023 17:45 (three years ago)

spent the last week working into evenings, whilst ill, and through my last non-transferable holiday (meaning i lose it) to get something ready for monday.

today, friday, i find out that

a) i should be using the NEW new api and not just the new api.
b) i don't have the right permissions to use the NEW new api.
c) there's a bug in the version we currently have installed which means the NEW new api doesn't actually work. a working version was installed (on a different stack = config changes) this afternoon. not that i had permissions to use it until 17:15.

they've now moved the deadline back, to the other side of the Coronation, but only at lunchtime. has all been a waste of time.

koogs, Friday, 31 March 2023 16:41 (three years ago)

two months pass...

filename or fileName?
pathname or pathName?

(i'll take the former every time)

also: https://history-computer.com/sql-vs-css-whats-the-difference-which-is-better/ (ai garbage or parody or what?)

koogs, Thursday, 8 June 2023 16:04 (three years ago)

generated garbage, yes

mh, Thursday, 8 June 2023 16:07 (three years ago)

I was confused by the lack of obvious ads, but it's all amazon affiliate links on a number of the pages

mh, Thursday, 8 June 2023 16:08 (three years ago)

b-but

About the Author
Liam Frady
Liam is a freelance writer with a passion for professional audio, cybersecurity, and information technology. Aside from writing, he can be found in his home studio moonlighting as a mixing and mastering engineer. Outside of work, Liam can be found spending time with his family, cooking up fun recipes he found online, or making music in his spare time.

koogs, Thursday, 8 June 2023 16:19 (three years ago)

Liam sounds cool

mh, Thursday, 8 June 2023 16:47 (three years ago)

fun recipe requirements: velveeta and a butane torch finish

Enumerated funks of Walsh, Joe. (Sufjan Grafton), Thursday, 8 June 2023 18:08 (three years ago)

filename or fileName?

anything as long as it's not hungarian notation

butch wig (diamonddave85), Thursday, 8 June 2023 19:21 (three years ago)

path_name surely

mh, Thursday, 8 June 2023 20:35 (three years ago)

if you can't choose between them go with path_Name

ledge, Thursday, 8 June 2023 20:45 (three years ago)

Path_Name

mh, Thursday, 8 June 2023 20:46 (three years ago)

path-name

butch wig (diamonddave85), Thursday, 8 June 2023 20:47 (three years ago)


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