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
! Version: 201809240712 | |
! Title: EasyList | |
&act=ads_ | |
-2/ads/ | |
###zztextad | |
##.AD-POST | |
fropper.com,themonthly.com.au#@##ad-container | |
apnaohio.com,ifokus.se,miradiorumba.com#@##ad-header | |
.com/b?z=$domain=couchtuner.eu|zzstream.li | |
/\:\/\/data.*\.com\/[a-zA-Z0-9]{30,}/$third-party,xmlhttprequest |
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
function light() { | |
if [ -z "$2" ] | |
then src="pbpaste" | |
else | |
src="cat $2" | |
fi | |
$src | highlight -O rtf --syntax $1 --font=Inconsolata -s solarized-light --font-size 24 | pbcopy | |
} |
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
/** | |
* Stylesheet that implements Entypo font | |
* http://www.entypo.com/ | |
* | |
* Autor Yordan Ivanov | |
* [email protected] | |
*/ | |
@font-face { | |
font-family: 'EntypoRegular'; |
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
# notify.rb | |
require 'sinatra/base' | |
require 'sinatra/json' | |
require 'grocer' | |
class App | |
attr_accessor :bundleID, :pusher_dev, :pusher_prod | |
end | |
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
# If you have 1.8.7 already installed | |
$ rmv remove 1.8.7 | |
$ rvm pkg install zlib | |
$ rvm install 1.8.7 --with-zlib-dir=$rvm_path/usr |
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
require 'sinatra/base' | |
require 'sinatra/json' | |
require 'data_mapper' | |
#If you want the logs displayed you have to do this before the call to setup | |
DataMapper::Logger.new($stdout, :debug) | |
#Set the default lenght of String | |
DataMapper::Property::String.length(255) |
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
- (void)turnCard | |
{ | |
if ([self isFaceUp]) { | |
[self flipHide]; | |
self.faceUp = NO; | |
} else { | |
self.faceUp = YES; | |
[self flipReveal]; | |
} | |
} |