I hereby claim:
- I am ioncodes on github.
- I am layle (https://keybase.io/layle) on keybase.
- I have a public key ASCKkl5XWWlogtDL5zEIpQV0ihBgdB-lDz1NfU7LxZ9p9go
To claim this, I am signing this object:
[Colors] | |
AbstractTableViewBackgroundColor=#252526 | |
AbstractTableViewHeaderTextColor=#000000 | |
AbstractTableViewSelectionColor=#323238 | |
AbstractTableViewSeparatorColor=#64646F | |
AbstractTableViewTextColor=#E8EADE | |
DisassemblyAddressBackgroundColor=#XXXXXX | |
DisassemblyAddressColor=#BD63C5 | |
DisassemblyAutoCommentBackgroundColor=#XXXXXX | |
DisassemblyAutoCommentColor=#787878 |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
from Crypto.Cipher import AES | |
from http.cookiejar import CookieJar, CookiePolicy | |
from datetime import datetime | |
import requests | |
import json | |
import base64 | |
import zlib | |
import os | |
import os.path | |
import urllib3 |
git clone https://github.com/llvm/llvm-project
# checkout version/commit to use
cd llvm-project
mkdir build
cd build
# append -DCMAKE_BUILD_TYPE=Release to next command to enable Release build
cmake .. -GNinja # non-Windows
cmake .. # Windows, or specify Visual Studio generator
cmake --build .
Vagrant.configure("2") do |config| | |
config.vm.guest = :windows # tell Vagrant this is a Windows-based guest | |
config.vm.communicator = "winrm" # use winrm for management instead of ssh | |
config.vm.provider 'vmware_workstation' do |p| | |
p.linked_clone = false | |
end | |
config.vm.provider :vmware_desktop do |p| | |
p.vmx["ethernet0.pcislotnumber"] = "160" | |
end |
#define Uint64 uint64_t | |
#define Uint32 uint32_t | |
#define Uint16 uint16_t | |
#define Uint8 uint8_t | |
#define Sint64 int64_t | |
#define Sint32 int32_t | |
#define Sint16 int16_t | |
#define Sint8 int8_t |