

I know :-)
Here’s hoping for more red today.


I know :-)
Here’s hoping for more red today.


The market is full of things like raspberry PIs (too expensive to start up right now), arduinos, ESP32, and so on. Python only gets easier to learn. Are these things truly not in use anywhere, or are the successes not being reported on?
I guess I read here about a case where a company was blowing through LLM tokens because people were using them to convert PDFs, so maybe it’s just not sticking.


Replying to myself to put up a link to the jenga tower scene of The Big Short in case nobody has seen it: https://www.youtube.com/watch?v=xbiDrzTd8fE



It’s there in the S&P 500 between MSFT and PLTR on the left kind of in the middle (size of the box is the market cap of the company). It’s in practically every 401(k) in the US. BBB is somewhere in the middle of the jenga tower.


You could probably get 80% of that process done by learning some python. If you have a string “s”, then replacing double newlines with a single newline is as easy as
re.sub("\n\n", "\n", s)
where “\n” is an LF in many programming languages. A CR is often “\r” in the same vein. Just be aware that regular expressions can be very, very frustrating; and every webpage is going to be a new adventure in how it got formatted. If you use something like spyder it’ll allow you to see what the data looks like inside the python process so you get a chance to iterate.


There is Carriage Return (CR), and also Line Feed (LF, often called New Line). If you think about old mechanical printers with the metal arm sticking out, a CR operation would move the type head to the far left column, and a LF operation would advance the paper by one line. Variously through the years depending on hardware (typewriter, teletype, those early CRTs that you had to refresh the screen, or modern computers) you would get one or both of those if you pressed Return/Enter, and it’s configurable in software, depending on the software. I don’t know what windows does these days with notepad, but at one time the Enter key sent both (CRLF). UNIX style systems tended to use LF, and older Macs as someone else referenced used CR. If you wrote a generic program to handle anything you had to account for all of them. Mostly these days it gets abstracted away which generally works well enough unless a team of people used a random collection of software to edit a text file.
printf "\r\nHexadecimal, like that scene from The Martian.\n" | hexdump -C
00000000 0d 0a 48 65 78 61 64 65 63 69 6d 61 6c 2c 20 6c |..Hexadecimal, l|
00000010 69 6b 65 20 74 68 61 74 20 73 63 65 6e 65 20 66 |ike that scene f|
00000020 72 6f 6d 20 54 68 65 20 4d 61 72 74 69 61 6e 2e |rom The Martian.|
00000030 0a |.|
00000031
The 0a is a Line Feed character, and the 0d is a Carriage Return character. In my terminal without piping it through hexdump you get:
printf "\r\nHexadecimal, like that scene from The Martian.\n"
Hexadecimal, like that scene from The Martian.
The LF at the end of the string makes it so that the prompt at the terminal doesn’t appear on the same line as the output, and the blank line before the text is caused by the LF at the beginning. I don’t know/care/have to worry about what eats the CR.


Ah, sorry.
D-Bus has a similar mechanism to the one that got this hacker arrested. I guess I was expanding upon the previous conversation about how much stuff is considered inside the inner security circle for d-bus.


You shouldn’t forget about selective enforcement.


Apart from what everyone else here has said LegalEagle did some videos on this, and the big takeaway was that everybody needed to get a lawyer ASAP instead of trying to plead their case in the court of public opinion via podcast/youtube videos/whatever. Reckless Ben got the audio from his court case and used it to make a youtube video (he was representing himself). This whole thing went from ordinary mess to Great Big Mess with no signs of anyone trying to dial it down.
It think this is the one depending on how far the rabbit hole you want to go down:


Everyone is all ears for solutions: https://www.news5cleveland.com/news/local-news/we-follow-through/clevelands-flock-safety-cameras-set-to-go-dark
I don’t think we’re using alternate timelines enough. This is an example of a situation where nobody involved wanted to be in that situation, and it happened anyway. Who had something they could’ve done differently that wouldn’t have brought that situation to a Kohl’s parking lot? Maybe instead of reviewing a range rover he should’ve been reviewing a rental Nissan Versa?
Right now Flock can have as absolutely shit of an AI as they want and there’s no incentive to improve it. False positives don’t cost them anything. And P.S. the video data isn’t ever going away.


https://en.wikipedia.org/wiki/Brazil_(1985_film)
There are so many timelines where this guy ends up dead or in jail. This timeline depended on his ability to get a rep from Jaguar on the phone on a weekend. I can kind of understand the four car response; the system kept dropping him and they finally had positive confirmation this was the car and where it was. I wonder how often clerical/technical errors happen and how early in the process they normally get caught. This could’ve ended as badly as some of the swatting cases have and started out much the same way: an input into a system drives a forceful output. It doesn’t matter to the recipient of the force if it was a prank, a malicious act by someone, or a glitch in the matrix. If someone dies because a bad actor swatted someone there are consequences. What are the consequences if the entire Flock system is pure happy path from lens to server?

It’s not fear, it’s a mindset that starts with the idea that what they personally want is how the world ought to work. People don’t generally make public arguments that go against their own self interest. Dudebro from the OP’s screengrabs obviously has his sights set on multiple women, so he’s going to say whatever dumb shit that can drag that mindset into whatever group he considers himself to be a part of.
Or it’s satire and this is Poe’s law in action. Dude should’ve had a winky.
It’ll be funnier when it plays out at a spacex shareholders’ meeting.


Long story short: Microsoft just helped pop an alleged hacker using some windows device ID. I linked to a post in the hackernews thread about d-bus:


Ft. Knox
Did anyone ever go in there and show the gold? I thought someone campaigned with that as a promise.


Be the change you want to see in the world…


They’re also transmitting mixed chinese/<insert local language here> language broadcasts into other countries via shortwave. The US gutted VOA in response.


it would be able to detect
“It” doesn’t have to be any good at it:
https://blog.princelaw.com/2009/07/08/nfa-and-constructive-possession-myth-or-reality/
https://www.usconcealedcarry.com/resources/ccw_reciprocity_map/ne-gun-laws/
The laws across the US are a patchwork of random thoughts that are constantly amended poorly. If you have any questions you should ask a local lawyer (this is a recommendation from a Paul Harrell video from youtube) since none of us will be there to bail you out of jail or pay legal fees in the event something goes wrong.