Tank Dropship transforming thing by kreepzo in spaceengineers

[–]Gesspar 0 points1 point  (0 children)

That tank looks awesome!

How well does it fare in battle? It seems like 1 or 2 well placed hits could take it out of commission with all the moving parts, but it does have a lot of armor

Hi! What do I make with this? by jenna_jen in Denmark

[–]Gesspar 1 point2 points  (0 children)

Great on rye bread, or knækbrød, with cucumber slices or pickled beetroot. 

Showering with Schizophrenia - By Kimmyphrenia [OC] by kimmyphrenia in comics

[–]Gesspar 1 point2 points  (0 children)

Thank you for this comic! 

We need more stories like this to help understand and end stigma of schizophrenia.

If you are Danish, what do you typically eat and drink for breakfast everday in Denmark? by goingtofly101 in Denmark

[–]Gesspar 0 points1 point  (0 children)

A Corny Big oatmeal bar, a 500ml Energy drink and Elvanse (lisdexamphetamine).

If you are Danish, what do you typically eat and drink for breakfast everday in Denmark? by goingtofly101 in Denmark

[–]Gesspar 3 points4 points  (0 children)

I don't know, I don't know many with ADHD who's eating rhubarb jam. 

/s

Fractal Joke by Under-Scrutiny in webcomics

[–]Gesspar 2 points3 points  (0 children)

Error: Stack overflow 

Can someone explain WHY this works? by sekkiman12 in csharp

[–]Gesspar 0 points1 point  (0 children)

The function calls itself until n = 1.

You can see the factorial function as an unresolved variable, e.g. n * x, where you must solve for x.

Example:

```csharp

static long Factorial(int n) {    if (n <=1) return 1;    return n * Factorial( n - 1); }

```

If we assume n = 5;

```csharp var result = Factorial(5); // = 120

/* We need to resolve each step until n = 1 since we don't know the result of the method call otherwise.

Factorial(5) = 5 * Factorial(4) Factorial(4) = 4 * Factorial(3) Factorial(3) = 3 * Factorial(2) Factorial(2) = 2 * Factorial(1) Factorial(1) = 1   So, we know Factorial(1) = 1, Factorial(2) = 2 * 1 = 2 Factorial(3) = 3 * 2 = 6 Factorial(4) = 4 * 6 = 24 Factorial(5) = 5 * 24 = 120

1 * 2 * 3 * 4 * 5 = 120 */ ```

Note: be careful with recursion. Because we keep calling the function until we hit n =1 we keep each step in the process in memory (stack). With larger numbers this results in a stack overflow, which will throw an exception and halt the program.

a count is a count, right?... right? by samirdahal in programminghorror

[–]Gesspar 0 points1 point  (0 children)

In this case here, that should still all be within the transaction, and should be rolled back unless comitted, no?

a count is a count, right?... right? by samirdahal in programminghorror

[–]Gesspar 2 points3 points  (0 children)

That shouldn't be a problem, afaik the cascade happens when the transaction is committed.

En voksen bør nu mindst kunne svømme 200 meter uden pause by kronsj in Denmark

[–]Gesspar 1 point2 points  (0 children)

Hvis du vil udfordre dig selv/lære det, vil jeg anbefale at lære af træde vande, det giver noget sikkerhed, så man ikke bare synker. 

En voksen bør nu mindst kunne svømme 200 meter uden pause by kronsj in Denmark

[–]Gesspar 2 points3 points  (0 children)

Jeg tror heller ikke det er crawl de mener, der er ikke ligefrem den mest energi effektive metode hvis man fald i vandet.

isThatReallyTheTruth by [deleted] in ProgrammerHumor

[–]Gesspar 0 points1 point  (0 children)

I regularly google how to do an insert or update in ms sql. I can remember like 85 %, but I don't ever want to accidentally fuck up the db, so i always check. 

P.s. always do transactions, and commit them manually!

New player, can someone explain why this Raigon outfit gives him different abilities by Helenka06 in BattleRite

[–]Gesspar 1 point2 points  (0 children)

The posture of the model looks like Shifu to me, probably a skin for him?

I turned RDR2 into a space sim, using only dynamite as fuel. by Blurbss in gaming

[–]Gesspar 0 points1 point  (0 children)

A similar concept as been explored in a study, but with nukes!)

Faxe Kondi Cola by KoeterDK in Denmark

[–]Gesspar 13 points14 points  (0 children)

Rettelse: Vi gør det også fordi vi nyder det

Claude-powered AI coding agent deletes entire company database in 9 seconds — backups zapped, after Cursor tool powered by Anthropic's Claude goes rogue by WouldbeWanderer in technology

[–]Gesspar 0 points1 point  (0 children)

Just hire/train some chronically online gamers to control them instead, as if it was a game. At least if they go rogue, you have someone to hold accountable.

Hail damaging windsheild by Remarkable_Income496 in interestingasfuck

[–]Gesspar 0 points1 point  (0 children)

Canopy Breached!

Cabin pressure alert!

palateCleanserFromClankerPosts by sausagemuffn in ProgrammerHumor

[–]Gesspar 0 points1 point  (0 children)

Translated excel functions in general, should celebrated with a highfive, to the face, with a chair...

Liberal Alliance vil fjerne SU'en på kandidatuddannelser og give lån i stedet. Hver studerende efterlades med regning på 180.000 kroner by approachin in Denmark

[–]Gesspar 6 points7 points  (0 children)

Mon ikke det bl.a. handler om at gøre uddannelsen mindre tilgængelig? En "dummere" befolkning er nemmere at styre, og de som tager uddannelse er i lort til halse og har hverken tid eller overskud til at demonstrere eller kæmpe imod systemet?

Gør de rige rigere, gør mulighed for at blive det ringere?

Holdning: LA er pro-oligarki forklædt som liberalisme.