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
module pckgg::icon | |
{ | |
use sui::url::{Self, Url}; | |
public(package) fun get_icon_url(): Url { | |
return url::new_unsafe_from_bytes(b"data:image/png;base64,asdasoAAAANSUhEUgAAARMAAAENCAMAAAAbq3FhAAAA81BMVEUNLa/////+/v/6/fr09vbp6/Cd+bTL0tyfr/CtrrJO3nKWmpcL6UYI60MH7TkS5EgY4EkI6UAg2k4H6j0L5kMK6DoJ50AL5j0m1FAO4z8tzVkW3EN0h9UW0kE2uGEnw00Wyj6KeH0PwTYnrUkVuTk1loZFhn8lnkoMri62TF1DbMIljUoLnyhhYmQmd3ALjiQnV7WAPkwTeSkiY2AjUk9DQ0gYPbkHUHcLXB5ILTsKPIQRKs0QK8cPLL8QKcYWQD4QMJ0PI34RLTIeIC0HMBEYHSouEiAZGikWGScTGSgXFycWGCIaFSUMHB8UFSINDhQGBgdUr7xfAABOl0lEQVR42ryX3W7jOBKFZVGCHPReDPpq0CsEyEV6AS5iEOiJDEei1olgkCId2e//NHuqSFvyT3Y905k+dlNkiW2zvhyW6OTZB7l4NcafyznnrwTHsIm922U2/ja5nj7e+tf1L9Nr8uwmssYaQ7naozh7Tn84Cn0XFDG6U43/x7upLIQoPsB0U7a4bLdIfIvhiTC7dYBHaAI3c7YAjwJRDsSTQEiAIAZIDoQYsNqAfgNaYQr4j6PAGTQAVcBQQKIA32gB1gB4w+gj+Acr/2T/kvhwGbDXA15Y+sKBCfQB/9IOAFQAQHx3hc1+x8XOB39BMmFFYBknwMisSQGo589vWeIEVe41CRWKhHyXhV2FJgCNVsz7+pcQYGsIsBICaBfg+v/6/PwiFDizCXSR8U7Tsv1b+LH8rQLMV0YALhvn/TUU/kDCb77DBxSAkAA/6vhnA4BPgIVTAOn7nAWg+u+KYpQApwlA |
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
# Local Sui network | |
# Docs: https://docs.sui.io/build/sui-local-network | |
# Upgrade local: | |
brew install sui | |
## Local explorer: https://explorer.polymedia.app/?network=local | |
# Install local validator: | |
brew install sui |
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 | |
#Makes it public and set up authentication | |
echo "Installing repo" | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4 | |
echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.0.list | |
echo "Installing binaries" | |
sudo apt-get update |
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
sudo add-apt-repository ppa:vbernat/haproxy-1.6 | |
sudo apt-get update | |
sudo apt-get install haproxy | |
# restart service | |
sudo service haproxy restart | |
# configuration file | |
sudo nano /etc/haproxy/haproxy.cfg |
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
////// Save as index.js and upload it to Lambda as zip archive with node_modules directory. After: | |
////// npm install aws-cloudwatch-chart | |
////// npm install request | |
////// no need to upload aws-sdk module | |
////// Don't forget to change API keys here. | |
////// License: MIT | |
////// Docs: |
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
<?php | |
//// usage - php backup.php domain | |
$network = 'network'; | |
$workspace = 'workspace'; | |
$apikey = '...........'; | |
$tmp_path = sys_get_temp_dir(); //// should be writable | |
define( 'ABSPATH', dirname(__FILE__) . '/' ); | |
//// create empty wp-settings.php file (wp config tries to find it) |
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 | |
run() | |
{ | |
echo "Adding new apache domain" | |
if [ "$(id -u)" != "0" ]; then | |
echo "Sorry, but this script should be executed by root only. Try: sudo ./add_apache_domain.sh" | |
return | |
fi |
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
SetEnv localhost localhost | |
ServerName localhost | |
Mutex file:${APACHE_LOCK_DIR} default | |
PidFile ${APACHE_PID_FILE} | |
Timeout 300 |
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
var l = document.getElementsByClassName('img'); for (var k in l) if (typeof(l[k].onmouseover) == 'function') l[k].onmouseover(); | |
var els = document.getElementsByClassName('search_bigph'); | |
var cur_els = 0; | |
setTimeout(next_cur_el, 5000); | |
function next_cur_el() | |
{ | |
if (typeof(els[cur_els]) == 'undefined') return; | |
els[cur_els].click(); | |
var r1 = Math.random() * (3000 - 500) + 500; | |
var r2 = Math.random() * (5000 - 2000) + 2000 + r1; |
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/sh | |
echo "Updating devtest area"; | |
echo "Enter your git credentials below:"; | |
cd ~/domain/ | |
git pull | |
cd ../ | |
/usr/local/php53/bin/php ~/domain/www/cli/tools/update_schema.php |
NewerOlder