Prelibatezze natalizie

Personal, Various No Comments »

Ciao a tutti,
la sorella di una mia collega è proprietaria di una pasticceria di Mantova e sta vendendo queste prelibatezze. Se siete interessati, contattatemi!!
Questo è; quello che mi ha scritto:

“ - 15,00 Euro:
  quadretto in cioccolato
 quadro in cioccolato con disegno fatto a mano su foglio in pasta di mandorle, con scrittta o nominativo; 15,00 euro al pezzo completo di scatola.jpgQUADRO e PORTACORNICE IN CIOCC. FOND CON SERIGRAFIA 15,00 EURO AL PEZZO COn SCATOLA; puo essere  normale, senza zucchero, senza uova, senza latticini.jpgesempio 1 di disegno dipinto a mano.jpgesempio 2 di disegno dipinto a mano.jpgesempio 3 di disegno dipinto a mano.jpgesempio 4 di diesegno dipinto a mano.jpgesempio 5 di disegno dipinto a mano.jpgesempio 6 di disegno dipinto a mano.jpg
 porta quadretto
  scatola trasparente con cartoncino base oro
  opzioni decorazione : avvertire se si vuole colorata tipo rame, altrimenti è a discrezione del gusto estetico mio!
                        O serigrafia (il disegno è quello)
                        o decoro dipinto a mano (in questo caso viene dipinto con colori alimentari un soggetto definito su un foglio di pasta di mandorle con zucchero e va specificato se lo si vuole senza uova o senza latticini se c’è questo problema, i senza zucchero non possono essere dipinti a mano)
   opzione cioccolato: fondente, al latte, bianco
   opzione categorie: cioccolato normale, senza uova, senza latticini (solo fondente), senza zucchero (solo fondente o latte)

 
- 25,00 euro
  pentola con manico e coperchio
2500-euro-compresa-di-scatola-pentola-con-manico-in-cioccolato-al-latte-o-fondente-o-senza-zucchero-o-senza-uova-o-senza-latticini.jpg
  scatola trasparente
  colorazione facoltativa esterna in rame (già compresa nel prezzo)
  opzione cioccolato: fondente, al latte, bianco
  opzione categorie: cioccolato normale, senza uova, senza latticini (solo fondente), senza zucchero (solo fondente o latte)

 
- 25,00 euro
  pentola aperta con anelli e cucchiaio
2500-euro-con-scatola-inclusa-pentola-aperta-con-cucchiaio-in-cioccolato-fondente-o-al-latte-o-senza-zucchero-o-senza-uovo-o-senza-latticini.jpg
  scatola trasparente tonda
  colorazione facoltativa in rame (già compresa nel prezzo)
  opzione cioccolato: fondente, al latte, bianco
  opzione categorie: cioccolato normale, senza uova, senza latticini (solo fondente), senza zucchero (solo fondente o latte)

- 30,00 euro
pentola con coperchio e manico o aperta con anelli e cucchiaio
30,00 euro pentola aperta .jpg30,00 euro pentola con manico.jpg
con l’aggiunta di numero nove cioccolatini scelti a nostra discrezione oppure 13 biscotti per la pentola aperta con cucchiaio o 11 biscotti per la pentola chiusa con manico (nel caso del ripieno della pentola con coperchio e manico il coperchio viene fissato semiaperto come in figura

attenzione i quadretti vengono fissati al porta cornice salvo diversa indicazione…

 
Tutela legale: le foto sono solo a puro scopo dimostrativo”

New site and new pictures!!!

Internet, MyBlog!, Personal, Various No Comments »

Ok i’m back :-)

As you can see, I’ve just finished to update my web-site! Now you can find a new web-gallery for the photos, with the possibility to comment every picture! So, what are you waiting for?? GO COMMENT :-)

I added also many photos of those days! I suggest to see the Leo’s Birthday Party!!

Tn-Leo Birthday 049

Halloween 2006!

Humor, Personal 1 Comment »

I know, I’m in late but only now I have the picture of the crazy night of Halloween @ Fellini! Check the pictures!!! :-)

fellini_th

AppleScript: copy current song lyric to a file

Apple No Comments »

Another AppleScript! This time is for copying the lyrics of the current playing song in iTunes to a file. I use this with Proxy, a useful program that can bind actions to keys and show result/doing something with apps/etc. I’ve configured it to display a screen box with the lyric of the song (readed from the file created by this script) just by pressing Control+2 :-)

A screenshot:
screen_apple_script

The script:
on write_to_file(this_data, target_file, append_data)
try
set the target_file to the target_file as text
set the open_target_file to ¬
open for access file target_file with write permission
if append_data is false then ¬
set eof of the open_target_file to 0
write this_data to the open_target_file starting at eof
close access the open_target_file
return true
on error
try
close access file target_file
end try
return false
end try
end write_to_file
tell application “iTunes”
copy (get name of current track) to trackName
copy (get artist of current track) to trackArtist
copy (get lyrics of current track) to tracklyric
end tell

set this_story to trackName & ” – ” & trackArtist & return & tracklyric
set this_file to (((path to desktop folder) as text) & “MyLir”)
my write_to_file(this_story, this_file, false)

AppleScript: automatic iSync

Apple No Comments »

Let’s start a new section of my website! In those days I’m looking at the AppleScript and I found that it’s really powerful and integrated in OSX!!

This script I made is for automatically open iSync, syncronize all the devices and close it, notifying the result in a Growl box!
I’m using it with cron twice a day, so I don’t have to remind to sync… :-)
Enjoy it!

tell application “iSync”
synchronize
repeat
delay 5
if syncing is true then exit repeat
end repeat
repeat
delay 5
if sync status = 2 then exit repeat
end repeat
delay 1
set lastdate to last sync
quit
end tell

tell application “GrowlHelperApp”
Make a list of all the notification types
that this script will ever send:
set the allNotificationsList to ¬
{“Finito”}

Make a list of the notifications
that will be enabled by default.
Those not enabled by default can be enabled later
in the ‘Applications’ tab of the growl prefpane.
set the enabledNotificationsList to ¬
{“Finito”}

Register our script with growl.
You can optionally (as here) set a default icon
for this script’s notifications.
register as application ¬
“MySyncNow” all notifications allNotificationsList ¬
default notifications enabledNotificationsList ¬
icon of application “Script Editor”

Send a Notification…
notify with name ¬
“Finish” title ¬
“Sync N80 Ended” sticky yes description ¬
“Sync ended @ ” & lastdate application name “MySyncNow”
end tell