Skip to content

Instantly share code, notes, and snippets.

View dkundel's full-sized avatar
🐼
Panda hacking JavaScript

Dominik Kundel dkundel

🐼
Panda hacking JavaScript
View GitHub Profile
@dkundel
dkundel / search-modules.sh
Created August 2, 2017 11:25
Search for dangerous npm modules
find . -type d -maxdepth 4 -name node_modules -print0 | xargs -0 -L1 sh -c 'cd "$0/.." && pwd && npm ls 2>/dev/null | grep -E "babelcli|crossenv|cross-env.js|d3.js|fabric-js|ffmepg|gruntcli|http-proxy.js|jquery.js|mariadb|mongose|mssql.js|mssql-node|mysqljs|nodecaffe|nodefabric|node-fabric|nodeffmpeg|nodemailer-js|nodemailer.js|nodemssql|node-opencv|node-opensl|node-openssl|noderequest|nodesass|nodesqlite|node-sqlite|node-tkinter|opencv.js|openssl.js|proxy.js|shadowsock|smb|sqlite.js|sqliter|sqlserver|tkinter"'
@dkundel
dkundel / twiml.xml
Created June 8, 2017 14:45
Forward SMS with TwiML Bins to two numbers
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Message to="+49111111111111">
{{From}}: {{Body}}
</Message>
<Message to="+19991234123">
{{From}}: {{Body}}
</Message>
</Response>
@dkundel
dkundel / 1-app.js
Last active January 16, 2016 12:22
MSDojoDublin-Node-Tutorial-Session-1
console.log('Hello World!');
@dkundel
dkundel / README.md
Last active August 29, 2015 13:57
CS Club Tutorial Node.JS, MongoDB and Socket.IO

Overview

We will build a small web application to learn how to use the different technologies. For that we need to install some requirements:

Installation

Node.JS

Node.JS is cross-platform available. You can easily install it for any operating system by downloading the correct version here: http://nodejs.org/

Most package manager offer a way to install Node.JS but you should go to the website to install it from there :)

MongoDB