Goodies:
zsh
&oh-my-zsh
zsh-autosuggestion
&zsh-syntax-highlighting
plugins. Addgit
andhistory
- docker-ce and
docker-compose
Mandatory:
- Install
rbenv
andnodenv
- Ruby 2.5.3
- Node 12.16.1
- Install
yarn
// class-based component | |
class Text extends React.Component { | |
render() { | |
return <span>{this.props.children}</span> | |
} | |
} | |
// functional component | |
const Text = props => { | |
return <span>{props.children}</span>; |
// Ugly way | |
const Text = () => { | |
// ... some implementation ... | |
} | |
class H1 extends Text { | |
// ... override some implementation ... | |
} |
using UnityEngine; | |
public class PlayMusic : PlaySfx { | |
[SerializeField] private bool repeat; | |
public override void Play() { | |
soundManagerController.PlaySfx(audioClip, volume); | |
} | |
void OnDestroy() { |
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' | |
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - | |
sudo apt update | |
sudo apt install postgresql-9.4 |
Goodies:
zsh
& oh-my-zsh
zsh-autosuggestion
& zsh-syntax-highlighting
plugins. Add git
and history
docker-compose
Mandatory:
rbenv
and nodenv
yarn
PRIVACY POLICY SPELLCASTERS
PRIVACY POLICY MODEL FOR MOBILE APPLICATIONS
This privacy policy governs your use of the software application “Spellcasters” for mobile devices that was created by Gato Mocho. The Application is Madness Road – is the race for survival in the post-apocalyptic world.
What information does the Application obtain and how is it used?
User Provided Information
sudo systemctl enable gatomocho.service | |
sudo systemctl start gatomocho | |
sudo journalctl -f -u gatomocho |
[Unit] | |
Description=Gatomocho service | |
ConditionPathExists=/home/ubuntu/work/src/gatomocho/main | |
After=network.target | |
[Service] | |
Type=simple | |
User=gatomocho | |
Group=gatomocho | |
LimitNOFILE=1024 |