Skip to content

Instantly share code, notes, and snippets.

@serenitii
serenitii / Setup_MacOS.sh
Last active January 31, 2019 09:07
Setup_MacOS
#!/bin/bash
brew update # Fetch latest version of homebrew and formula.
brew tap caskroom/cask # Tap the Caskroom/Cask repository from Github using HTTPS.
brew search dropbox # Searches all known Casks for a partial or exact match.
brew cask info dropbox # Displays information about the given Cask
brew cask install dropbox # Install the given cask.
@serenitii
serenitii / TCPTestClient.cs
Created December 18, 2018 01:49 — forked from danielbierwirth/TCPTestClient.cs
TCP Client-Server Connection Example | Unity | C# | Bidirectional communication sample: Client can connect to server; Client can send and receive messages: Server accepts clients; Server reads client messages; Server sends messages to client
using System;
using System.Collections;
using System.Collections.Generic;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using UnityEngine;
public class TCPTestClient : MonoBehaviour {
#region private members
@serenitii
serenitii / setup_dist.sh
Last active December 1, 2018 08:27
Setup Dist Environment On Ubuntu 18.04
# Setup On Ubuntu 18.04
# vagrant init ubuntu/bionic64
# vagrant up
# curl -L <Gist Raw File URL> | bash
cd ~
sudo apt update && sudo apt upgrade
lsb_release -a
@serenitii
serenitii / install_boost_1_66_0.sh
Last active April 1, 2020 06:38
Boost Intall with options of -fPIC -std=c++1z
#!/bin/sh
wget https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2 && \
tar xjf boost_1_66_0.tar.bz2 && \
cd boost_1_66_0 && \
sh bootstrap.sh && \
./b2 --reconfigure stage toolset=gcc cxxflags="-std=c++1z -fPIC -O3 -Werror -Wno-unused-local-typedef -Wno-deprecated-declarations -Wno-unused-function" link=static,shared variant=release threading=multi linkflags="-fPIC" \
sudo ./b2 install
@serenitii
serenitii / guid_32bit.cpp
Created January 5, 2018 03:35
32bit GUID Generator
static u32 guid_32bit() {
static u32 s_guid_step_counter = 0;
struct timeval curr_time;
gettimeofday(&curr_time, nullptr);
//printf("%ld:%ld\n", curr_time.tv_sec, curr_time.tv_usec);
u32 secs = curr_time.tv_sec % 1000000;
u32 msecs = curr_time.tv_usec / 1000;
set number
set relativenumber
inoremap ;; <Esc>
syntax on
set ruler
set ignorecase
set showmatch
set hlsearch