Skip to content

Instantly share code, notes, and snippets.

View JDragan's full-sized avatar
🥳

Dragan Janushevski JDragan

🥳
View GitHub Profile
@JDragan
JDragan / nimblenext.nim
Created March 21, 2021 21:24
Nimble download/install sequence speedup
# nim c -r -d:release -d:ssl nimblenext.nim
## name: Nimble:Next
## type: experimantal
## desc: package manager for Nim
type NimbleFile = object
deps: seq[string]
type NimblePkgInfo = object
@JDragan
JDragan / buidling-glfw3-with-vc2015-x64.md
Created March 12, 2018 17:14 — forked from t-mat/buidling-glfw3-with-vc2015-x64.md
Building GLFW with Visual C++ 2015 (x64)

Building GLFW with Visual C++ 2015 (x64)

cd /d "%USERPROFILE%"
git clone https://github.com/glfw/glfw
cd glfw
mkdir build_vs14_win64
cd build_vs14_win64
cmake -G "Visual Studio 14 2015 Win64" ..
@JDragan
JDragan / lodash.hpp
Created June 7, 2017 22:29 — forked from quark-zju/lodash.hpp
Little C++ header inspired by Ruby and Lo-dash
// compile with -std=c++1y
#include <algorithm>
#include <functional>
#include <iterator>
#include <vector>
namespace LoDash {
using std::begin;