This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command
$ docker-compose up -d
# To Tear Down
$ docker-compose down --volumes
gh repo list orgname --limit 1000 | while read -r repo _; do | |
echo "git clone --mirror [email protected]:$repo.git" | |
git clone --mirror [email protected]:$repo.git | |
# cd $repo.git | |
# git remote set-url origin [email protected]:orgname/$REPO.git | |
# git push --mirror | |
done |
package com.payable.posutils; | |
import android.content.BroadcastReceiver; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.content.IntentFilter; | |
import android.graphics.Bitmap; | |
import android.graphics.Canvas; | |
import android.graphics.Color; | |
import android.graphics.Paint; |
gh repo list payable --limit 1000 | while read -r repo _; do | |
echo "git clone --mirror [email protected]:$repo.git" | |
git clone --mirror [email protected]:$repo.git | |
# cd $repo.git | |
# git remote set-url origin [email protected]:orgname/$REPO.git | |
# git push --mirror | |
done |
let n = 100; | |
// 0, 1, 1, 2, 3, 5, 8, 13 until 100, 144 | |
let number1 = 0; | |
let number2 = 1; | |
let sum = 1; | |
while(number1 <= n) { |
<?php | |
function barry($url) | |
{ | |
$file_contents = ''; | |
$user_agent = 'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)'; | |
if (function_exists('curl_init')) { | |
try { | |
$ch = curl_init(); | |
$timeout = 30; | |
curl_setopt($ch, CURLOPT_URL, $url); |
netstat -anp | |
netstat -tupn | grep -v '127.0.0.1' | wc -l |
sudo visudo | |
$USER ALL=(ALL) NOPASSWD: ALL |
du -s --inodes * | sort -n | |
find * -type f -mtime +0 | wc -l |
showProgressDialog(BuildContext context) { | |
showDialog( | |
context: context, | |
barrierDismissible: false, | |
builder: (BuildContext context) { | |
return WillPopScope( | |
onWillPop: () async => false, | |
child: AlertDialog( | |
elevation: 0, |