View get value from nginx vts module and use for cacti
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
#!/usr/bin/env python | |
try: | |
import simplejson as json | |
except: | |
import json | |
import urllib2 | |
class ServerStatistics(object): | |
def __init__(self): |
View nftables.rules
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
table ip filter { | |
chain input { | |
type filter hook input priority 0; policy accept; | |
} | |
chain output { | |
type filter hook output priority 0; policy accept; | |
} | |
chain forward { |
View soft irq
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
net.netfilter.nf_conntrack_max = 1048576 | |
net.netfilter.nf_conntrack_tcp_be_liberal = 0 | |
net.netfilter.nf_conntrack_tcp_loose = 0 | |
net.netfilter.nf_conntrack_tcp_max_retrans = 3 | |
net.netfilter.nf_conntrack_tcp_timeout_close = 2 | |
net.netfilter.nf_conntrack_tcp_timeout_close_wait = 2 | |
net.netfilter.nf_conntrack_tcp_timeout_established = 120 | |
net.netfilter.nf_conntrack_tcp_timeout_fin_wait = 2 | |
net.netfilter.nf_conntrack_tcp_timeout_last_ack = 10 | |
net.netfilter.nf_conntrack_tcp_timeout_max_retrans = 300 |
View paging orders.java
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
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.Collections; | |
import java.util.List; | |
/** | |
* Created by Hung on 4/27/17. | |
*/ | |
public class ListOperator { |
View gevent.py
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
#!/usr/bin/python | |
"""WSGI server example""" | |
from __future__ import print_function | |
from gevent.pywsgi import WSGIServer | |
import gevent | |
import sys | |
from time import * | |
from gevent.monkey import patch_all; patch_all() |
View gist:b644f59d36b5839edc4d01fe357a1882
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
# compile php | |
./configure '--prefix=/apps/php-7.0.13' '--disable-all' '--with-libdir=lib64' '--enable-ctype' '--with-curl' '--enable-libxml' '--with-mysqli' '--with-pcre-regex' '--with-iconv' '--with-config-file-path=/abserver/php-7.0.13/etc' '--with-config-file-scan-dir=/abserver/php-7.0.13/etc/php.d' '--enable-maintainer-zts' '--enable-fpm' '--enable-simplexml' '--enable-session' '--enable-xml' '--with-openssl' '--enable-dom' '--enable-json' '--enable-hash' '--enable-opcache' '--enable-phar' '--enable-filter' '--with-zlib' | |
make -j 8 && make install | |
# compile php-cpp | |
export PATH=$PATH:/apps/php-7.0.13/bin |
View conga.tex
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
\item{ | |
\textbf{Con ga}{: \href{https://conga.com/ }{https://conga.com}} | |
} |
View async_con_heo.py
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
import asyncio | |
class asyncOp(object): | |
def __init__(self, loop): | |
self.loop = asyncio.get_event_loop() | |
def run(self, op, callback): | |
task = self.loop.create_task(op) |
View async.py
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
import asyncio | |
class asyncOp(object): | |
def __init__(self, op, callback): | |
self.op = op | |
self.loop = asyncio.get_event_loop() | |
self.task = self.loop.create_task(self.op) | |
self.task.add_done_callback(callback) |
View spray-simple-client.scala
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
package spray.examples | |
import scala.util.{Success, Failure} | |
import scala.concurrent.duration._ | |
import akka.actor.ActorSystem | |
import akka.pattern.ask | |
import akka.event.Logging | |
import akka.io.IO | |
import spray.json.{JsonFormat, DefaultJsonProtocol} | |
import spray.can.Http |
NewerOlder