Skip to content

Instantly share code, notes, and snippets.

@serenitii
serenitii / LibrarySetupForCMake.cmake
Last active January 23, 2020 06:04
CMake 라이브러리 설정
# Boost, Flatbuffers, MySQL, ZooKeeper
# https://cliutils.gitlab.io/modern-cmake/
# https://pleiades.io/help/clion/installation-guide.html
# https://cmake.org/cmake/help/latest/module/FindBoost.html
# [Boost]
# set(Boost_USE_STATIC_RUNTIME ON)
set(Boost_USE_STATIC_LIBS ON) # only find static libs
set(Boost_USE_MULTITHREADED ON)
set(Boost_USE_DEBUG_LIBS OFF) # ignore debug libs and
@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 / 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