Skip to content

Instantly share code, notes, and snippets.

# remove all trash images
docker rmi $(docker images | grep "^<none>" | awk '{print $3}')
# or
docker rmi $(docker images -q -f dangling=true)
# stop all projects by name
docker stop $(docker ps | grep "container_name" | awk '{print $1}')
# get public port by private port and container name
docker port container_name_or_id 27017 | awk -F':' '{print $2}'
mongoexport --collection collectioname --db databasename --out /tmp/output
mongoimport --collection collectioname --db databasename --file /tmp/list-to-import.json --jsonArray --stopOnError
for code in {0..255}; do echo -e "\e[38;05;${code}m $code: Test"; done
@maxclaus
maxclaus / README.md
Last active January 8, 2025 00:36
Forwarding TCP-traffic to a UNIX socket

Base Command

socat -d -d TCP4-LISTEN:15432,fork UNIX-CONNECT:/srv/mongodb-27017.sock

Final Script

./forward-port-to-socket.sh 15432 /srv/mongodb-27017.sock
@maxclaus
maxclaus / output.js
Created July 3, 2014 02:12
After I had completed the script `parse-nodejs-express-body-by-hand.js` I sort out was possible get the same result using the `qs` library :D
// before
{ 'content[title]': 'test',
'content[excerpt]': 'test',
'content[content]': 'test',
'content[featuredImage][title]': 'test',
'content[source][title]': 'test',
'content[source][url]': 'http://google.com',
'content[source][author]': 'test',
'content[source][publishedAt]': '25/07/2014',
'content[topics]': '539f11bcfdf15258000d9922' }
@maxclaus
maxclaus / send-email-by-gmail-using-current-user-account.js
Created July 11, 2014 01:38
Script to send email by gmail using current user account
var nodemailer = require('nodemailer'),
env = require('../env');
var Service = module.exports = function () {};
Service.prototype.sendByCurrentUserEmailAccount = function(opt, user) {
var smtpTransport = nodemailer.createTransport('SMTP', {
service: 'Gmail',
auth: {
XOAuth2: {
@maxclaus
maxclaus / regex
Created July 11, 2014 14:03
regex to match strings that do not start with a specific string
^(?!One|Two|Four)+.*
curl -H "Content-Type: application/json" -d '{ "field": "value" }' http://someurl.com
@maxclaus
maxclaus / example1.js
Created October 8, 2014 19:40
Javascript Double Not-Operator(!!)
if (typeof x !=== 'undefined' && x !=== '') {
// not emtpy
}
#!/usr/bin/env python
"""
Check all existing Docker containers for their mapped paths, and then purge any
zombie directories in docker's volumes directory which don't correspond to an
existing container.
"""
import logging
import os
import sys