Or the washing machine.

Ask them. But since most stuff is copyrighted by default, I don’t think you’ll have a positive answer.

I understood that as "renotec is not safe." Not the best ad.

You have the source. Read it if you want.

Because it’s Life Hacker, the site that was about life hacks a long time ago, and who’s now making shitty lists.

We need the sauce for this.

The shittiest VPN company that you shouldn’t trust ever.

Un gars déguisé en Astérix.

C’est une bonne nouvelle. Il ne faudrait pas que tous les pauvres se paient une nouvelle voiture d’un coup, ça casserait le budget sans les taxes sur le pétrole. Merci Ursula.

It doesn’t matter for you since you can’t read that specific article.

A few times ago, I was drinking beer in the street in front of an American coworker. He was a bit shocked and I said "of course you can drink wherever you want, it's the land of the free!" and I loled. I thank the internet for teaching me about weird customs all around the world. The end.

23

cross-posted from: https://sh.itjust.works/post/19440902

I want to document my debugging sessions in a text file but I don't know if anyone did this before.

I came up with this kind of "language" that is a mix between Markdown and C++, but I still wonder if something equivalent exists already.

// When you click on the button
# [click button]
- A::f()
// - ... other method calls, don't document if you don't need to

# A::f()
// "..." for "parameters" where you don't need the details
- Stuff::g(...)
- Stuff::h(...)

// <Class> is a fake template thing to show the possible types of an object
# <SubStuffA | SubStuffB> Stuff::g(...)
- Stuff::g() {} // empty but I use v/=> for virtual call
  v/=> SubStuffA::g()
  v/=> SubStuffB::g()

# SubStuffA::g()

# SubStuffB::g()

# Stuff::h(...)

I document methods in the order of appearance in the code.

If you have any good idea about a reliable way to document a list of function calls, I'm interested!

12

I want to document my debugging sessions in a text file but I don't know if anyone did this before.

I came up with this kind of "language" that is a mix between Markdown and C++, but I still wonder if something equivalent exists already.

// When you click on the button
# [click button]
- A::f()
// - ... other method calls, don't document if you don't need to

# A::f()
// "..." for "parameters" where you don't need the details
- Stuff::g(...)
- Stuff::h(...)

// <Class> is a fake template thing to show the possible types of an object
# <SubStuffA | SubStuffB> Stuff::g(...)
- Stuff::g() {} // empty but I use v/=> for virtual call
  v/=> SubStuffA::g()
  v/=> SubStuffB::g()

# SubStuffA::g()

# SubStuffB::g()

# Stuff::h(...)

I document methods in the order of appearance in the code.

If you have any good idea about a reliable way to document a list of function calls, I'm interested!

view more: next ›

best_username_ever

joined 2 months ago