This file contains 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
diff --git a/build/assets/index.es.js b/build/assets/index.es.js | |
index e296771..b90fa8b 100644 | |
--- a/build/assets/index.es.js | |
+++ b/build/assets/index.es.js | |
@@ -1578,7 +1578,7 @@ function requireBrowser() { | |
function wrap(opts, logger, level) { | |
if (!opts.transmit && logger[level] === noop) | |
return; | |
- logger[level] = function(write) { | |
+ logger[level] = /* @__PURE__ */ function(write) { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
const fs = require('fs') | |
const init = require('./init.js') | |
// WebRTC-Star Signal Server for js-ipfs | |
// SignalServer: null, | |
init({ | |
repo: process.env.IPFS_PATH || './ipfs', | |
Addresses: { | |
API: '/ip4/127.0.0.1/tcp/5001', | |
Swarm: ['/ip4/0.0.0.0/tcp/4001'], |
This file contains 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/bash | |
mkdir -p ~/go | |
cd ~/go | |
# first install go1.4 | |
git clone --branch go1.4.3 --depth 1 https://go.googlesource.com/go go1.4 | |
cd go1.4/src | |
./make.bash | |
../bin/go version |
This file contains 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
<!doctype html> | |
<meta charset="utf-8"> | |
<title>fromcjs</title> | |
<script src="fromcjs.iife.js"></script> |
This file contains 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
const postcss = require('postcss'); | |
const importCSS = require('postcss-import'); | |
const copyCSS = require('postcss-copy'); | |
const prefixCSS = require('autoprefixer'); | |
const customPropertiesCSS = require('postcss-custom-properties'); | |
const pxtoremCSS = require('postcss-pxtorem'); | |
const pixremCSS = require('pixrem'); | |
// const cssnano = require('cssnano'); | |
const fildes = require('fildes'); | |
const readFile = fildes.readFile |
This file contains 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 * as Lib from 'lib'; | |
console.log('APP'); | |
console.log(Lib); | |
console.log(Lib.capitalize('hello world')); |
This file contains 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
open 10 | |
close - should have no error | |
close2 - should have error | |
{ [Error: EBADF: bad file descriptor, close] errno: -9, code: 'EBADF', syscall: 'close' } |
This file contains 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/bash | |
if [ "$1" = "-h" -o "$1" = "--help" -o -z "$1" ]; then cat <<EOF | |
appify v3.0.1 for Mac OS X - http://mths.be/appify | |
Creates the simplest possible Mac app from a shell script. | |
Appify takes a shell script as its first argument: | |
`basename "$0"` my-script.sh |
This file contains 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
git clone git://pure-data.git.sourceforge.net/gitroot/pure-data/pure-data | |
cd pure-data | |
./autogen.sh | |
CFLAGS="-mmacosx-version-min=10.5" ./configure --enable-universal=i386 | |
make -j3 | |
cd src | |
./pd -nogui |
NewerOlder