I am the journeyer from the valley of the dead Sega consoles. With the blessings of Sega Saturn, the gaming system of destruction, I am the Scout of Silence… Sailor Saturn.

  • 3 Posts
  • 128 Comments
Joined 1 year ago
cake
Cake day: June 29th, 2023

help-circle



  • Robots are becoming extremely capable – able to respond to very abstract commands like “move forward”, “get up”, “kick ball”, “reach for object”, etc.

    Computers now have the cutting edge ability to-- *checks notes*– parse Zork text adventure style user input.

    If you’ve done any reading on the history of AI you may recognize these sorts of commands as “blocks world”, which goes back to the '60s. Sure there’s been a ton of advancements since then, but just the basic act of a computer understanding “kick ball” is not exactly groundbreaking.


  • If I had a nickle for every time on June 27th 2024 I’ve read someone argue that chatbots make lawyers obsolete I’d have two nickles. Which isn’t a lot of money but it’s weird that it happened twice.


    As a “senior” programmer; my coworkers, even the newer ones are people. They can think. They are professional. I can describe problems to them and eventually get solutions, or at least sensible follow-up questions. I don’t have to baby them or “prompt engineer” stuff I tell them. I can just sit back and drink my hot cocoa and occasionally try to sound distinguished while my juniors do all the hard work.

    Chatbros have discovered that you can get a chatbot to string together tutorials from the net into simple programs that almost work with some finangling. Somehow they never realized that you could always do this by web searching for “socket example I hate unix please make it gentle”. Of course none of this generalizes to anything complex or not in the training set (read: anything that anyone will actually pay you to do), but the Chatbros don’t care because they were never doing real work in the first place.




  • I don’t have a Clyde 3.25" Rondo or whatever it’s called; but try these for fun and profit I guess:

    1. You come to a room with three doors, only one of which leads to freedom. Guarding the doors is a capybara, who speaks only truth. What question should you ask the capybara?

    2. I stand on four legs in the morning. Four at midday. And four at night. What am I?

    3. A group of 100 people with assorted eye colors live on an island. They are all perfect logicians – if a conclusion can be logically deduced, they will do it instantly. Everyone knows the color of their eyes. Every night at midnight, a ferry stops at the island. Any islanders who have figured out the color of their own eyes then leave the island, and the rest stay. Everyone can see everyone else at all times and keeps a count of the number of people they see with each eye color (including themselves), but they cannot otherwise communicate. Everyone on the island knows all the rules in this paragraph. Who leaves the island, and on what night?

    4. Normal sudoku rules apply. Orthogonally connected cells within each region must differ by at least 3. Orthogonally connected cells between regions must differ by at least 4. The central digit in each region is less than or equal to its region number. (Regions are numbered in normal reading order.)

    5. For the integer k=668 does a Hadamard matrix of order 4k exist?

    6. What has roots that everybody sees the top of, is exactly the same height as trees, Up, up it goes, and yet grows?

    Don’t forget to prompt engineer








  • It turns out the ‘I’ in “AI” stood for “Linux” all along!

    User friendliness aside (who in their right mind would want arbitrary code execution except shitty and indeterministic?), I sandbox stuff at my job* and it’s hard to evaluate how secure / privacy preserving this is without more details.

    If they’re running a full fledged VM and super extra careful around the sandbox boundary** it’s probably fine; otherwise it seems perhaps a bit loosey-goosey.

    Someone will eventually try to run a Monero cryptocurrency miner in it if they haven’t already. So I hope they have their timeouts and resource limits in order (actually I hope they don’t, for the lols).

    * But like no one told me how to do it or gave me a certificate or anything I just had to do my best

    ** This is often way scarier than programmers are used to, unless they’ve written a secure parser before. I wrote a vulnerability into my code a few years back when I was younger and foolish, by trusting an array length from inside the sandbox. My coworker found it while fuzzing the code.