HackerTrans
TopNewTrendsCommentsPastAskShowJobs

U1F984

no profile record

Submissions

[untitled]

10 points·by U1F984·vor 11 Monaten·0 comments

Python and NixOS: A match made in hell

crescentro.se
1 points·by U1F984·vor 12 Monaten·0 comments

comments

U1F984
·vor 3 Monaten·discuss
Java does use dup in some cases, e.g.

   public static void test() { 
      new Object();
   }

         0: new           #2                  // class java/lang/Object
         3: dup
         4: invokespecial #1                  // Method java/lang/Object."<init>":()V
         7: pop
         8: return
U1F984
·letztes Jahr·discuss
From the article: Lookup tables are always faster than calculation - is that true? I'd think that while in the distant past maybe today due to memory being much slower than CPU the picture is different nowadays. If you're calculating a very expensive function over a small domain so the lookup fits in L1 Cache then I can see it would be faster, but you can do a lot of calculating in the time needed for a single main memory access.
U1F984
·vor 2 Jahren·discuss
I can't find anything about these low gravity regions (Google redirects me to your post) but they sound interesting. Can you share some reading material?
U1F984
·vor 2 Jahren·discuss
I checked on my OnePlus 7 and indeed it's possible by default. There is a setting to disable access to the notification (/setting) drawer from the lock screen at least in Oxygen OS though.
U1F984
·vor 2 Jahren·discuss
This is actually possible. There's Linux tools to extract the WIM files from a Windows installation iso. You have to create the appropriate partition setup (EFI partition with bootloader, NTFS partition with the extracted files), and for configuration of the bootloader I created https://github.com/U1F984/create_bcd/
U1F984
·vor 2 Jahren·discuss
Not sure why this is down voted, I also looked into this at some point but was unable to find a solution.
U1F984
·vor 3 Jahren·discuss
The somehow is explained quite well at the end - they discussed different approaches and why they chose the current one.