Chekboxes CSS normal. disable - un and checked. with checkboxes stup*d values.
sorry the messy and repeated code...
A Pen by Pedro Campos on CodePen.
#!/bin/bash | |
#Script to process ip ranges to ban using IPSet and IPTables | |
ipset create countryblock hash:net | |
while read line; do ipset add countryblock $line; done < blocklist.txt | |
iptables -I INPUT -m set --match-set countryblock src -j DROP |
Chekboxes CSS normal. disable - un and checked. with checkboxes stup*d values.
sorry the messy and repeated code...
A Pen by Pedro Campos on CodePen.
A Pen by Juan Cabrera on CodePen.
As in the title - visually simple animated form checkboxes
A Pen by Andy Walpole on CodePen.
/** | |
* Created by k33g_org on 24/10/14. | |
*/ | |
import mongodb from 'mongodb'; | |
import uuid from 'node-uuid'; | |
/* | |
http://mongodb.github.io/node-mongodb-native/2.0/tutorials/crud_operations/ | |
*/ |
made with esnextbin
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
*.sh | |
!deploy.sh |
var mqtt = require('mqtt') | |
// Make sure to change this to the IP address of your MQTT server | |
, host = '192.168.128.204' // or localhost | |
client = mqtt.createClient(1883, host, {keepalive: 10000}); | |
// Subscribe to the temperature topic | |
client.subscribe('temperature'); | |
// When a temperature is published, it will show up here | |
client.on('message', function (topic, message) { |
#!/bin/bash | |
while echo $1 | grep -q ^-; do | |
eval $( echo $1 | sed 's/^-//' )=$2 | |
shift | |
shift | |
done | |
msg(){ | |