Getting started:
Related tutorials:
<?php | |
/** | |
* Julien Rajerison <[email protected]> | |
**/ | |
/** | |
* Class HtmlToEmoji. | |
* | |
* Convert pattern to emoji | |
*/ |
Getting started:
Related tutorials:
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
People
![]() :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: |
#!/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 |
#!/bin/bash | |
#pull jul script | |
echo "** start **" | |
repos=( | |
#Your repository need to pull here | |
"repos1" | |
"repos2" | |
"repos3" | |
) | |
echo "update ${#repos[@]} " |