Skip to content

Instantly share code, notes, and snippets.

View cstroie's full-sized avatar

Costin Stroie cstroie

  • Bitdefender
  • Bucharest, Romania
View GitHub Profile
@cstroie
cstroie / gist:2350707
Created April 10, 2012 11:35
Slugsy mail
#!/bin/sh
# Simple mail(1) replacement
# Software name and version
SWNAME="Slugsy-mail"
SWVER="0.1"
SWSIG="${SWNAME}/${SWVER}"
# From
FROM="`hostname -s`@`hostname -d`"
@cstroie
cstroie / recode.sh
Created December 28, 2011 12:12
Recode MP3 files with normalization
#!/bin/bash
#
# recode
#
# Copyright 2011 Costin STROIE <[email protected]>
#
@cstroie
cstroie / mmch.sh
Created December 28, 2011 12:09
MMCH comverter to MP4
#!/bin/bash
D="output"
mkdir -p "$D"
if [ ! "$1" ]
@cstroie
cstroie / picasaweb_downloader.py
Created December 19, 2011 18:45
Download all the photos of a PicasaWeb album at specified resolution
#!/usr/bin/env python
#
# picasaweb_downloader.py
#
# Copyright 2011 Costin STROIE <[email protected]>
#
# This file is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
@cstroie
cstroie / ng_pod.py
Last active September 28, 2015 21:18
National Geographic's Picture of the Day downloader
#!/usr/bin/env python
#
# ng_pod.py
#
# Copyright 2011 Costin STROIE <[email protected]>
#
# NG_PoD is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.