There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

programmer_humor

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

newIdentity , in D or d come on

Use Zsh or Fish and tab completion.

janAkali ,

Or better yet, use z or zoxide:
“z down” will fuzzy match the “~/Download” folder.

words_number ,

This is the way!

seitanic ,
@seitanic@lemmy.sdf.org avatar

Yeah, if that’s the only reason, changing your shell is overkill.

Astaroth ,

Never used or heard of it before but apparently zoxide is only for cd command, do you happen to know if there’s some fuzzy match for in general?

At the moment what I do is history foo | grep -i “bar”

MostlyBlindGamer , in User with this age already exists
@MostlyBlindGamer@rblind.com avatar

When you pick the wrong column for your primary key.

empireOfLove , in 0.30000000000000004

Well just don’t ask a Pentium processor for it either…

Psythik ,

4195835/3145727 = 1.333739068902037589

slazer2au ,

Yes fellow program, Harbinger is the next stage in our evolution.

nixfreak ,

This is why ceiling and floor was invented.

empireOfLove ,

But where are the walls?

Aatube , in Apple donation
@Aatube@kbin.social avatar

This was either inspect-element'd or made before March 2019. Apparently Apple (or its employees) donate little by little over each year. Here are the total donation records:

2023: $250-499 (so far)
2022-2021: $1,000–$4,999
2020: $250-499
2019-2018: $1,000-4,999

Made me laugh out loud though at least, right hand side mspaint comic is well-made

CanadaPlus , in How the IT guys see the users

I like the literal dinosaur in the second panel.

Ew0 ,

Probably studying for a PhD.

Chais , in For?
@Chais@sh.itjust.works avatar

Spell checking, apparently.

southernwolf , in Its not wrong though
@southernwolf@pawb.social avatar

It’s honestly remarkable how few people in the comments here seem to get the joke.

Never stop dissecting things, y’all.

stevedidWHAT ,
@stevedidWHAT@lemmy.world avatar

As above so below, the microscopic and the macroscopic

NounsAndWords , in Its not wrong though

It just occurred to me that AI in the nearish future will probably/almost certainly be able to do this.

Psythik ,

I can’t wait for AI to make a PC port of every console game ever so that we can finally stop using emulators.

amki ,
@amki@feddit.de avatar

This won’t happen in our lifetime. Not only because this is more complex than rambling vaguely correlated human speech while hallucinating half the time.

i_am_hiding ,

AI can literally read minds. I don’t think it’s that great of a step to say it should be able to decompile a few games.

amki ,
@amki@feddit.de avatar

About half the time, the text closely – and sometimes precisely – matched the intended meanings of the original words.

Don’t be surprised but about half of the time I can predict the result of a coin flip.

I’m not saying it’s not interesting but needing custom training and an fMRI is not “an AI can read minds”

It can see if patterns it saw previously reappear in a heavily time delayed fMRI. Looking for patterns you already know isn’t such an impressive feat Computers have done this for ages now.

It litterally can’t read minds.

sfgifz ,

Later, the same participants were scanned listening to a new story or imagining telling a story and the decoder was used to generate text from brain activity alone. About half the time, the text closely – and sometimes precisely – matched the intended meanings of the original words.

You left out the most important context about “half of the time”. Guessing what you’re thinking of by just looking at your brain activity with a 50% accuracy is a very very good achievement - it’s not pulling it out of a 1 or 0 outcome like you’re with your coin flip.

You can pretend that the AI is useless and you’re the smartest boy in the class all you want, doesn’t negate the accomplishments.

amki ,
@amki@feddit.de avatar

Being close (and “sometimes” precise) to the intended meaning is an equally useless metric to measure performance.

Depending on what you allow for “well close enough I think” asking ChatGPT to tell a story without any reading of fMRI would get you to these results. Especially if you know beforehand it’s gonna be a story told.

GBU_28 ,

Off the shelf models do this, yes.

Sophisticated local trained models on expensive private hardware are already dunking on publicly available versions. The problem of hallucination is generally resolved in those contexts

amki ,
@amki@feddit.de avatar

Sure but until I see such a thing I chose not to believe in fairy tales.

Decompiling arbitrary architecture machine code is quite a few levels above everything I’ve seen so far which is generally pretty basic pattern recognition paired with statistics and training reinforcement.

I’d argue decompiling arbitrary machine code into either another machine code or legible higher level code is in a whol other league than what AO has proven to be capable of.

Especially because with this being 90% accurate is useless.

GBU_28 ,

Again you aren’t seeing this because these models are being developed for private enterprise purposes.

Regarding deep machine code analysis, sure, that’s gonna take work but the whole hallucination thing is an off the shelf, rookie problem these days

rikudou ,

It’s not, though. Hallucinations are inherent to the technology, it’s not a matter of training. Good training can greatly reduce the likelihood, but cannot solve it.

GBU_28 ,

Training doesn’t solve hallucination. I didn’t say that

sacredfire ,

Why does a pre-trained model need expensive private hardware after it was trained, other than to handle API requests faster? Is Open AI training chat-GPT on inferior hardware compared to these sophisticated private versions you mentioned?

GBU_28 ,

The fine tuning, while much more efficient than starting fresh, can still be a large amount of work.

Then consider that your target corpus of data may also be large.

Then consider to do your reasoning tasks across that corpus also takes strong hardware to get production ready response times.

No, openai isn’t using inferior hardware, but their model goals, token chunking strategies and overall corpus are generalist in nature.

