HackerTrans
TopNewTrendsCommentsPastAskShowJobs

onre

no profile record

comments

onre
·3 เดือนที่ผ่านมา·discuss
This is equal parts brilliant and demented. Thank you.

  syöte olkoon vakiosyöte

  yritä
    tee syötteen kullekin alkiolle:
      käsittele(alkio)
  paitsi poikkeustilanteessa liukulukuylivuoto:
    kirjoita(virhetulosteeseen, "liukulukuylivuoto")
  muutoin:
    kirjoita(virhetulosteeseen, "odottamaton poikkeus")
onre
·10 เดือนที่ผ่านมา·discuss
I'm typing this on a 6S Plus, and so far it seems like this'll do until iOS 15 patching stops.
onre
·11 เดือนที่ผ่านมา·discuss
Instead of ignoring everything, I've found it better to apply this setting instead:

  git config status.showuntrackedfiles no
onre
·11 เดือนที่ผ่านมา·discuss
Intake and exhaust manifold shapes affect the power and torque characteristics of the engine. Also, these are not cheap parts. Also a quick glance at the parts catalogue suggests that the example engine, BMW B48, has different pistons and connecting rods for different tune levels, suggesting that the cast engine block is one of the few components which are actually interchangeable between the versions. Didn't check, but I'd guess the turbocharger compressor and turbine wheels might be different, too.
onre
·11 เดือนที่ผ่านมา·discuss
For a moment I was really confused about this purported achievement of late Mary Stuart before my brain made the right connection.
onre
·11 เดือนที่ผ่านมา·discuss
As a Northern European (Finland) I can tell you that the electricity cost here for last year was closer to 0,1 € per kWh including the transfer fee and taxes. Additionally, more than 40 % of houses here have electric heating. The heating season starts in early autumn and ends in late spring, lasting 8 to 9 months depending on the year. As the electricity used by the device is turned into heat, during the heating season running it costs nothing.
onre
·ปีที่แล้ว·discuss
I would most likely end up with something like this:

  CAT          CATalogue - output the contents of current directory
  RM           to Raster Memory - load contents of named file in framebuffer
  MV           Make Virtual - map the file into memory and output the address
  LS           Load System - attempt to reboot using the named file as the kernel
  CD           Create Directory - self-explanatory
  SH           System Halt - immediately stop all processing
...and so on.
onre
·ปีที่แล้ว·discuss
Trains don't even notice that. Russian wagons with nominal gauge of 1520 mm are an everyday sight on the Finnish rail network, nominal gauge 1524 mm. And yes, regardless of sanctions.

https://vaunut.org/kuva/174390?tag0=24%7CVgobo%7C
onre
·ปีที่แล้ว·discuss
Yes. The current state of things makes much more sense when one is aware of the background.
onre
·ปีที่แล้ว·discuss
Thanks, I always mix up mold and mildew. However, "arpa" is specifically a lottery ticket, whereas there are tickets for concerts, tickets to ride, tickets in Jira etc...
onre
·ปีที่แล้ว·discuss
> I have to say, .home.arpa doesn't exactly roll of the tongue like .internal.

In my native language (Finnish) it's even worse, or better, depending on personal preference - it translates directly to .mildew.lottery-ticket.
onre
·ปีที่แล้ว·discuss
You might consider using this handy thing, also available as a binwalk module, for recognizing the ISA.

https://github.com/airbus-seclab/cpu_rec
onre
·ปีที่แล้ว·discuss
I remember borrowing a book from the library, which had a type-in checksum program of this sort. It was done like was common for C=64 things of this kind - there's a BASIC FOR-loop iterating through a memory area, reading in bytes from DATA statements you've typed in and POKEing those bytes into memory, not completely unlike entering a program manually from the front-panel switches of an older computer.

So, after typing that in and probably SYSing (C=64 BASIC command for executing machine code from arbitrary memory location) to some address, it did print out a two-digit (eight-bit) hex checksum after every BASIC line I entered on the C=64 and the program listing in the book had the correct checksums for every line, so spotting errors was more or less instantaneous.

This stuff brings memories.

  FOR I=40960 TO 49152:POKE I,PEEK(I):NEXT I
  POKE 1,54
From top of my head; loop through the BASIC interpreter area, reading byte by byte with PEEK and POKEing those bytes back to the same addresses. Sounds nonsensical? Not so, because the C=64 does have full 64 kB of RAM, but some of it is overlapped by ROMs. What happens here is that you're reading from ROM but writes always go to RAM, so you're copying the BASIC interpreter from ROM to RAM. After that, the POKE statement turns off the ROM overlap and the interpreter is now run from RAM, so you can edit it live - and obviously cause all sorts of interesting crash situations.

It sure did help later with career in IT to have understood this kind of stuff at age of around ten.
onre
·ปีที่แล้ว·discuss
I feel this is a side-effect of so many people getting "simple" wrong, as in, calling things simple because they superficially seem so, even while being aware of but ignoring the underlying complexities.
onre
·ปีที่แล้ว·discuss
A no-frills X toolkit. Think Athena, add things like dialogs, file picker and make it completely vectored. No antialiasing, top goal is small size and fast execution. Can display vector and bitmap fonts, only external dependency is xcb. I just recently got my first digital storage oscilloscope and begun writing a companion software for it, as I couldn't find anything usable. This is one of the offshoots of that, the other being a somewhat Postscript-like language for scripting the thing.

Once I get this done, I get back to the actual project of a 2.11-BSD based handheld computing appliance.

Also there is this thing called "day job".
onre
·ปีที่แล้ว·discuss
Does not reflect my experience at all. T420 from 2011 is still completely usable. Haven't clocked the boot-up time but definitely not minutes, more like a couple dozen seconds. Everything worked out of box with latest stable Debian. Can do 2560x1600 over the DP connector, too. This is not even a top-spec model but the slowest i5 available back then.
onre
·2 ปีที่แล้ว·discuss
I've gotten an OS to run on a new platform with a debugging tool portfolio consisting of a handful of LEDs and a pushbutton. After getting to the point where I could printf() to the console felt like more than anyone could ever ask for.

Anecdote aside, it certainly doesn't hurt to be able to debug things without a debugger if it comes to that.