Skip to content

Instantly share code, notes, and snippets.

@Jiwan
Jiwan / env.sh
Last active January 16, 2017 20:26
Compiler env.sh
COMPILER_ENV=GCC_7
if [ -z "$COMPILER_ENV" ];
then
echo "Variable COMPILER_ENV must be set and be the name of a folder in /opt";
else
echo "Configuring compiler environment.";
INSTALL_DIR=/opt/${COMPILER_ENV}
THIRD_PARTY_DIR=${INSTALL_DIR}/thirdparty
export GCC_ENV_DIR=${INSTALL_DIR}
@Jiwan
Jiwan / update-clang.sh
Last active March 16, 2017 15:15
Update clang script
#!/usr/bin/env bash
if [ -d "llvm" ]; then
pushd .
cd llvm/
svn cleanup
svn update
popd
else
svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm
# This file is NOT licensed under the GPLv3, which is the license for the rest
# of YouCompleteMe.
#
# Here's the license text for this file:
#
# This is free and unencumbered software released into the public domain.
#
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a compiled
# binary, for any purpose, commercial or non-commercial, and by any
import argparse
import datetime
import unicodecsv as csv
import meetup.api
import os.path
columns = ['name', 'real_name', 'kingster', 'id', 'rsvp', 'rsvp_date', 'joined_group_date', 'title', 'host', 'url', 'new_entry']
if __name__ == "__main__":
#include <cassert>
#include <iostream>
#include <functional>
#include <memory>
#include <type_traits>
#include <typeinfo>
#include <typeindex>
#include <utility>
#include <unordered_map>