Skip to content

Instantly share code, notes, and snippets.

View julkwel's full-sized avatar
😇
Hello , thanks for visiting my profile !

Julien Rajerison julkwel

😇
Hello , thanks for visiting my profile !
View GitHub Profile
@julkwel
julkwel / push.sh
Created September 27, 2018 10:41
Push git
#!/bin/bash
username="your username"
password="Your password"
repo="/your/directory/git"
echo "push project"
cd ${repo}
echo "git add . "
git add .
echo "git commit -m .... "
#!/bin/bash
#pull lv script
echo "** start **"
repos=(
"repository1"
"repository2"
"..."
)
for repo in "${repos[@]}"
do
@julkwel
julkwel / pull.sh
Last active October 30, 2018 11:05
Ewample script pull git
#!/bin/bash
#pull jul script
echo "** start **"
repos=(
#Your repository need to pull here
"repos1"
"repos2"
"repos3"
)
echo "update ${#repos[@]} "
@julkwel
julkwel / gist:a56777ffa04a0ca8121a93045421e4b1
Created November 14, 2018 10:59 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@julkwel
julkwel / README.md
Created March 13, 2019 20:29 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
<?php
/**
* Julien Rajerison <julienrajerison5@gmail.com>
**/
/**
* Class HtmlToEmoji.
*
* Convert pattern to emoji
*/
@julkwel
julkwel / html5-canvas-and-javascript-fireworks-tutorial.markdown
Created January 1, 2019 06:49
HTML5 canvas and javascript fireworks tutorial

HTML5 canvas and javascript fireworks tutorial

Learn to make a fireworks display with HTML5 Canvas and JavaScript. In this demo, the pixel sized rockets launch from the bottom of the screen automatically, and by the click of your mouse. You can also click and drag to launch multiple fireworks.

The tutorial covers keeping track of and looping over objects contained in arrays, tracking mouse clicks and coordinates, animating fireworks to specific target coordinates, and making beautiful particle explosions through the use of randomly generated values.

Feel free to play with the config variables in the JS code to have fun with the experiment.

This was made by: https://twitter.com/jackrugile