Skip to content

Instantly share code, notes, and snippets.

@o3bvv
o3bvv / Default.sublime-theme
Last active December 17, 2016 18:12
Sublime settings
[
{
"class": "icon_file_type",
"content_margin": [0, 0]
},
{
"class": "icon_folder",
"content_margin": [0, 0]
},
{
import socket
import select
import sys
from threading import Thread
sock = socket.socket( socket.AF_INET, socket.SOCK_STREAM )
sock.connect( ('192.168.1.36', 20001) )
def client_runner():
@o3bvv
o3bvv / il2ds-install.sh
Last active December 18, 2015 08:59
IL-2 Dedicated Server installation script
#!/bin/bash
# IL-2 FB Dedicated Server installer.
#
# Run this script with '-h' option to see the usage help:
# il2ds-install.sh -h
# ------------------------------------------------------------------------------
# Definitions
# ------------------------------------------------------------------------------
@o3bvv
o3bvv / git-recursive-status.sh
Last active December 16, 2015 20:39
Repository recursive status
git status; git submodule foreach --recursive git status