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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- Generated by: TmTheme-Editor --> | |
<!-- ============================================ --> | |
<!-- app: http://tmtheme-editor.herokuapp.com --> | |
<!-- code: https://github.com/aziz/tmTheme-Editor --> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>Meteor</string> |
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
<!-- Example component to get --> | |
<?php | |
$vars['title'] = $vars[0]; | |
$vars['description'] = $vars[1]; | |
$vars['class'] = $vars[2]; | |
?> | |
<div class="<?php echo $vars['class']; ?>"> | |
<h1><?php echo $vars['title']; ?></h1> | |
<p><?php echo $vars['description']; ?></p> | |
</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
<?php | |
/** | |
* Get Component for wordpress | |
* @link https://gist.github.com/109e43bb5987a177ecbb20819f3f1870 | |
* | |
* @author Alex King (@stagfoo) & Hector Nuvarro | |
* @version 0.2 | |
* @license http://www.opensource.org/licenses/mit-license.html MIT License | |
*/ | |
/*===================================== |
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
[class*='col-'] { | |
//Aligns the columns next to each other | |
width: 100%; | |
float:left; | |
min-height: 1px; | |
} | |
// an extend only class for clearfixing | |
%clearfix { | |
*zoom: 1; | |
&:before, |
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
[ | |
{ | |
"name": "html-css-class-completion", | |
"publisher": "Zignd", | |
"version": "1.1.0", | |
"id": "Zignd.html-css-class-completion", | |
"__metadata": { | |
"id": "7b71fc1b-190d-4f7d-95d1-93e422649b0a", | |
"publisherId": "20bf23ac-66a2-4404-9047-4b8215047b8b", | |
"publisherDisplayName": "Zignd" |
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
<html> | |
<head> | |
</head> | |
<body> | |
<div id="ancient"></div> | |
<script src="index.js"></script> | |
</body> | |
</html> |
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
#bash | |
cd /home/al/Documents/Code | |
while read x; | |
do mkdir "/home/al/Documents/Design/$x"; | |
done << EOF | |
$(ls $1) | |
EOF |
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
#!/usr/bin/env bash | |
sudo true || (echo "fatal: Root is needed to perform an upgrade!" & kill $$) | |
sudo add-apt-repository -y ppa:ubuntu-sdk-team/ppa | |
sudo apt-get update | |
sudo apt-get -y install git libprotobuf-dev protobuf-compiler qtbase5-dev qtdeclarative5-dev libqt5webkit5-dev libsqlite3-dev qt5-default qttools5-dev-tools qttools5-dev qtmultimedia5-dev libqt5svg5-dev cmake | |
cd ~ | |
git clone git://github.com/Daenyth/Cockatrice | |
cd Cockatrice | |
mkdir build | |
cd build |
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"javascript.validate.enable": false, | |
"window.zoomLevel": 1, | |
"editor.fontSize": 17, | |
"git.enabled": true, | |
"git.autofetch": false, | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"editor.detectIndentation": true, |
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
#Move into downloads | |
cd ~/Downloads/ | |
sudo wget -O - https://tagplus5.github.io/vscode-ppa/ubuntu/gpg.key | sudo apt-key add - && \ | |
sudo wget -O /etc/apt/sources.list.d/vscode.list https://tagplus5.github.io/vscode-ppa/ubuntu/vscode.list && \ | |
sudo apt update -y | |
sudo apt install code | |
# Install Node | |
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - |
OlderNewer