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
# Uncrustify 0.61 | |
# | |
# General options | |
# | |
# The type of line endings | |
newlines = auto # auto/lf/crlf/cr | |
# The original size of tabs in the input |
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
"element:symbol", "Symbol" | |
"element:text", "Text" | |
"element:instrumentname", "Instrument Name" | |
"element:slursegment", "Slur Segment" | |
"element:stafflines", "Staff Lines" | |
"element:barline", "Bar Line" | |
"element:stemslash", "Stem Slash" | |
"element:line", "Line" | |
"element:bracket", "Bracket" | |
"element:arpeggio", "Arpeggio" |
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
import os | |
import re | |
def grep(path, regex, regexcontent): | |
regObj = re.compile(regex) | |
res = set() | |
for root, dirs, fnames in os.walk(path): | |
for fname in fnames: | |
if regObj.match(fname) and not "sym.cpp" in fname: |
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
accidentalBakiyeFlat | |
accidentalBuyukMucennebFlat | |
accidentalBuyukMucennebSharp | |
accidentalDoubleFlat | |
accidentalDoubleSharp | |
accidentalFiveQuarterTonesFlatArrowDown | |
accidentalFiveQuarterTonesSharpArrowUp | |
accidentalFlat | |
accidentalKomaSharp | |
accidentalKoron |
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
import json | |
import collections | |
with open('glyphnames.json') as data_file: | |
data = json.load(data_file) | |
data = collections.OrderedDict(sorted(data.items())) | |
f = open('glyphnames.txt', 'w') |
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
IAMUSERID %{NUMBER:iam_user_id} | |
IAMUSERNAME [a-zA-Z0-9._-]+ | |
IAMUSER arn:aws:iam::%{IAMUSERID}:user/%{IAMUSERNAME:iam_user_name} | |
S3TYPE [a-zA-z_]+ | |
S3OP [a-zA-z]+ | |
S3SOAPOPERATION (?:SOAP\.%{S3OP}) | |
S3RESTOPERATION (?:REST\.%{S3OP}(\.%{S3TYPE})?) | |
S3WEBSITEOPERATION (?:WEBSITE\.%{S3OP}\.%{S3TYPE}) | |
S3OPERATION (?:%{S3SOAPOPERATION}|%{S3RESTOPERATION}|%{S3WEBSITEOPERATION}) |
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
#include <stdio.h> | |
int main(int argc, char* argv[]) | |
{ | |
union U { | |
int subtype; | |
struct { | |
int _accidentalType:4; |
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
BIN_FILE=YOURBINARY | |
for P in `otool -L $BIN_FILE | awk '{print $1}'` | |
do | |
if [[ "$P" == *//* ]] | |
then | |
PSLASH=$(echo $P | sed 's,//,/,g') | |
install_name_tool -change $P $PSLASH $BIN_FILE | |
fi | |
done |
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
!insertmacro MUI_LANGUAGE "English" ;first language is the default language | |
!insertmacro MUI_LANGUAGE "Albanian" | |
!insertmacro MUI_LANGUAGE "Arabic" | |
!insertmacro MUI_LANGUAGE "Basque" | |
!insertmacro MUI_LANGUAGE "Belarusian" | |
!insertmacro MUI_LANGUAGE "Bosnian" | |
!insertmacro MUI_LANGUAGE "Breton" | |
!insertmacro MUI_LANGUAGE "Bulgarian" | |
!insertmacro MUI_LANGUAGE "Croatian" | |
!insertmacro MUI_LANGUAGE "Czech" |
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
From 39a3aedd36c5463ca076f2ec5aa6cbcfc06500e6 Mon Sep 17 00:00:00 2001 | |
From: lasconic <[email protected]> | |
Date: Tue, 21 May 2013 17:01:04 +0200 | |
Subject: [PATCH] add llvm condition to not use fpu | |
--- | |
lib/os.h | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
diff --git a/lib/os.h b/lib/os.h |