This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### markup | |
<div class="wrap"> | |
<section class="main"> | |
<p>Content</p> | |
</section> | |
@> footer.jnx | |
</div> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections.Generic; | |
using Steamworks; | |
/// <summary> | |
/// This class was created by Vitor Pêgas on 01/01/2017 | |
/// From http://answers.unity3d.com/questions/1282772/steamworksnet-and-steam-workshop.html | |
/// Added here so it doesn't disappear | |
/// Requires https://steamworks.github.io/ | |
/// </summary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#update | |
sudo apt-get update | |
sudo apt-get upgrade | |
#chrome | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for file in *.php *.html *.js *.css *.less *.scss *.sass; do | |
echo "$file" | |
unexpand --first-only -t 4 "$file" > tempout.txt | |
mv tempout.txt "$file" | |
done |