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
var json_data = null; | |
function get_data(mode){ | |
$.ajax({ | |
url: "/json_nodes", | |
method: "POST", | |
data: {func: "init"}, | |
success: function(json){ | |
json_data = json; | |
//console.log(json_data); | |
} |
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
from gevent import monkey | |
monkey.patch_all() | |
import bottle | |
class SSLWebServer(bottle.ServerAdapter): | |
def run(self, handler): | |
from gevent.pywsgi import WSGIServer | |
srv = WSGIServer((self.host, self.port), handler, | |
certfile='/etc/letsencrypt/live/XXX/fullchain.pem', |
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
<!DOCTYPE html> | |
<html lang="ka-GE" | |
xmlns:fb="http://ogp.me/ns/fb#" prefix="og: http://ogp.me/ns#"> | |
<head> | |
<link rel="stylesheet" href="/wp-content/themes/flex-mag/css/alk-sanet.min.css"> | |
<link rel="stylesheet" href="/wp-content/themes/flex-mag/css/bpg-glaho.min.css"> | |
<meta charset="UTF-8" > | |
<meta name="viewport" id="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" /> | |
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
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ | |
/* ROOT - VARS */ | |
*|*:root { | |
--tab-min-height: 30px !important; /* adjust */ | |
--tab-min-width: 30px !important; /* adjust */ | |
} | |
/* TABS: height */ | |
#tabbrowser-tabs, |
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
Set forward switch to Shift+Alt(left) | |
gsettings set org.gnome.desktop.wm.keybindings switch-input-source "['<Shift>Alt_L']" | |
Set backward switch to Alt+Shift(left) | |
gsettings set org.gnome.desktop.wm.keybindings switch-input-source-backward "['<Alt>Shift_L']" | |
OlderNewer