⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clang: warning: include path for libstdc++ headers not found; pass '-stdlib=libc++' on the command line to use the libc++ standard library instead [-Wstdlibcxx-not-found] | |
../node_modules/nan/nan.h:50:10: fatal error: 'algorithm' file not found | |
#include <algorithm> | |
^~~~~~~~~~~ | |
# install command line tools | |
> xcode-select --install | |
> xcrun --show-sdk-path |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GID_TABLE = { | |
'od6': 0, | |
'od7': 1, | |
'od4': 2, | |
'od5': 3, | |
'oda': 4, | |
'odb': 5, | |
'od8': 6, | |
'od9': 7, | |
'ocy': 8, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
#!/usr/bin/env python | |
import sys | |
import os | |
import re | |
import yaml | |
import urllib | |
import codecs | |
from datetime import datetime | |
from BeautifulSoup import BeautifulStoneSoup, Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
l = [1,2,3,4,5] | |
for v in reversed(l): | |
print v | |
for v in l[::-1]: | |
print v | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<project name="moveit" default="build" basedir="./"> | |
<taskdef resource="net/sf/antcontrib/antcontrib.properties"> | |
<classpath> | |
<pathelement location="${basedir}/Documents/Works/warcloud/build/tools/ant-contrib-1.0b3.jar"/> | |
</classpath> | |
</taskdef> | |
<target name="build"> | |
<var name="file.default" value="idle"/> | |
<foreach param="file.name" target="moveit"> |