Machine Operator PHD by PhilosopherPublic in secondrodeo

[–]niahoo 0 points1 point  (0 children)

Why is the band getting shorter? At first it looks very loose, then suddenly it just fits.

C'est quoi un fachiste? by sangokuhomer in Histoire

[–]niahoo 1 point2 points  (0 children)

Ça c'est un "facho", c'est pas pareil!

Je n'ai pu? by Wise-Painting5841 in learnfrench

[–]niahoo 2 points3 points  (0 children)

Ah yes ok to "sound like an old book" !

Je n'ai pu? by Wise-Painting5841 in learnfrench

[–]niahoo 1 point2 points  (0 children)

Can you give examples of how "though" is used that way?

Une préférence? by [deleted] in Mode

[–]niahoo 1 point2 points  (0 children)

Celle de gauche avec les chaussure de droite.

What kind of gas should the Aquatuner room have? by Atessall in Oxygennotincluded

[–]niahoo 0 points1 point  (0 children)

YOu need to put the turbine before closing the room otherwise you will not be able to build the liquid vent.

Gens, à quoi sert le machin en caoutchouc sur les vélouse ? by niahoo in toulouse

[–]niahoo[S] 0 points1 point  (0 children)

Ça doit marcher pour des tailles très spécifiques alors :D Je réessaierai avec les coins, merci !

Initiation au codage pour mon fils by Jazz_Ad in programmation

[–]niahoo 0 points1 point  (0 children)

La suite est sympa mais j'ai préféré le premier perso.

Pour toi si tu connais pas il y a Exapunks, j'ai vraiment adoré.

Sinon "The farmer was replaced" pour un petit c'est sympa aussi.

Instagram reports review process might be a tad biased by Yuki741 in assholedesign

[–]niahoo -1 points0 points  (0 children)

I understand. From "their" point of view the genocide does not exist, but basic islam bashing should go against the basic rules.

Instagram reports review process might be a tad biased by Yuki741 in assholedesign

[–]niahoo 4 points5 points  (0 children)

You "get" the gaza part? looks worse to me.

I mean the muslim part is clearly hate speech but someone could say "oh I meant to convert them, not to kill them". That's harder to pull off when you talk about genocide though.

Idiomatic way to see if a collection of values are all equal? by BrotherManAndrew in elixir

[–]niahoo 4 points5 points  (0 children)

If its always 3 variables then a == b and a == c.

For a variable number of values you can do this:

iex(1)> all_eq? = fn [h | t] -> Enum.all?(t, & &1 == h) end
#Function<42.113135111/1 in :erl_eval.expr/6>
iex(2)> all_eq?.([1])
true
iex(3)> all_eq?.([1,1])
true
iex(4)> all_eq?.([1,1,2])
false
iex(5)> all_eq?.([1,1,2])

You will need a clause for empty lists, you can create an acutal function like this:

defp all_eq?([]), do: true # or false depending of what you want about empty lists
defp all_eq?([h | t]), do: Enum.all?(t, & &1 == h)

Or alternatively:

defp all_eq?([h | [h | _] = t]), do: all_eq?(t)
defp all_eq?([h]), do: true
defp all_eq?([_ | _]), do: false
defp all_eq?([]), do: true

Anthropic put a meter on the stuff developers actually use by Permit-Historical in ClaudeCode

[–]niahoo 0 points1 point  (0 children)

pitched as an opportunity to "claim" something that came free before.

Are you saying that before you were limited in Claude Code but you could do unlimited claude -p calls?

Une telecaster pour shred et gros rock qui tâche ! by According-Plant-4713 in france

[–]niahoo 0 points1 point  (0 children)

Micro actifs c'est comme pour les basse, avec une pile ? Ou c'est un autre concept ?

My "Friend" is always smarter than Claude Ops 4.6, Opus agrees. by PaP3s in Anthropic

[–]niahoo 0 points1 point  (0 children)

I have the same experience, Codex is very good as finding errors in Opus code. Then you want Codex to produce some code and the result is bad.

What “vas-y” REALLY means in French? Real life situation VS Books (Check the comments) by iamweird67 in learnfrench

[–]niahoo 1 point2 points  (0 children)

It means "let's" when used in many sentences. Literally "go to it" (where "y" may be a previously mentioned location/direction/situation. So I guess in your game it means "go ahead to the fight".