Advertisement · 728 × 90

Posts by Erik André

Den er fin å gå på plass før en binder opp 30k, ja.

Tjenesten jeg lenket til er en av de få tingene som faktisk er gratis, i alle fall da jeg brukte den. De vil nok gjerne at du skal begynne å betale for Fiken etterpå, men det er valgfritt. Mindre tid på dokumenter og mer tid til selskapet ditt.

3 weeks ago 0 0 0 0
Preview
Start AS med Fiken Start AS med Fiken – enklere blir det ikke.

Om du gjennomfører det anbefaler jeg denne tjenesten fra Fiken: starte-as.fiken.no

Har ingen tilknytning, bare brukt det selv og er fornøyd.

3 weeks ago 0 0 1 0
AKKURAT NÅ AKKURAT NÅ AKKURAT NÅ AKKURAT NÅ AKKURAT NÅ AKKURAT NÅ AKKURAT NÅ AKKURAT NÅ AKK

AKKURAT NÅ AKKURAT NÅ AKKURAT NÅ AKKURAT NÅ AKKURAT NÅ AKKURAT NÅ AKKURAT NÅ AKKURAT NÅ AKK

Og ikkje glem

3 months ago 1 0 0 0

what

4 months ago 2 0 0 0

Norsk bilist bruk parkeringslys ved midlertidig stopp challenge (any %) (IMPOSSIBLE)

5 months ago 0 0 0 0

Thanks for doing this!

In the survey it says Q13 about following news is optional, but it's not possible to skip it

5 months ago 0 0 2 0
Post image
5 months ago 50 7 0 0

Her må Ulsteins nye spinndoktor på jobb

5 months ago 1 0 1 0
Advertisement

Jeg har bursdag i slutten av september og regner med jeg kan få kakemann i gave rundt 2030

5 months ago 2 1 0 0

Maple Mono?

5 months ago 1 0 0 0
Overskrift fra Aftenposten: Riksrevisjonen hevdet at KI kunne spare 155.000 årsverk. Men tallet stammet fra ChatGPT.

Overskrift fra Aftenposten: Riksrevisjonen hevdet at KI kunne spare 155.000 årsverk. Men tallet stammet fra ChatGPT.

Ser ut som om vi kunne ha spart oss for et årsverk i Riksrevisjonen, i alle fall
www.aftenposten.no/norge/politi...

5 months ago 2 0 0 0
Preview
NetNewsWire NetNewsWire is a free and open source RSS reader for Mac.

Highly recommend netnewswire.com for iOS/macOS

5 months ago 2 0 0 0

Jeg vært i flere fengsel, både som ansatt og som innsatt. En tjener mer som ansatt, men har det gøyere som innsatt.

5 months ago 0 0 1 0

Jeg har spist fårikål med soyasaus og ingefær og selv om jeg ser greien, og kan innrømme at det objektivt smaker mer spennende enn tradisjonsretten, så er det lam, kål, pepper, salt og vann (med, til nøds, litt hvetemel mellom lagene) som for alltid kommer til å stå som nummer én

5 months ago 1 0 0 0
Preview
Code Snippets • Josh W. Comeau Short solutions to discrete problems which can be copied and pasted.

Josh has posted a lot of his hooks here: www.joshwcomeau.com/snippets/

5 months ago 2 0 0 0

post nut clarity :(

5 months ago 1 0 0 0

I haven't found the need to drop down to git yet, but there's probably some cases where it might be necessary. On the other hand, some tasks which are tricky and require care with git are trivial with jj.

I'll stop preaching now, but if you're curious I encourage you to try it! :)

6 months ago 1 0 0 0
Advertisement

You just know they're out there looking for opposing views with spelling mistakes so they can [sic] that mf

6 months ago 0 0 0 0
Tutorial and bird's eye view - Jujutsu docs

It's a git-compatible version control system that doesn't have the concept of a staging area, and thus also doesn't need a stash. I switched from git a few months ago and haven't looked back. Recommend @steveklabnik.com's tutorial, but the official one is also good: jj-vcs.github.io/jj/latest/tu...

6 months ago 2 0 1 0

Have you heard the good news about our lord and savior, jj?

6 months ago 4 0 1 0
6 months ago 2 1 0 0

Måtte dobbeltsjekke, syntes dette hørtes ut som en merkelig oppfølger til Sjøfareren

6 months ago 1 0 0 0
Preview
Deloitte to pay money back to Albanese government after using AI in $440,000 report Partial refund to be issued after several errors were found in a report into a department’s compliance framework

Noreg og Karianne Tung hadde heller gratulert Deloitte for å vere modige som brukar ny teknologi

www.theguardian.com/australia-ne...

6 months ago 2 0 0 0

Forvirra eg òg, men trur ein del av svaret ligg her
bsky.app/profile/aman...

6 months ago 6 0 1 0
Preview
Sebastian Lague Exploring how to create stuff out of code

Here's some people whose videos I enjoy, even though you're probably familiar with them already:

Sebastian Lague
www.youtube.com/@SebastianLa...

Benn Jordan
www.youtube.com/@BennJordan

Amos Wenger
www.youtube.com/@fasterthanl...

Freya Holmér
www.youtube.com/@acegikmo

6 months ago 1 0 0 0
Preview
If Books Could Kill Pod The airport bestsellers that captured our hearts and ruined our minds

+1 for if books could kill
www.ifbookspod.com

Also just discovered 5–4, enjoyed their law school episode even though I have no intention of ever going to law school, and I'm not even a US citizen: www.fivefourpod.com/episodes/wel...

6 months ago 1 0 1 0

Sterk nisjefloff.

6 months ago 1 0 0 0
Advertisement
Based on the Unix versions available on tuhs.org, all of this appears to
have been introduced in 4.1c BSD. This is the version that adds
IPPORT_RESERVED to netinet/in.h and has the TCP/UDP port binding
code check it in in_pcbbind in netinet/in pcb.c. In case you think the
BSD people thought that this was an elegant idea, let me show you the
code:

if (lport) {
u_short aport = htons (lport) ;
int wild = 0;
/* GROSS */
if (aport < IPPORT_RESERVED && u.u_uid != 0) return (EACCES) ;
[...1

The BSD people knew this was a hack; they just did it anyway,
probably because it was a very handy hack in their trusted local
network environment. Unix has quietly inherited it ever since.

Based on the Unix versions available on tuhs.org, all of this appears to have been introduced in 4.1c BSD. This is the version that adds IPPORT_RESERVED to netinet/in.h and has the TCP/UDP port binding code check it in in_pcbbind in netinet/in pcb.c. In case you think the BSD people thought that this was an elegant idea, let me show you the code: if (lport) { u_short aport = htons (lport) ; int wild = 0; /* GROSS */ if (aport < IPPORT_RESERVED && u.u_uid != 0) return (EACCES) ; [...1 The BSD people knew this was a hack; they just did it anyway, probably because it was a very handy hack in their trusted local network environment. Unix has quietly inherited it ever since.

I'm writing about self-hosting and got wondering why ports <1024 are privileged on Linux, and require you to be root to bind to them.

Found this explanation and couldn't help but laugh. I'd always thought it was a bit of a hack.

utcc.utoronto.ca/~cks/space/b...

6 months ago 53 5 3 0

Neinei, taktikken «skal me føre ovar litt pengar på felleskonto no? ja? 5000 kvar?» med ujamne mellomrom er feilfri.

6 months ago 1 0 0 0

Sveklingar! Då eg var ung …

6 months ago 1 0 0 0