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
#!/bin/bash | |
oldVersion=$1; | |
newVersion=$2; | |
smsReceiverPath="com/farsitel/bazaar/receiver/SmsAuthenticationReceiver.java"; | |
echo "Downloading ..."; | |
wget "https://cafebazaar.ir/static/download/Bazaar-$oldVersion.apk"; | |
wget "https://cafebazaar.ir/static/download/Bazaar-$newVersion.apk"; | |
echo "Decompiling ..."; |
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
{ | |
"name": "roots/bedrock", | |
"type": "project", | |
"license": "MIT", | |
"description": "A modern WordPress stack", | |
"homepage": "https://roots.io/bedrock/", | |
"authors": [ | |
{ | |
"name": "Scott Walkinshaw", | |
"email": "[email protected]", |
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
<?php | |
namespace App; | |
use Illuminate\Foundation\Application; | |
class CustomApplication extends Application | |
{ | |
/** | |
* Get the path to the public / web directory. | |
* |
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
# built application files | |
*.apk | |
*.ap_ | |
# files for the dex VM | |
*.dex | |
# Java class files | |
*.class |
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 | URI | |
---|---|---|
Flurry by Yahoo | https://dev.flurry.com/secure/signup.do | |
Google NikCollection | https://dl.google.com/edgedl/photos/nikcollection-full-1.2.11.dmg | |
Bitbucket | http://bitbucket.org/ | |
SoftLayer | http://softlayer.com/ | |
VirtualBox | http://download.virtualbox.org/virtualbox/5.0.16/VirtualBox-5.0.16-105871-OSX.dmg | |
Docker Hub | https://hub.docker.com/ | |
Oracle | http://oracle.com/ | |
Java | http://java.com | |
Sun | http://sun.com |
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
Rank | Site | SNI | HTTP | DNS | |
---|---|---|---|---|---|
1 | google.com | open | open | open | |
2 | youtube.com | blocked | blocked | blocked | |
3 | facebook.com | blocked | blocked | blocked | |
4 | baidu.com | open | open | open | |
5 | yahoo.com | open | open | open | |
6 | amazon.com | open | open | open | |
7 | wikipedia.org | open | open | open | |
8 | qq.com | open | open | open | |
9 | google.co.in | open | open | open |
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
Rank | Site | SNI | HTTP | DNS | |
---|---|---|---|---|---|
1 | google.com | open | open | open | |
2 | facebook.com | blocked | blocked | blocked | |
3 | youtube.com | blocked | blocked | blocked | |
4 | baidu.com | open | open | open | |
5 | yahoo.com | open | open | open | |
6 | amazon.com | open | open | open | |
7 | wikipedia.org | open | open | open | |
8 | qq.com | open | open | open | |
9 | google.co.in | open | open | open |
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
<?php | |
namespace App\Http\Middleware; | |
use Closure; | |
use Illuminate\Routing\Middleware\ThrottleRequests; | |
class OpenshiftThrottleRequests extends ThrottleRequests | |
{ | |
/** |
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 strict'; | |
// Proxy-Dns: https://www.npmjs.com/package/proxy-dns | |
let ProxyDNS = require('proxy-dns').default; | |
const dns = new ProxyDNS({ | |
ttl: 600 | |
}); | |
dns.use(function* (next) { |
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
make_alias () | |
{ | |
echo "alias $1=\"cd `pwd`\"" >> ~/.bash_profile | |
source ~/.bash_profile | |
} |