/**
* Patch to circumvent win32 fs locking behavior
*/
if(require('os').platform() === 'win32')
{
const realFs = require('fs')
const gracefulFs = require('graceful-fs')
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 <windows.h> | |
#include <Strsafe.h> | |
#include <vector> | |
#include <boost/align/aligned_allocator.hpp> | |
typedef boost::alignment::aligned_allocator<void, 4> aligned_allocator; | |
class buffer | |
{ | |
public: |
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
# YakSetup.psm1 | |
function Get-ArchivePath { | |
<# | |
.Synopsis | |
Get archive paths from URL content by using regexp. | |
.Description | |
Get archive paths from URL content by using regexp. | |
This function accepts multiple regexs and assumes each $matches[1] has archive path. |
Before install, \Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 should have more than 4 bytes
- Remembered Arguments: chocolatey/choco#797
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
*.BAK |
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
===> lib/clang/libllvmminimal (obj,all,install) | |
/usr/obj/usr/src/tmp/usr/src/lib/clang/libllvmminimal created for /usr/src/lib/clang/libllvmminimal | |
/usr/obj/usr/src/tmp/usr/src/lib/clang/libllvmminimal/Support created for /usr/src/lib/clang/libllvmminimal | |
/usr/obj/usr/src/tmp/usr/src/lib/clang/libllvmminimal/TableGen created for /usr/src/lib/clang/libllvmminimal | |
clang++ -O2 -pipe -I/usr/src/lib/clang/include -I/usr/src/contrib/llvm/include -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DNDEBUG -DLLVM_DEFAULT_TARGET_TRIPLE=\"i386-unknown-freebsd11.0\" -DLLVM_HOST_TRIPLE=\"i386-unknown-freebsd11.0\" -DDEFAULT_SYSROOT=\"/usr/obj/usr/src/tmp\" -ffunction-sections -fdata-sections -MD -MF.depend.Support_APInt.o -MTSupport/APInt.o -Qunused-arguments -I/usr/obj/usr/src/tmp/legacy/usr/include -std=c++11 -fno-exceptions -fno-rtti -stdlib=libc++ -Wno-c++11-extensions -c /usr/src/contrib/llvm/lib/Support/APInt.cpp -o Support/APInt.o | |
In file included from /usr/src/contrib/llvm/lib/Supp |
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
.text | |
.def __cxx_global_var_init; | |
.scl 3; | |
.type 32; | |
.endef | |
.p2align 4, 0x90 | |
__cxx_global_var_init: # @__cxx_global_var_init | |
.Ltmp0: | |
.seh_proc __cxx_global_var_init | |
# BB#0: |
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
<html> | |
<head> | |
<style type="text/css"> | |
#canvas-container | |
{ | |
position: relative; | |
top: 0; | |
left: 0; | |
} |