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
[Desktop Entry] | |
Name=PopCorn Time | |
GenericName=Streaming Player | |
Comment=Watching to movies and tv shows using Popcorn Time | |
Icon=popcorn-time | |
Exec=/opt/Popcorn-Time/Popcorn-Time %U | |
TryExec=/opt/Popcorn-Time/Popcorn-Time | |
Terminal=false | |
Type=Application | |
Categories=Player;AudioVideo; |
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
'use strict'; | |
/* | |
* Module Dependencies | |
*/ | |
var fs = require('fs'), | |
join = require('path').join, | |
DIR_PATH = 'images', | |
NAME_MODEL = 'img'; |
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
[user] | |
name = Christopher EnyTC | |
email = [email protected] | |
[color] | |
ui = true | |
[alias] | |
a = add . | |
c = clone | |
cm = commit -m | |
p = push origin master |
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
<!doctype html> | |
<html ng-app="myApp"> | |
<head> | |
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.min.js"></script> | |
<script type="text/javascript"> | |
var myApp = angular.module('myApp', [], function ($interpolateProvider) { | |
$interpolateProvider.startSymbol('[['); | |
$interpolateProvider.endSymbol(']]'); | |
}); |
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> | |
<meta charset="utf-8"> | |
<title>{Title}{block:PostSummary} - {PostSummary}{/block:PostSummary}</title> | |
<link rel="icon" href="{Favicon}"/> | |
{block:Description}<meta name="description" content="{MetaDescription}">{/block:Description} | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}"/> | |
<!-- Appearance option --> |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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 | |
echo "What the domain? (e.g: project.dev) :" | |
read server | |
echo "What the DocumentRoot? (e.g: /home/chris/DevCenter/Projects/PHP) :" | |
read path | |
echo "Creating Configuration server." | |
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 | |
echo "Informe o nome do server (Ex.: project.dev) :" | |
read server | |
echo "Informe o caminho do site (Ex.: /var/www/project-directory) :" | |
read path | |
echo "Criando configuração de VHost para o server" |
NewerOlder