Skip to content

Instantly share code, notes, and snippets.

View Dauliac's full-sized avatar
🦊

Dauliac Dauliac

🦊
  • Sellsy
  • Bordeaux
View GitHub Profile
@ilyabrin
ilyabrin / read.cpp
Created June 14, 2013 08:10
C++ read big files
// source -> http://stackoverflow.com/a/11792512
#ifndef O_LARGEFILE
#define O_LARGEFILE 0
#endif
int read_from_file_open(char *filename,size_t size)
{
int fd;
long *buffer=(long*) malloc(size * sizeof(long));
fd = open(filename, O_RDONLY|O_LARGEFILE);
@datakurre
datakurre / .gitignore
Last active December 29, 2022 10:29
Minimal Nix Docker
*.tar.gz
.sentinel.*
@Tristor
Tristor / iptables.sh
Last active October 26, 2024 19:38
Simple IPtables script for an OpenVPN server
#!/bin/bash
# Flushing all rules
iptables -F FORWARD
iptables -F INPUT
iptables -F OUTPUT
iptables -X
# Setting default filter policy
iptables -P INPUT DROP
iptables -P OUTPUT DROP
iptables -P FORWARD DROP
@scokmen
scokmen / HttpStatusCode.ts
Created April 25, 2017 11:10
Typescript Http Status Codes Enum
"use strict";
/**
* Hypertext Transfer Protocol (HTTP) response status codes.
* @see {@link https://en.wikipedia.org/wiki/List_of_HTTP_status_codes}
*/
enum HttpStatusCode {
/**
* The server has received the request headers and the client should proceed to send the request body
@andyshinn
andyshinn / Dockerfile
Last active August 8, 2023 08:39
Postal on Docker
FROM ruby:2.3-onbuild
VOLUME /opt/postal/config
ENV LOG_TO_STDOUT 1
ENV AM_CONFIG_ROOT /opt/postal/config
RUN gem install procodile
RUN apt-get update -qq && apt-get install -yqq nodejs
@brandonsoto
brandonsoto / Vagrantfile
Created August 4, 2017 05:53
vagrantfile with serial port and private network
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
@dapperfu
dapperfu / Makefile
Created December 2, 2017 22:52
venv makefile
.DEFAULT: null
.PHONY: null
null:
@echo No Default Target
VENV = .venv
.PHONY: venv
venv: ${VENV}
${VENV}:
@hapylestat
hapylestat / __manual_openvpn_with_external_dhcpd.md
Last active October 25, 2022 15:12
Configure OpenVPN to work using external DHCP server

Configuration steps:

  • create bridge vpn-bridge and tap device connected to this bridge vpn-server:
nmcli con add ifname vpn-bridge type bridge con-name vpn-bridge-server
nmcli con modify vpn-bridge-server bridge.stp no
nmcli con add type tun ifname vpn-server con-name vpn-server-slave mode tap master vpn-bridge
@hofmannsven
hofmannsven / README.md
Last active February 6, 2023 03:18 — forked from sergejmueller/index.html
Nginx proxy configuration for Google Analytics

Google Analytics Nginx Proxy

Google PageSpeed Insights flags browser caching of Google Analytics:

Leverage browser caching

Set up a proxy in your Nginx configuration file to address this issue.

Source

@prochor666
prochor666 / install.md
Last active September 7, 2023 16:44
Mount Google drive under Debian Linux (Jessie and later)