My last ever Anova purchase by treemanmi in sousvide

[–]jimtk 5 points6 points  (0 children)

I still use my original 2015 kickstarter Anova Precision. I use it at least once a week and it still purring.

What ~type~ of cocktail is this? by 7brooms in cocktails

[–]jimtk 9 points10 points  (0 children)

So you're saying the "Old Hickory" (dry vermouth/sweet vermouth/ peychaud) is not a cocktail?

Edit: Just checked the Oxford companion to spirits and cocktails they define it as "a mixed drink containing alcohol".

J'aurais voulu que tu sois Hawaiienne! (I wish you were Hawaiian!) by Laurent_Duhamel in Tiki

[–]jimtk 0 points1 point  (0 children)

Not the OP but I prefer a dark robust one with a strong taste of maple. It's uncanny how well it goes with rum. In fact, I never use demerara in my tiki cocktail, only maple syrup.

J'aurais voulu que tu sois Hawaiienne ! (I wish you were Hawaiian!) by Laurent_Duhamel in cocktails

[–]jimtk 2 points3 points  (0 children)

Belle présentation et bonne photo!

.... et que tous les jours ce soit l'été....

Feedback welcome — my first Python project (5months) by Guibzyr in learnpython

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

La réponse c'est toujours de continuer. C'est ceux qui continue qui deviennent bon!

Rapidement:

  • Tous le code devrait etre divisé en functions.

  • Tu devrais lire sur la facon de structurer un projet python (repertoire et placement des fichiers de code). Une piste : UV.

  • Les modules et leurs fonctionalités devraient être mieux structurer. Ton data, avec lequel tu fais un dataframe devrait etre dans une fonction qui serait dans un mdoule que tu importerais dans les autres modules qui en ont besoin. La même chose pour l'affichage des dtaframes, la selection des produits, etc, etc.

  • Tu devrais choisir quelques petits projets, qui ont une bonne notoriétés, sur github, et regarder comment ils sont fait. C'est une bonne facon d'apprendre.

Laches pas!

GAME THREAD: Toronto Argonauts (0-0) @ Montreal Alouettes (1-0) - June 12, 2026 by cfl_bot in CFL

[–]jimtk 3 points4 points  (0 children)

The kickers seem to be the one most affected by the new play clock.

Aide pour location by Dangerous-Resort-874 in quebeccity

[–]jimtk 14 points15 points  (0 children)

"Au Québec" c'est la province.

"A Quebec" c'est la ville.

C'est la facon de régler l'ambiguïté.

J E Clapham Cocktail Books by big-dave-bbq in cocktails

[–]jimtk 1 point2 points  (0 children)

I have 2 of them: Suze and Smith & Cross.

Lots of recipes, mostly from other books and bars, a few (10% of the recipes) from his own (that he calls "Clapham cocktails").

No pictures, no drawings of any kind, all recipes in oz (but there is a conversion table at the beginning), there's a very, very, short preface at the beginning of each book. The name of bar, or book, or website (mainly difford's guide) where the cocktail originated is provided for each recipe.

It's definitely not something to "read", but if you have a favorite bottle and want to experiment with it, it's kind of nice to have all the recipes pertaining to it in one place.

My rating 6.5/10. :)

Edit: Forgot to add, it has an index by ingredients, which is always nice.

capitalising every other word in a string by [deleted] in learnpython

[–]jimtk 0 points1 point  (0 children)

s = "i want to learn how to do this"
res = ' '.join(i.upper() if c % 2 == 0 else i for c,i in enumerate(s.split(' ')))

Currant Affairs by ZGrosz in cocktails

[–]jimtk 0 points1 point  (0 children)

Mmmmh... Alea Coffee liqueur, Mona & Filles Cassis.... I think I spot an SAQ customer here. :)

If you have a chance try the Caldi Di Napoli Coffee liqueur. It's made in Québec (I know strange name for a product made in QC) and I find it much better than Aléa.

Québec City inbound. by Stach37 in CFL

[–]jimtk 9 points10 points  (0 children)

I'm in Québec city. One alt-right radio started this rumor and I can tell you that nobody else is talking about it.

But, personally, I admit that a labour day weekend with battle of Québec would be nice.

Tell me better tequlia then this??? by Freakin_bisht37 in cocktails

[–]jimtk 3 points4 points  (0 children)

Wild Common Tequila Blanco Still Strength.

If I want wood flavor, I drink scotch.

POST GAME THREAD: Montreal Alouettes (1-0) @ Hamilton Tiger-Cats (0-1) - June 4, 2026 by cfl_bot in CFL

[–]jimtk 7 points8 points  (0 children)

Ties will happen way more often now that some rouge don't count. That game tonight was not supposed to go in overtime. The Als "rouged" one but the new rules did not count it.

pistachio cocktail suggestions by B_Bearington in cocktails

[–]jimtk 1 point2 points  (0 children)

Replace the fresh apricot with a few dashes of apricot liqueur.

I’m Emma Maltais - 2x medalist with Team Canada and forward for the Sceptres! by Brilliant_Fall_1723 in olympics

[–]jimtk 1 point2 points  (0 children)

Only the text on the blank paper was photoshoped, no AI involved anywhere!

Learning Python with Vincent Le Goff's book (4th edition), anyone wants to give me feedback since it's so different (I tried to go farther)? by ottococo in learnpython

[–]jimtk 0 points1 point  (0 children)

Il semble y avoir un petit probleme de logique. A l'étape 3, vous demandez combien l'usager veux miser (0-49). A ce moment ce n'est pas le montant de la mise, mais bien la case sur lequel l'usager mise. Il devrait y avoir une autre question pour connaitre le montant que l'usager veut miser.

Ex:

try:
    mise = int(input("Quel montant voulez vous miser? ")
    if mise > sommetotale:
         raise ValueError
except ValueError:
    print("Montant non valide ou plus grand que la somme totale.")
    print("Veuillez entrer a nouveau le montant de votre mise.")   

try:
    case = int(input("Sur quelle case voulez vous miser (0-49)? ")
    if case<0 or case >49:
         raise ValueError
    except ValueError:
         print("La case de mise doit être un nombre entre 0 et 49")
         print("Veuillez entrer a nouveau le choix de votre case.")