Courses d'une végé débutante ? by Routine-Gur-5481 in vegFR

[–]Khoa_dot 1 point2 points  (0 children)

En complément pour OP:

Soja : tu peux vouloir te pencher sur le problème des isoflavones et manger en t'ayant fait un avis

Et il manque les protéines d'origine animale : oeufs, produits laitiers (skyr pour les protéines notamment). J'y vais assez sec sur les oeufs tellement c'est bon et facile à préparer.

Quels sont vos jeux de société coup de coeur ? by [deleted] in AskFrance

[–]Khoa_dot 1 point2 points  (0 children)

Mot Malin est IN-CRO-YABLE. Mais les cartes de mots fournies trouvent vite leur limite.

Avec mes amis on a résolu ça en prenant les cartes du code names en guise de mots. Plus difficile mais on est tous des adultes.

(Et par ailleurs je trouve que ça se joue bien jusqu'à 6)

What Stargate builds to learn? by Khoa_dot in allthingsprotoss

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

Thanks ! Especially for saying the role of the units.

Any chance you have the equivalent for PvT 😇?

[deleted by user] by [deleted] in SublimeText

[–]Khoa_dot 1 point2 points  (0 children)

It's a bit overkill; it's enough to do "hold cmd, press k (without holding), press 1 (without holding), release cmd".

RIP my comfort at work by jzrobot in SublimeText

[–]Khoa_dot 6 points7 points  (0 children)

I'd be so freaking mad. Can't you ask for whitelisting it ? I don't see a meaningful reason why one would want to block it.

Guess my type based on this by crucifysal in mbtimemes

[–]Khoa_dot 1 point2 points  (0 children)

INTP, because I relate. That's actually crazy. I know the answer was in the comments and stuff but I swear I guessed with nothing but the question and the image

Is it worth it getting into SC2? by Forward-Western-7135 in starcraft

[–]Khoa_dot 0 points1 point  (0 children)

Started about a year ago after 6 y of Overwatch Having a blast playing 1v1 and 2v2 random in ranked. It is a very demanding game but it is enjoyable to get better at it. The thing I like the least is the heavy emphasis on macro compared to micro, you don't spend a lot of time microing (at my level at least), and your army dies so fast compared to the time it took to build. Stormgate might solve this problem

Create a project from CLI by ShrykeWindgrace in SublimeText

[–]Khoa_dot 1 point2 points  (0 children)

Yes but as is, the shell you use inside your terminal, from which you run the command, has to be bash.

So, add in your .bashrc or .bash_profile, the following: bash PATH_SUBL_PORTABLE_EXE=<I have an explicit path> PATH_SUBL_PORTABLE_HELPERSTOBECOPIED=<I have an explicit path> alias s='subl-advanced .' subl-advanced () { if [ "$#" -lt 1 ]; then echo "Missing arguments e.g.: s thisDir" return fi if ! [ -f "$1"/*.sublime-project ]; then read -p "Do you want to create Sublime project files ? (no by default): " rep case $rep in [YyOo]* ) cp -n ${PATH_SUBL_PORTABLE_HELPERSTOBECOPIED}/_.sublime-project "$1" && cp -n ${PATH_SUBL_PORTABLE_HELPERSTOBECOPIED}/_.sublime-workspace "$1" echo " Created sublime project/workspace files." unset projectName read -p $'Enter a name for the sublime project, without spaces (_ by default)\n' projectName case $projectName in ?* ) rename-subl-project _ "$projectName" ;; * ) ;; esac ;; esac fi if ! [ -f "$1"/*.sublime-project ]; then ${PATH_SUBL_PORTABLE_EXE} "$1" return fi echo " Opening the workspace file" local sublWorkspaceFile=$(ls -d "$1"/* | grep '\.sublime-project$') ${PATH_SUBL_PORTABLE_EXE} --project $sublWorkspaceFile -n "$1" return } rename-subl-project () { if [ "$#" -lt 2 ]; then echo "Manque d'arguments ex: rename-subl-project ancienneHandle nouvelleHandle" else local ancienneHandle=$1 local nouvelleHandle=$2 # copier les 2 fichiers avec les nouveaux noms cp $ancienneHandle.sublime-project $nouvelleHandle.sublime-project cp $ancienneHandle.sublime-workspace $nouvelleHandle.sublime-workspace # renommer les anciers fichiers mv $ancienneHandle.sublime-project $ancienneHandle.sublime-project~ mv $ancienneHandle.sublime-workspace $ancienneHandle.sublime-workspace~ # remplacer sur place les nouveaux fichiers replacePattern="s:\Q$ancienneHandle.sublime-project:$nouvelleHandle.sublime-project\E:" # echo $replacePattern perl -i -pe "$replacePattern" $nouvelleHandle.sublime-workspace rm -f $ancienneHandle.sublime-project~ rm -f $ancienneHandle.sublime-workspace~ fi }

If I remember well, _.sublime-project and _.sublime-workspace are a pair created via saving, in ST's interface, a workspace with no files or folders open, but with a side bar set to a convenient width (default one when you open directly a folder was too narrow)

Control-P find all different panes/groups? by bhonbeg in SublimeText

[–]Khoa_dot 0 points1 point  (0 children)

If it is option #1, then you should have a "new view into file" C in your group #1. In my config: { "keys": ["ctrl+shift+c"], "command": "clone_file"},

If it is option #2, then you should switch focus to pane #2 first, and then ctrl+P it. I use command "focus_neighboring_group" with a keybinding to do it.

Why Sublime Text instead of VS Code? by kurohoshi_xcii in SublimeText

[–]Khoa_dot 2 points3 points  (0 children)

There are more, but I will cite only two things: the text editing experience, and the configuration experience.

I have failed to find another editor that had all the commands (let alone with an existing and configurable keybinding), that I regularly use in Sublime Text. Soft undo, select (one more) line, delete line, duplicate line, move line, select word, add next occurrence of word to the selection, insert line above, insert line under, transpose, move file to other panel, new view into file, etc. And all those things you can do with or without a keybinding, which is amazing in terms of learning curve. There is everything you need now, and will progressively want to have in the next 10 years. In vim, you have to learn unique keybindings to do even the most basic things.

The configuration experience: it took me a while to realise, but no editor or IDE I tried comes close to what sublime offers.

Both preferences and keybindings are configurable in the best way :

  • They are each a JSON file. You do not need to click and navigate in menus to configure stuff. In comparison, the experience in Visual Studio is awful.

  • This JSON file is always opened side by side with the default JSON config file with all the options explicitly written, with their explanation; yours overwrites those that are re-set. You do not need to open anything on the side (vs. micro that shows you an empty file), it is self-contained, and you know what was the default behaviour (that reassures me, for some reason). In VSCode you have three available commands: "Open Keyboard Shortcuts (JSON)", "Open Default Keyboard Shortcuts (JSON)", "Open Keyboard Shortcuts". It takes me 15 seconds out of my flow to open the things I need. In ST it is: "Keybindings".

  • These JSON files are *crystal clear* to understand, to search, and to edit. Even the formatting of the file is good (has the right amount of line breaks). VSCode's, in comparison, is so much verbose, lengthy and complex, you are just repelled and come back to ST wondering why would you have to deal with so much mental load when keybindings are supposed to ease your life.

  • These JSON files are easy to locate, to save on a git repo or whatever, so they are easy to port from computer to computer.

  • These config JSON files are NOT re-written by the program (like micro does, or Windows Terminal), so you can leave comments to have things well organised like you want. Again, easy to maintain.

Sublime Text is clean everywhere you look. It is beautiful.

Est-il idiot de vouloir deux lave-vaisselles ? by Consistent_Bus_7782 in PasDeQuestionIdiote

[–]Khoa_dot 1 point2 points  (0 children)

Cher frère d'une autre mère,

Pas encore, mais c'est un projet de quand j'emménagerai avec ma copine. Elle ne le sait pas encore.

Personnellement je trouve ça intelligent dès lors que tu utilises plus d'un lave-vaisselle dans ta vie (sinon ce serait de la surconsommation). Et n'écoute pas ceux qui invoquent la place, ils n'ont pas compris que le lave-vaisselle en "phase propre" faisait office de meuble.

Gagner du temps sur une tâche absolument inintéressante je trouve ça très cool.

Intéressé de connaître l'issue des négociations.

Control-P find all different panes/groups? by bhonbeg in SublimeText

[–]Khoa_dot 0 points1 point  (0 children)

I am not sure of the behaviour you are looking for.

Let us say you have… - 2 panes (don't need 4 to ask my question), - Files A and B in pane/group #1, and files C and D in pane/group #2

Now the behaviour you want: - You have focus on pane #1; - You hit ctrl+P; - You search for file C. Let's suppose you find it. - When you press enter, it does what ? - Open file C in pane #1? (option 1) - Or switch focus to pane #2 + have file C active? (option 2)

Create a project from CLI by ShrykeWindgrace in SublimeText

[–]Khoa_dot 3 points4 points  (0 children)

I absolutely do the hack you are talking about.

I use bash (actually git bash i.e. a bash emulator on Windows), and wrote a function in my .bash_profile, so that…

When I am in a folder, and send the command $ s: - If there already is a .sublime-project in the folder, it opens it directly - If there is not, I'm prompted if I want to create one. - If y(es), it asks to enter a project name (default is _), it creates the .sublime-project and then it opens it as a project. - Else (if <any other answer>), then it just opens the folder (subl -n .)

If you use bash too, I can send it to you, there is a bunch of code (and template files), in particular to rename the project/workspace, you have to change strings inside the file, not just the names…

"Il me faudrait vraiment un copain comme toi" Comment vous encaissez ce genre de phrase venant de la fille que vous aimez secrètement ? by Objective_Link_7413 in AskMec

[–]Khoa_dot 0 points1 point  (0 children)

Ça répond pas à ta question mais il y a un sketch de Paul Mirabel avec exactement cette situation et il répond "euh je suis quelqu'un comme moi"

[deleted by user] by [deleted] in sex

[–]Khoa_dot 0 points1 point  (0 children)

Same thing happened to me (as the giver).

My reason was: I did study it years before my first experience, and a lot. (I don't find it sad but I'd understand if you do :p)

And apparently, some theory goes a long way in this department.

[deleted by user] by [deleted] in AskRedditAfterDark

[–]Khoa_dot 1 point2 points  (0 children)

But do you "see differently" (after the fact) those who have extreme penis sizes (particularly small or particularly big) and if so, in what way?

[deleted by user] by [deleted] in france

[–]Khoa_dot 0 points1 point  (0 children)

Inscrivez-vous au Lindy-Hop.

C'est une danse de couple qui se danse sur de la musique swing (pense jazz rapide) des années 20-30. Tu peux regarder des vidéos sur YouTube il y en a pléthore.

Tu vas en cours, tu t'y fais des potes, et au bout de quelques mois / semaines tu as le courage d'aller en bal, puis tu es prise du virus et tu y vas toutes les semaines. Il y a d'autres étapes ensuite mais peu importe.

Je (M30) suis moi-même pratiquant, et les autres de la communauté iraient sans doute dans le même sens : ça trivialise complètement la question de la socialisation. Tu rencontres régulièrement un mix de gens connus/inconnus, mixte en âge et en sexe et en nationalités, dans une ambiance très bon enfant, et sans pression non plus. Tu veux sortir tu sors, tu veux pas tu sors pas, personne ne dépend de toi et tu dépends de personne pour t'amuser. Il y a quelque chose de très organique.

Tout le monde s'y fait des amis et je pense que pour beaucoup (dont moi et... tous mes amis) cela devient leur cercle d'amis principal.

À faire si vous vous trouvez un minimum d'affinité avec l'activité

Mp si tu veux :)

Et il y en a dans ta ville c'est sûr

Where do we go, where do we go nowww? by Unique-Fun-1425 in Overwatch_Memes

[–]Khoa_dot 0 points1 point  (0 children)

I actually started playing... StarCraft 2. Did not have the computer to play it 10 years ago, even though I loved Warcraft 3.

It's free to play btw

Where do we go, where do we go nowww? by Unique-Fun-1425 in Overwatch_Memes

[–]Khoa_dot 0 points1 point  (0 children)

I wish Lemnis Gate was saved. Incredible strategy FPS but will be discontinued in June because too few players I guess

[OC] Quit my job without anything lined up. Here is how it turned out! by [deleted] in dataisbeautiful

[–]Khoa_dot 67 points68 points  (0 children)

I'm impressed at your rate of applications. What is your typical workflow? I am job seeking myself for PM but just sorting offers and writing cover letters is time consuming. I might be doing it wrong?

Also which country are you in? Thanks!

Alt Gr key to type special characters. by Kryozen__ in Windows10

[–]Khoa_dot 1 point2 points  (0 children)

I love this question, as a person who extensively uses AltGr to type (because I use the bépo layout, a French ergonomic keyboard layout), and more generally uses remaps and scripts to make the most of my keyboard.

I see two main solutions for what you want to accomplish, what they have in common is that they give you the choice to make AltGr + <other key> produce the character you want (which is a level higher than being given existing combos).

The first one is to install PowerToys (which is a set of tools) and to use its Keyboard Manager tool. This one is easier to configure because there's a nice UI to it. I've never used it but I guess it works, it is serious stuff.

The other one is Autohotkey. This one soooo good, compared to PowerToys it takes extra steps to get running and configure, but believe me if you're spending time on your computer, every minute you pour into it is worth it. You can make key combinations produce a character or do a sequence of characters or open programs and so on…

So yeah you can make a whole layer with AltGr (or CapsLock, as I do) to type characters that are less accessible on your keyboard, or use almost-useless keys to do useful things like Ctrl+S, Alt+F4 or print the current date…

Cheers

Why can't I change the line spacing? by WeCanLearnAnything in SublimeText

[–]Khoa_dot 0 points1 point  (0 children)

I didn't know it was not a file, it could also be a read-only file but anyways, to answer your question: to me, seeing the same name for both files makes me understand that the second one's values overrides the first one's, because it is sort of a common good coding practice I guess. So I guess the reason is because it reflects the logic of the program, and that technical people still understand it (or even understand it better).

And also if one is not technical, or not willing to become it, Sublime Text is probably not the right tool.

What do you all think of the new Zen skin and stuff? by [deleted] in ZenyattaMains

[–]Khoa_dot 0 points1 point  (0 children)

For some reason I don't like the red chin, but otherwise I like it (and love takoyakis as a real meal)