Skip to content

Instantly share code, notes, and snippets.

View Ryuno-Ki's full-sized avatar
📨
Free capacity in 2025. HMU

André Jaenisch Ryuno-Ki

📨
Free capacity in 2025. HMU
View GitHub Profile
@Ryuno-Ki
Ryuno-Ki / spidernode-glossary.md
Last active September 9, 2016 19:57 — forked from mykmelez/spidernode-glossary.md
SpiderNode Glossary

Glossary

On GitHub issues you'll sometimes come across abbreviations.

We try to list some of them here which are related to the project.

D

DYLD

@Ryuno-Ki
Ryuno-Ki / gist:1f286228eb0229cf9a7fdb2d4951beb3
Created November 11, 2017 01:19
How to install Heroku CLI (fka Toolbelt) on Sabayon Linux
cd $HOME
mkdir -p Downloads
cd Downloads
wget https://cli-assets.heroku.com/branches/stable/heroku-linux-amd64.tar.gz # for x86_64 CPU architecture
mkdir -p ../bin/heroku-lib
tar -xvzf heroku-linux-amd64.tar.gz -C ../bin/heroku-lib/
cd ../bin/heroku-lib/
ln -s $HOME/bin/heroku-lib/heroku/bin/heroku $HOME/bin/heroku # Could be that you have to expand $HOME
echo 'export PATH=$PATH:$HOME/bin' >> ~/.bashrc
@Ryuno-Ki
Ryuno-Ki / README.md
Created August 8, 2018 14:07
Adobe Analytics API v1.4 with cycle dependency
@Ryuno-Ki
Ryuno-Ki / index.js
Created April 4, 2020 19:43
Bundling Node.js module with bare return on top level, c.f. https://twitter.com/liran_tal/status/1245626369112821763
import semver from 'semver' // I want this to be bundled in
import './node_modules/abc/abc.js' // this is vanilla JS, I expect this to be imported in the global scope
import * as myData from './mydata.json' // this is just json data I'm working with
async function myOwnThing() {
return some_data_object_here;
}
return myOwnThing();