This file contains hidden or 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
! Title: AdGuard Google whitelist | |
! Homepage: https://gist.github.com/DessertArbiter/ba13c026c0d3058fd122e082898c2c84 | |
! Expires: 4 days (update frequency) | |
! Version: 0.2.1 | |
@@||0.client-channel.google.com^$important,document,~extension | |
@@||2.android.pool.ntp.org^$important,document,~extension | |
@@||android.clients.google.com^$important,document,~extension | |
@@||appsbackup-pa.clients6.google.com^$important,document,~extension | |
@@||appsbackup-pa.googleapis.com^$important,document,~extension |
This file contains hidden or 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
# file docker run node | |
FROM node:7.7.2-alpine | |
WORKDIR /usr/app | |
COPY ./app/package.json . | |
RUN npm install --quiet | |
COPY . . |
This file contains hidden or 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/osascript | |
do shell script "pwd" | |
set targetFolder to quoted form of POSIX path of result | |
tell application "/Applications/iTerm.app" | |
-- A count of 0 means that iTerm is open with no windows, or that iTerm is | |
-- closed. If it's closed, counting the windows opens it. | |
if (count of windows) is 0 then | |
-- If iTerm was closed, but is now open, it'll have one window. |
This file contains hidden or 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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to make opened Markdown files always be soft wrapped: | |
# | |
# path = require 'path' | |
# |
This file contains hidden or 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> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>We’ll be back soon!</title> | |
<style> | |
body { text-align: center; padding: 150px; } | |
h1 { font-size: 50px; } | |
body { font: 20px Helvetica, sans-serif; color: #333; } |
This file contains hidden or 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
{ | |
"afn_template_languages": true, | |
"afn_valid_scopes": | |
[ | |
"string", | |
"css", | |
"sass", | |
"less", | |
"scss", | |
"jade" |
This file contains hidden or 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
Install apache php | |
sudo apt-get install apache2 mysql-server php5 libapache2-mod-php5 php5-cli php5-cgi php5-mysql php5-curl php5-imap php5-mcrypt php5-xcache php5-xdebug git | |
https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-14-04 | |
This file contains hidden or 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
Install apache php | |
sudo apt-get install apache2 mysql-server php5 libapache2-mod-php5 php5-cli php5-cgi php5-mysql php5-curl php5-imap php5-mcrypt php5-xcache php5-xdebug git | |
https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-14-04 | |
This file contains hidden or 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 |
NewerOlder