b4r7

piccì

convert for windows

by lelebart on set.18, 2009, under cazzeggi, piccì, siti, tips

Convert is a free and easy to use unit conversion program that will convert the most popular units of distance, temperature, volume, time, speed, mass, power, density, pressure, energy and many others, including the ability to create custom conversions!

Screenshot

convert

System Requirements

Convert will run on the following supported operating systems:

  • Windows 95
  • Windows NT 4
  • Windows 98
  • Windows 98SE
  • Windows ME
  • Windows 2000
  • Windows XP
  • Windows 2003
  • Windows Vista
  • Windows 7
  • Anything that runs Wine (not officially supported) [Convert runs quite well on Linux and UNIX using Wine. If you do this, you may need to change the tab layout to use a single row by going into Options > Preferences > Tabs, and clear the Multiple Lines option]

If your operating system is not listed above, Convert will not run on it.

Download Types

There are two ways to download Convert.

  • ConvertSetup.exe (780kb) is a full InstallShield installation which sets up directories, icons, and supports uninstallation. This download is recommended for most users.
  • convert.zip (153kb) is a ZIP file of just the executable. You can unZIP it with your favorite ZIP tool and just run the executable. This download is recommended for experienced users.

Other Information

Leave a Comment more...

camel case con PHP

by lelebart on ago.10, 2009, under piccì, siti, tips

<?php
$testo = "qualCOSA che vuOI mettere in Camel CASE";
echo ucwords(strtolower($testo)); //Qualcosa Che Vuoi Mettere In Camel Case
?>

strtolower: http://it.php.net/manual/en/function.strtolower.php
ucwords: http://it.php.net/manual/en/function.ucwords.php

Leave a Comment more...

eliminare .svn

by lelebart on mag.03, 2009, under cazzeggi, piccì, tips

Windows:

for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *svn') do (
rd /s /q "%%i"
)

Linux:

find ./ -name .svn -exec rm -rf {} +

Mac (OS 10.5):

find . -name .svn -exec rm -rf {} \;

presi dalla rete e collezionati, non si sa mai. per chi come me è su winzozz, il primo codice basta salvarlo con estensione bat e lanciarlo nella cartella a cui vogliamo togliere le .svn .. con vizta ho dovuto spostarlo in alcune sotto-cartelle. non ho provato su linuz. non ho mc.

Leave a Comment more...

slug_me

by lelebart on apr.30, 2009, under meditazioni, piccì, siti

a better (?) version of toAscii function by Matteo Spinelli

function slug_me($str, $replace=array(), $delimiter='-', $charset='ISO-8859-1') {
$str = iconv($charset, 'UTF-8', $str);
if (!empty($replace)) {    $str = str_replace((array)$replace, ' ', $str);    }
$clean = iconv('UTF-8', 'ASCII//TRANSLIT', $str);
$clean = preg_replace("/[^a-zA-Z0-9\/_|+ -]/", '', $clean);
$clean = strtolower(trim($clean, '-'));
$clean = preg_replace("/[\/_|+ -]+/", $delimiter, $clean);
return $clean;
}
Leave a Comment more...

shitbox!

by lelebart on apr.26, 2009, under cazzeggi, piccì, vaneggi, varie

shitbox-homepage
se sta nascendo un “piccolo giacomo” inatteso… (il -ehm- logo si chiama appunto ‘Little Jack’)
strano che la Littizzetto non l’abbia ancora notato.. o se l’ha fatto non me ne sono accorto! beh appena, se, la vedrò a che tempo che fa che ne parlerà, sarò proprio curioso di vedere la faccia di Fazio! sempre che non abbia già trattato l’argomento..

Shit Box is a lightweight portable cardboard toilet, made specifically for outdoor use. The box pops up from a convenient 14 inch flat pack to a rigid, reusable, comfortable toilet. Each box comes with ten degradable poo bags.

via: http://www.thebrowncorporation.com/

bene.. e ora che ora google ha associato le parole cacca, pupù, merda e shit a luciana littizzetto, fabio fazio e che tempo che fa, dovrei un numero sporpositato di visite, no? e chi credesse di aver trovato l’abbinamento littizzetto-merda o fazio-merda, beh si sbaglia! lucianina cara e fabio caro, ve vojo ben, siete dei grandi!

PS: a chi portei inviare questa sottospecie di “articolo”? a pusatilla!! siiiiiiiiiiiiii

Leave a Comment more...