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
name: my_services_1 | |
services: | |
my_wp: | |
networks: | |
- my_wp_net | |
... | |
... | |
... |
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
// ====================================================== | |
// ================ SAMPLE SERVER ================= | |
// ====================================================== | |
const createServer = (require('http')).createServer; | |
const WebSocketServer = require('ws').WebSocketServer; | |
const server_host = '127.0.0.1'; | |
const server_port = 4444; | |
const s = createServer((req, res) => { |
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
currencies | |
[ | |
"1INCH", | |
"AAA", | |
"AAVE", | |
"AAVEF0", | |
"ADA", | |
"ADAF0", | |
"AIX", |
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 | |
// Choose target directory for downloaded files | |
$save_directory= './fonts_ge'; | |
// You can set the starting page number, i.e. 44 ( https://fonts.ge/ka/fonts/?sort_by=name&pn=44 ) | |
$start_page_num= !empty($_GET['startpage']) ? $_GET['startpage'] : 1; | |
// by 2019, this is url, if changes in future, change this.. | |
$download_url = 'https://fonts.ge/ka/download/font/'; |
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
sign (path, api = 'private', method = 'GET', params = {}, headers = undefined, body = undefined) { | |
let request = '/' + this.version + '/' + this.implodeParams (path, params); | |
params = this.omit (params, this.extractParams (path)); | |
if (method === 'GET' || method === 'DELETE') { | |
if (Object.keys (params).length) { | |
request += '?' + this.urlencode (params); | |
} | |
} | |
const url = this.urls['api'][api] + request; |
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 | |
/* | |
* Plugin Name: My Example plugin | |
* Description: Somewhat plugin description here | |
* Text Domain: my-plugin-textdomain-slug | |
* Domain Path: /languages | |
* Version: 1.234 | |
* WordPress URI: https://wordpress.org/plugins/this-plugin-name/ | |
* Plugin URI: https://example.com/wordpress/this-plugin | |
* Contributors: wpOrgUsername |
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
<FilesMatch \.php$> | |
SetHandler application/x-httpd-php | |
</FilesMatch> | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f |
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
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
<title>d3 depth chart</title> | |
<script type="text/javascript" src="https://d3js.org/d3.v4.min.js"></script> | |
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected]/lodash.min.js"></script> | |
<style> |
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
javascript: use_DIRECT_COPY=true; function fallbackCopyTextToClipboard(text) { var textArea = document.createElement("textarea"); textArea.value = text; textArea.style.position="fixed"; document.body.appendChild(textArea); textArea.focus(); textArea.select(); try { var successful = document.execCommand("copy"); } catch (err) { promptCopy1(text); } document.body.removeChild(textArea); } function promptCopy1(text){ prompt("url", text); }; (function(){ var yt=document.getElementById("movie_player"); var data=yt.getVideoData(); var text=data["title"] + " " + "https://youtu.be/"+data["video_id"]+"?t="+Math.floor(yt.getCurrentTime()); if (use_DIRECT_COPY) fallbackCopyTextToClipboard(text); else {promptCopy1(text);} })(); void(0); |
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
; 3 DBs together: | |
; https://handlers.sans.org/jclausing/userdb.txt | |
; https://web.archive.org/web/20160611182612/https://reverse-engineering-scripts.googlecode.com/files/UserDB.TXT | |
; https://web.archive.org/web/20140924084024/http://research.pandasecurity.com/blogs/images/userdb.txt | |
; current page: https://gist.github.com/ttodua/a7876b9aed1e93890b3c7aaebddc9f4e | |
[!EP (ExE Pack) V1.0 -> Elite Coding Group] | |
signature = 60 68 ?? ?? ?? ?? B8 ?? ?? ?? ?? FF 10 | |
ep_only = true |
NewerOlder