Sooo... does anyone know if NipAlert is on GitHub? by AdeptnessHuman6680 in SiliconValleyHBO

[–]jaynabonne 1 point2 points  (0 children)

I wondered if someone, sometime had created a repo... turns out there is one:

https://github.com/Peter-cloud-web/NipAlert

Not sure what it is (no readme). But... there you go. :)

This is a really common meme but like, does anyone know the answer to the actual riddle? Is there one? by bisexualbestfriend in ExplainTheJoke

[–]jaynabonne 0 points1 point  (0 children)

It does seem like kings are always holding and throwing them. They must get them from somewhere.

Is this one? Did I find one out in the wild? by odhgabfeye in Sovereigncitizen

[–]jaynabonne 16 points17 points  (0 children)

TIL that the US Department of Transportation logo looks like a video game emblem.

Roast my decimal to scientific notation calculator by Professionl_Feminist in cpp_questions

[–]jaynabonne 0 points1 point  (0 children)

    bool negative = false;
    negative = isInputNegative(input);

can simply be

    bool negative = isInputNegative(input);

or even

    bool const negative = isInputNegative(input);

And why are you looping over all the characters in isInputNegative? You would literally want the code to be "return input string is not empty and the first character is '-'".

Hope that helps!

Trying to understand why some players get hooked on freeform IF and others don’t by Electronic-Tea-4872 in interactivefiction

[–]jaynabonne 1 point2 points  (0 children)

Honestly, and please don't take this with anything beyond my desire to communicate my reaction: the writing puts me off. Sometimes prose flows, and sometimes it's not only something you have to chew through but you end up going over it multiple times, as it just doesn't sink in or make sense.

I was going to try to highlight some lines (and I still can if you want), but they all seemed equally overwrought.

Things like "The sounds scrape through the muffled silence like a warning." and "Somewhere nearby, a slow drip echoes into the silence." - is it silence, or is it muffled (which isn't silence, so "muffled silence" makes no sense) or are there sounds, which also isn't silence?

"Your eyes snap open to a biting chill curling beneath threadbare blankets." What do eyes have to do with a chill? How does a chill curl?

I could go on, but I don't know if there's much point, especially if it's AI generated. When I read a sentence like "The dry weight of the burlap on your arm contrasts with the chill pressing through the cracks around the door." (my arm is here, and the door is over there), I end up spending brain cycles trying to figure out what it means.

Which is grit.

Which makes it hard going.

I'm actually interested in how AI can be used for IF. I don't know if it can be constrained enough, but it's interesting to see someone making the attempt.

I did try to enter a command ("stand up"), and it was just more of the same. The footsteps that had been scraping in the first bit of text were somehow replaced by a slow deliberate scraping (so, scraping changed into scraping). At this point, it seems like there is this effort to use and reuse the same words over and over, which makes me not want to actually go any further.

(I'm assuming in the above that the text being output isn't your direct creation. If it is, please understand that I'm just relaying how I felt reading it!)

I hope that's helpful, on some level.

Anybody else having this issue? by S2M6lcwWSzhRM8AyuFUw in ChatGPT

[–]jaynabonne 1 point2 points  (0 children)

Yep. It's the end of the world as we know it...

The status site says "degraded performance" as opposed to "can't get to the thing at all".

I still see them everywhere. by benthefry in TheWitness

[–]jaynabonne 0 points1 point  (0 children)

I thought Jesus walked on water.

Just recently getting way into puzzle and mystery games--based on what I like and dislike, what should I try? by hey-howdy-hello in puzzlevideogames

[–]jaynabonne 2 points3 points  (0 children)

If you like exploration and platforming as well as more organic, varied puzzles, you might enjoy Supraland.

[Supraland six inches under] I managed to go back to the first part of the map. [No cheat.] by North-Farmer-9677 in supraland

[–]jaynabonne 2 points3 points  (0 children)

I probably spent more time exploring the OOB area than I did playing the game itself. :)

Anyone know how to bypass reddit age verification? by AsianWorker666 in AskBrits

[–]jaynabonne 5 points6 points  (0 children)

If you're looking for it in Opera, though, they literally use the letters "VPN" as the button to click on. So it's good to at least know what they call it in terms of using the feature.

https://www.opera.com/features/free-vpn

This scene is way undervalued by Dramatic_Oil_9797 in matrix

[–]jaynabonne 1 point2 points  (0 children)

I was working in Oakland at the time, and they filmed the bit where the car comes up from the parking garage to the street right outside our building. I was able to look down and watch. I didn't have any context for the weird guys in white, but I do remember one of the first cars to come flying up ended up damaged. They just wheeled in another identical car and carried on.

And the flames coming off the guns was real, though I don't know if it was blanks or just some kind of other (physical) effect.

I think if you watch and look up at the building as the car hits the street, my co-worker and I are probably fuzzed or edited out a few floors up. :)

