Marius van Witzenburg We fight for our survival, we fight!

17Jul/113

How to download sexdumpert.nl photo’s or video’s with a simple Bash script

Posted by mariusvw

Here is the simple script which downloads all photos from sexdumpert.nl

Just save the file as run.sh in a directory and run it. It will save all photos found.

#!/bin/bash
 
if [ ! -d 'files' ]
then
    mkdir files
fi
 
for ((a = 0; a <= 999; a++))
do
    ca=`printf "%03d" $a`
    for ((b = 0; b <= 999; b++))
    do
        cb=`printf "%03d" $b`
        for ((c = 0; c <= 999; c++))
        do      
            cc=`printf "%03d" $c`
            for ((d = 0; d <= 999; d++))
            do      
                cd=`printf "%03d" $d`
 
                url="http://mediadata.sexdumpert.nl/$ca/$cb/$cc/$cd.jpg"
                echo $url
                /usr/bin/curl $url -o "files/$ca-$cb-$cc-$cd.flv"
 
            done    
        done    
    done    
done

Here is the simple script which downloads all video's from sexdumpert.nl

Just save the file as run.sh in a directory and run it. It will save all video's found.

#!/bin/bash
 
if [ ! -d 'files' ]
then
    mkdir files
fi
 
for ((a = 0; a <= 999; a++))
do
    ca=`printf "%03d" $a`
    for ((b = 0; b <= 999; b++))
    do
        cb=`printf "%03d" $b`
        for ((c = 0; c <= 999; c++))
        do      
            cc=`printf "%03d" $c`
            for ((d = 0; d <= 999; d++))
            do      
                cd=`printf "%03d" $d`
 
                url="http://mediadata.sexdumpert.nl/$ca/$cb/$cc/$cd.flv"
                echo $url
                /usr/bin/curl $url -o "files/$ca-$cb-$cc-$cd.flv"
 
            done    
        done    
    done    
done

Hope this for fills some people their needs ;-)

Geëtiketeerd als: , , , , , 3 Reacties
14Jul/110

Convert pipe diameters from Inches, DN (Diametre Nominal) and mm (Millimeter)

Posted by mariusvw

Pipe is made of a wide variety of materials - like galvanized steel, black steel, copper, cast iron, concrete, and various plastics such as ABS, PVC, CPVC, polyethylene, polybutylene and more.

Pipes are identified by "nominal" or "trade" names that are loosely related to the actual dimensions. For instance, a 2-inch galvanized steel pipe has an inside diameter of about 2 1/8 inches and an outside diameter of about 2 5/8 inches.

In plumbing pipe size is referred to as nominal pipe size - NPS, or "Nominal Pipe Size". The metric equivalent is called DN or "diametre nominel". The metric designations conform to International Standards Organization (ISO) usage and apply to all plumbing, natural gas, heating oil, and miscellaneous piping used in buildings. The use of NPS does not conform to American Standard pipe designations where the term NPS means "National Pipe Thread Straight".

Convert the pipe diameters with the inner and outer diameter in millimeters, the inner surface and wall thickness.

Related links:
NPS - 'Nominal Pipe Size' and DN - 'Diametre Nominal'
Difference between Pipes and Tubes

Geëtiketeerd als: , , , , , , Geen reacties
14Jun/110

A whistle case for my girlfriends sister. Hand made :-)

Posted by mariusvw

When you give a whistle to someone, you can't give it without a case... So we thought, lets make one our selves...

We had to make it for a Tony Dixon Low D whistle (DX102).

Below you see the pictures from the start till finish :-)

We gave it to her as a Christmas present, she really liked it :-D

As an extra to cheer up the whistle we added a feather bound to wool to attach to the pipe of the whistle. You can see some images here.

We bought this whistle at the Celtic Shop.
They have a lot of other instruments as well... You should take some time to look around if you are into music ;-)

Geëtiketeerd als: , , , , Geen reacties