Salagir's Blog

Bon le blog est devenu tout simple tout moche, mais j’ai passé 24h à le mettre à jour. Il a peu de visites. Son ancien design n’était pas foufou. On va en rester là, hein. C’est surtout du texte après tout.

Catégorie : English Posts

  • How « Offline Games – No Wifi Games » makes you feel like an idiot – by cheating

    « Offline Games – No Wifi Games » app I’m playing the game Tap match inside this app on my phone that got several games inside. « Tap match » mini-game. The gameplay is this (copied from the game itself) : Tap to collect cards. Complete sets of 3 clear cards.. Pretty straightforward. When you’re stuck, you can click…

  • Bash colors

    Wanted to share this. PHP for colors when you write in CLI.

  • Make simple Variables and Identifiers

    (This pages contains a few weird characters like kanjis that may not display properly on your computer. Don’t worry, it’s not essential to the text) Unicode is the future (even the present), but please, not in identifiers… Variables You can use (almost) any utf-8 character in a Javascript variable… I wanted to create a one-letter…

  • PHP functions reminder

    I love PHP, but when it comes to consistency, it sucks very very very hard. I’m tired of going to the (very very good) php.net site to check functions arguments and order and such, so now, all what I usually check will be here. Nothing here is « complete ». My goal isn’t to make a doc,…

  • Easy page setting for scenarists

    French version of this article This page is for the cartoonists who will work with me as a scenarist. I explain here my methods. When I write a page, I do it panel per panel. Each panel is separated by an empty line, and each information is on a new line. Description, each said sentence……

  • Backup organizer

    Backuping data is real easy (with linux). I use three different ways: For a data base BDD : mysqldump [cnx infos] |gzip > backupbdd.sql.gz For not too numerous files, which data is important, like configuration ones: tar czvf yoyobackup.tar.gz dafiles/ For files I want to access easily and/or numerous : rsync -av me/ othercomputer:me/ In…

  • Photoshop Text Extractor

    While making Geek’s World, I often change the text at the last moment. As a result, the content of the .psd file was more accurate than the text in the database. Plus, I also used to translate from English to French directly in photoshop. And as I want to display the text on my webpage…

  • Where does my Nickname « Salagir » come from

    I am often asked where my nickname comes from. Here’s the explanation. From now on, when you ask me, you shall cowardly forward you here. I don’t know for English people, must most French make the mistake, the « g » of Salagir is pronounced like in « git », not like in « geek ». Long ago, when I was…

  • Make comics balloons with Photoshop

    Translation of my tutorial on how to make a speaking balloon on your comics easily. In your image, create a layer on the top, fill it with white paint, and name it « balloons ». Then, go to the menu Layer > Vector Mask > Hide All After, take the Ellipse tool tips in the vector drawings…

  • Convert HTML into BBcode

    BBcode is the syntax used in phpBB forums and some other websites with edit forms, due to it’s simple and intuitive syntax, opposed to that stupid wiki code no one ever gets. If, like me, you ever wanted to post the content of an html page, this Perl script is for you. It takes a…