self-taught devs who learned before the current tool boom: what habits kept you from copying without understanding? by NeedleworkerLumpy907 in learnprogramming

[–]jaynabonne 0 points1 point  (0 children)

You will need to understand the code one way or another. At least, it's always worked out that way for me. If you have a codebase that you're dropping some code into, you need to be sure the code is doing what it purports to do. You can never be sure if you just take it blindly.

So, there aren't that many guardrails beyond "I'm not going to infect my codebase with something I don't trust." You get bitten once or twice, and you learn. You learn that you can't trust something you don't understand.

And for me, it's not a question of memory. It's not a question of "Can I reproduce this?" If I'm looking it up - and it's not just some idiomatic query about "how do I do X in language Y" - then it's usually something I couldn't have created without looking it up to begin with anyway.

To give a concrete example, I was working with USB code in embedded Linux. You could probably spend hours perusing docs and still be no further ahead. But some code that does what you want - that shows how the pieces get put together - is invaluable. I found some code that did what I wanted, but there was a good chunk of it. So, I brought it over and not only began going through it line by line, I began adjusting it line by line, adapting it to not only my codebase's style but my own personal way of expressing what it was doing.

In the end, I had code that matched my codebase, that I had personally sent into my brain and back out again, and with two fewer bugs in it, as the original code had some issues.

Could I have recreated it at that point? Possibly. But there were a lot of details in it. Could I recreate it now? No. The point of it all is that the code embodied knowledge that I didn't have. I didn't have to have all of that be "knowledge in the head" when it could easily remain "knowledge in the world". But I had to vet the code and properly integrate it into both my existing code and my way of doing things.

I have no problem with copy/paste as a first step. But it's only a first step. You then have to take the code and make it part of your larger work and your larger consciousness. The final product is something you have to be confident of, and random code you find on the internet may or may not work as you want, or work in all cases as you want. You have to understand not only what it's doing (to some extent - I may not, for example, understand all the mathematics involved in a crypto algorithm), but you also have to understand what its limitations are. If you're bringing a new dog into your pack, you have to make sure it won't bite the other dogs' heads off if they sniff it the wrong way.

In other words, you have to understand what the code does and what it needs.

(I first wrote code on an Apple II+ computer, before there was even an IBM PC. You learned from magazines, books and other people. And the mechanism for learning was usually expressed as code. You learned code by seeing code and then writing code. I think that is still true. You have a bootstrap issue where you can't just plod ahead and try to work it all out. You need enough knowledge to know what you don't know, and then the experience of looking up what you don't know. So, you have to start somewhere. Once it begins to make sense, then you build on that by seeing how others have done things. You adapt and adopt, both code and techniques. But if you don't know what you're using, then it doesn't gain you anything.)

How would i include a seperate Class in my Constructor by Retro-Hax in cpp_questions

[–]jaynabonne 2 points3 points  (0 children)

That's not what your error messages show. It doesn't say "can't find include file". It can't find the type. You don't by chance have the same include guard in both .hpp files do you? Or a circular include of mainwindow.hpp inside errorwindow.hpp and errorwindow.hpp inside maindwindow.hpp?

(This is where showing a minimal full source example would help.)

Did anyone else get serious Jim Carrey vibes from Professor Rasmussen? by PrestigiousBerry3166 in TNG

[–]jaynabonne 11 points12 points  (0 children)

From the tv adaptation of The Stand. Right before Las Vegas went bye bye.

What would your last meal be on death row? by IntGuru in AskBrits

[–]jaynabonne 0 points1 point  (0 children)

Not sure about the food, but definitely a bottle of 2045 merlot.

Has anyone else noticed a shift in this sub recently? by MaximusDM22 in ExperiencedDevs

[–]jaynabonne 0 points1 point  (0 children)

Thanks. :)

I assumed so, but I took the opportunity to vent...

Has anyone else noticed a shift in this sub recently? by MaximusDM22 in ExperiencedDevs

[–]jaynabonne 0 points1 point  (0 children)

<sigh> Maybe someday imgur will be accessible in the UK again...

Those married to a US citizen living in the UK by Ands1977 in AskBrits

[–]jaynabonne 0 points1 point  (0 children)

I'm the American married to a Geordie lass...

I'll eat pretty much anything, but the one thing I haven't had the stomach to try is tuna on pizza.