- What is this project? (include the programming language)
- What this project do?
- Which license is used?
#!/bin/bash | |
function show_usage() { | |
echo "$1 [CAT_OPTIONS] filename" | |
} | |
if [ "${#}" -lt 1 ]; | |
then | |
show_usage "$0"; |
#include <getopt.h> | |
#include <regex.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
void showHelp(char *biname) { | |
printf("%s [-l length] [-f 'regex'] [-n]\n", biname); | |
printf(" -l, --length\n"); | |
printf(" Password length\n"); |
#!/bin/bash | |
PHP="/usr/bin/php" | |
extfile="/usr/lib/php/modules/xdebug.so" | |
idekey="xdbg" | |
remote_port=9000 | |
remote_host="127.0.0.1" | |
$PHP \ |
import json | |
import os | |
import tornado.httpserver | |
import tornado.web | |
import tornado.websocket | |
import tornado.ioloop | |
import tornado.gen | |
import tornadoredis | |
# File: /etc/nginx/sites-enabled/000-common.conf | |
# Allow large uploads | |
client_max_body_size 50M; | |
# Enable caches | |
fastcgi_cache_path /var/cache/nginx levels=1:2 keys_zone=php_cache:100m inactive=1d; | |
# Fetch from Varnish on port 7000, | |
# but if it fail fetch from Nginx o port 80 |
lxc.aa_profile = unconfined | |
lxc.cgroup.devices.allow = a | |
lxc.cap.drop = |