Let's not localize programming languages. Please >_<
Feel free to fork and expand and/or add more languages as an example to why this would be horrible, and I'll add them here :)
require "json" | |
require "digest" | |
require "logger" | |
class SlowQueryLogger | |
def initialize(output = nil, opts = {}) | |
# will log any query slower than 500 ms | |
@threshold = opts.fetch(:threshold, "500").to_i | |
@logger = Logger.new(output || STDOUT) |
Chain INPUT (policy DROP) | |
target prot opt source destination | |
ufw-before-logging-input all -- anywhere anywhere | |
ufw-before-input all -- anywhere anywhere | |
ufw-after-input all -- anywhere anywhere | |
ufw-after-logging-input all -- anywhere anywhere | |
ufw-reject-input all -- anywhere anywhere | |
ufw-track-input all -- anywhere anywhere | |
Chain FORWARD (policy DROP) |
package main | |
import ( | |
"fmt" | |
"reflect" | |
) | |
// Name of the struct tag used in examples | |
const tagName = "validate" |
package main | |
import ( | |
"log" | |
"net" | |
"os" | |
"github.com/gin-gonic/gin" | |
"github.com/sosedoff/geoip2-golang" | |
) |
require "nokogiri" | |
class CoverageParser | |
attr_reader :files, | |
:files_count, | |
:coverage_percent, | |
:avg_hit, | |
:lines_total, | |
:lines_relevant, | |
:lines_missed, |
package main | |
import( | |
"os" | |
"fmt" | |
"net/http" | |
"github.com/jessevdk/go-flags" | |
) | |
type ServerOptions struct { |
package main | |
import( | |
"os" | |
"fmt" | |
"net/http" | |
"io/ioutil" | |
"encoding/json" | |
) |
package main | |
import ( | |
"fmt" | |
"os" | |
"bufio" | |
"regexp" | |
) | |
var IP_REGEX = regexp.MustCompile(`([\d]{1,3}\.[\d]{1,3}\.[\d]{1,3}\.[\d]{1,3})`) |
acl manager proto cache_object | |
acl localhost src 127.0.0.1/32 ::1 | |
acl localhost src 192.168.0.0/16 ::1 | |
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1 | |
acl SSL_ports port 443 | |
acl Safe_ports port 80 # http | |
acl Safe_ports port 21 # ftp | |
acl Safe_ports port 443 # https | |
acl Safe_ports port 70 # gopher |
Feel free to fork and expand and/or add more languages as an example to why this would be horrible, and I'll add them here :)