There are then processing strategies teams are using to go beyond the “memory” limitations gpt 4 has, that provide massive benefits to coherency, essentially anti hallucination and better overall reasoning

secret301 ,

I think it’ll be in our lifetime just not anytime soon. I feel like AI is gonna boom like the internet did. Didn’t happen overnight and not even in a year but over 35ish years

WoodlandAlliance ,

deleted_by_author

  • Loading...
  • 257m ,

    That dosen’t really translate to neural nets though. There is nothing inherent about matrix multiplication that would make it good at reading code. And also computers aren’t reading code they are executing it. The hardware just reads instruction by instruction and performs that instruction it has no idea what the high level purpose of what it is doing actually is.

    gens ,

    Half of programming is writing code, the other half is thinking about the problem. As i learn more about programming i feel that it is even more about solving problems.

    amki ,
    @amki@feddit.de avatar

    It’s the other way round. Code is being written to fit how a specific machine works. This is what makes Assembly so hard.

    Also there is by design no understanding required, a machine doesn’t “get” what you are trying to do it just does what is there.

    If you want a machine to understand what specific code does and modify that for another machine that is extremely hard because the machine would need to understand the semantics of the operation. It would need to “get” what you were doing which isn’t happening.

    SnipingNinja ,

    Idk the specifics, but what you say makes it sound like it would be easier to create an AI that recreates a game based on gameplay visuals (and the relevant controls)

    amki ,
    @amki@feddit.de avatar

    That game would still not work because there is a ton of hidden state in all but the simplest computer games that you cannot tell from just playing through the game normally.

    An AI could probably reinvent flappy birds because there is no more depth than what is currently on screen but that’s about it.

    Mockrenocks ,

    Ai prompt: make me a program that will convert PS5 games to PC

    AI: Use Convert-PS5GameToPC

    End of line

    amki ,
    @amki@feddit.de avatar

    Do what?

    perviouslyiner ,

    It was a staple of Asimov’s books that while trying to predict decisions of the robot brain, nobody in that world ever understood how they fundamentally worked.

    He said that while the first few generations were programmed by humans, everything since that was programmed by the previous generation of programs.

    This leads us to Asimov’s world in which nobody is even remotely capable of creating programs that violate the assumptions built into the first iteration of these systems - are we at that point now?

    amki ,
    @amki@feddit.de avatar

    No. Programs cannot reprogram themselves in a useful way and are very very far from it.

    legion02 ,

    Eh, I’d say continuous training models are pretty close to this. Adapting to changing conditions and new input is kinda what they’re for.

    Bjornir ,

    Very far from reprogramming though. The general shape of the NN doesn’t change, you won’t get a NN made to process images to suddenly process code just by training it.

    yum13241 ,

    Then how does polymorphic/self-modifying code work?

    amki ,
    @amki@feddit.de avatar

    It doesn’t or do you have serious applications for self-modifying code?

    yum13241 ,

    Some use it for causing millions of dollars in damage.

    rikudou ,

    are we at that point now?

    Nope, but we’re getting there.

    jeanma , in Golang be like

    OP never said he/she commits such code but wants to iterate, test, explore.

    Of course, unused var should not be part of a commit.

    i_need_a_vacation , in Always write comments
    @i_need_a_vacation@kbin.social avatar

    Yeah, this grinds my gears. I use to comment my code when I'm working on my personal projects, then at the office I have to waste time trying to decipher my boss's code because he won't comment absolutely anything.

    That plus the ridiculous deadlines means that I don't have time to comment my own code, fast forward several months later without working on a particular project and now I have to decipher his and my own code.

    One day he actually had the nerve to say to me: 'Yeah, you should comment your code'. How I refrained of commiting murder that day I don't know.

    wdx ,

    Could a pre-commit hook have caused the murder to not get committed?

    CodexArcanum , in Other data structures exists?

    Javascript devs be like…

    palordrolap ,

    It isn't just JavaScript (or Java which uses the "Hashmap" name).

    There are, of course, languages that don't have an equivalent structure, but for those that are sufficiently popular, it's almost certain that someone has written a library that emulates associative arrays and then fairly certain that that library, in turn, has been used in production somewhere.

    File this under "If it's stupid but it works..."

    CodexArcanum ,

    I’m just poking fun that the fundamental type in JS (Object) is an associative-array/hashmap. Technically it has some fancy under-the-hood handling for pure arrays and primitive types. This is also exactly true of Lua, and a little true of Ruby and Python.

    Really, most programmers would do great to start with a hash map or array list and only specialize out further when the problem calls for it.

    floofloof , in Just a dad helping out

    Yeah but how many normal-sized screens do you want it displayed on? Everyone has one these days. That soon adds up.

    over_clox , in CrowdStrike is a verb now

    Kinda ironic that it’s called CrowdStrike, cuz it sure as hell struck a huge crowd of systems!

    Well done CrowdStrike crew, maybe you guys will start testing your stuff before deploying to the public… 🤦‍♂️

    isVeryLoud ,

    Not at least until they fire their CEO

    Avg , in I'm afraid I accidentally blue... everything

    Most of my coworkers use a Mac, I don’t, I get a day off.

    ashok36 , in They did not reply.

    I got one of these calls last week. I told them for $10m they could have it. We haggle for a bit but they weren’t willing to even meet me half way.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • [email protected]
  • lifeLocal
  • goranko
  • All magazines