[-] best_username_ever 1 points 11 hours ago

Or the washing machine.

[-] best_username_ever 4 points 11 hours ago

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

[-] best_username_ever 20 points 20 hours ago

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

[-] best_username_ever 3 points 1 day ago

You have the source. Read it if you want.

[-] best_username_ever 6 points 1 day ago

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

[-] best_username_ever 2 points 1 day ago

We need the sauce for this.

[-] best_username_ever 12 points 1 day ago

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

[-] best_username_ever 9 points 2 days ago

Un gars déguisé en Astérix.

[-] best_username_ever 3 points 3 days ago

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.

[-] best_username_ever 12 points 3 days ago
[-] best_username_ever 6 points 4 days ago

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

[-] best_username_ever 27 points 4 days ago

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
submitted 1 month ago by best_username_ever to c/[email protected]

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!

11
submitted 1 month ago by best_username_ever to c/[email protected]

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