Monthly Archive for May, 2010

Búvárcsülök

A mellékelt ábrán látható példány cirka 25 órán át sült, de ettől persze sokkal kevesebb idő alatt előállítható a dolog (a 25 órát a nedves fa és a nem eléggé felfűtött kemence tette szükségessé).

Ez az adag így készült:

A hentes csontfűrésszel jó kétujjnyi szeletekre vágta a csontos csülköket. A szeletekhez csináltam egy szószt: só, bors, rozmaring, olívaolaj, sör, fokhagyma került a turmixgépbe. A folyós turmixba bemártogattam a szeleteket és ráfektettem az előzőleg a tepsibe rámolt zöldségágyra, mely ezúttal petrezselyemből, sárgarépából, héjas krumpliból, paprikából és hagymából állt. A zöldségek is kaptak egy kevés sót, az egész miskulancia még sok-sok rozmaringot, majd öntöttem alá pár doboz sört és ment be a kemencébe.

Dormi

ISO 800 / f1.4-gyel sem könnyű megfogni a kis dögöt egyelőre - talán majd ha alszik. Stay tuned.

Vacsora

Mezei rántott hal volt:

Hanem a saláta: újhagyma, koktélparadicsom, mozzarella, bazsalikom, tépősaláta, zsenge spenót, rucola, zöldpaprika. No és az öntet, Tibi barátom agymenése: olívaolaj, méz, só, bors, fokhagyma, kapor, joghurt.

A három együtt kihagyhatatlan - ha nem volt még meg ez a kombináció, feltétlen tégy egy próbát, megéri!

Pár perce megettem egy békát:

Cicoid v5 preview

Az egyik kis vörös hamarosan beköltözik Forest mellé:

Cicoid v5 - preview from Gabor Penoff on Vimeo.

Meteo script update

Tavaly írtam még ezt a pici AppleScriptet, ami leszedi a koponyeg.hu és az idokep.hu site-ok időjárás-vizualizációs képeit és feldobja a monitorodra full screenben az OS X Quick Look-ja segítségével (slight keyboard hack, de megy). A site-ok frissültek, eljött az update ideje is: mostantól nem nyakló nélkül jpg-nek ment a script mindent, hanem amire utasítod. Ennek köszönhetően pl. az idokep.hu széltérkép animgif-je animgif marad és teljesen jól mutatja a felhőtérkép után pakolva, hogy merre visszi a szél az előző képen látható felhőket (ma pont jól is jön).

Lustáknak a script app-ba fordítva, zip-be csomagolva itt, magyar billentyűzethez itt, a forrás meg alant (a script a ~/Pictures könyváradban létre fog hozni egy delme-meteo nevű foldert, amibe a leszippantott képeket menti. Ezt a foldert törli és létrehozza minden alkalommal újra és újra.):

(*
	Meteo
	by Gabor PENOFF (http://fns.csokolade.hu)
 
	release 20100516-1002
 
	Requirements:
	- before run you need to Enable Access for Assistive Devices in SysPrefs/Universal Access
	- install Growl from http://growl.info to get non-modal notification dialogs
 
	Usage:
	- just run the script
 
	That's all.
*)
 
set myScriptID to "Meteo" -- ID for Growl display
 
-- set date variables:
set myYear to get text 1 thru 4 of (year of (current date) as string)
set myMonth to month of (current date) as number
if myMonth < 10 then set myMonth to "0" & myMonth as string
set myDay to day of (current date)
if myDay < 10 then set myDay to "0" & myDay as string
set myHour to hours of (current date)
if myHour < 10 then set myHour to "0" & myHour as string
set myMinute to "00"
 
set tmpDir to "delme-meteo"
set myFilePrefix to "delme-met-"
set tIdokepStart to "http://www.idokep.hu/arch_kep.php?kep="
 
set myURLs to {¬
	"http://img.koponyeg.hu/img/15napos/" & myYear & "/" & myMonth & "/1_" & myYear & "-" & myMonth & "-" & myDay & "grafikon.png|png", ¬
	"http://terkep.idokep.hu/kep.php?kep=mix|jpg", ¬
	"http://terkep.idokep.hu/kep.php?kep=hoterkep2&regio=hu1680|jpg", ¬
	"http://terkep.idokep.hu/kep.php?kep=felhokep2&regio=hu1680|jpg", ¬
	"http://terkep.idokep.hu/kep.php?kep=szelterkep2_anim|gif", ¬
	"http://terkep.idokep.hu/kep.php?kep=szelterkep2&regio=hu1680|jpg", ¬
	"http://terkep.idokep.hu/kep.php?kep=legnyomasterkep|jpg", ¬
	"http://feny.idokep.hu/kep.php?kep=csap24|jpg", ¬
	"http://feny.idokep.hu/kep.php?kep=csap1|jpg", ¬
	"http://feny.idokep.hu/kep.php?kep=aqua|jpg", ¬
	"http://terkep.idokep.hu/kep.php?kep=rh|jpg", ¬
	"http://terkep.idokep.hu/kep.php?kep=uv|jpg", ¬
	"http://terkep.idokep.hu/kep.php?kep=pollen0|jpg"}
 
set rootDir to (path to home folder as string) & "Pictures"
tell application "Finder" to set fullDir to rootDir & ":" & tmpDir -- save fullDir
 
set myNotification to "Downloading METEO images to " & fullDir & "..."
tell me to notifyWithGrowl(myScriptID, myNotification)
 
try
	tell application "Finder" to delete fullDir
end try
 
tell application "Finder" to make new folder at alias rootDir with properties {name:tmpDir}
 
-- download files:
tell application "URL Access Scripting"
	set i to 1
	repeat with myURL in myURLs
		set thisURL to (text 1 thru ((offset of "|" in myURL) - 1) of myURL)
		set thisExt to (text ((offset of "|" in myURL) + 1) thru (length of myURL) of myURL)
		set the myFile to fullDir & ":" & myFilePrefix & i & "." & thisExt
		download thisURL to file myFile replacing yes
		set i to i + 1
	end repeat
end tell
 
-- display images using full-featured QuickLook window:
tell application "Finder"
	activate
	open folder fullDir
	set current view of front Finder window to list view
end tell
 
tell application "System Events"
	key code 0 using {command down} -- cmd+a
	key code 6 using {command down, option down} -- cmd+opt+y; y is 16 for US, 6 for Hungarians :)
end tell
 
-- that would be the callback after QuickLook:
--tell application "Finder"
--	activate
--	set current view of front Finder window to v
--	close front Finder window
--end tell
 
-- display images using a very limited (dumb) QuickLook window:
--do shell script "qlmanage -p  " & (POSIX path of fullDir) & "/* >& /dev/null"
 
-- GrowlCheck:
on growlInstalled()
	try
		do shell script "ls /Library/PreferencePanes/Growl.prefPane/"
		return true
	on error
		return false
	end try
end growlInstalled
 
-- Growl notifier:
on notifyWithGrowl(myApp, myText)
	set myIconApp to "Preview"
	set notificationID to myApp & ".default"
 
	if growlInstalled() then
		tell application "GrowlHelperApp"
			-- list of notification types
			set the ANL to {notificationID}
			-- list of enabled notifications
			set the DNL to {notificationID}
 
			-- register script
			register as application myApp all notifications ANL default notifications DNL icon of application myIconApp
			-- send notification
			notify with name notificationID title myApp description myText application name myApp
		end tell
	else
		-- skip alert if no Growl installed
		--display alert "Growl is not installed"
	end if
end notifyWithGrowl

Szájkarate summary

Steve Jobs/Apple vs. Ryan Tate/Gawker olvasnak egymás fejére ebben a postban. Megy a flame rendesen, a nagy részét nem is kommentálnám - Jobs utolsó bekezdése azonban nekem is sokszor eszembe jut, valahányszor szembe találom magam egy-egy nagyhangú szitkozódóval:

By the way, what have you done that's so great? Do you create anything, or just criticize others work and belittle their motivations?

To all whom it may concern

Srácok, sajnálom, hogy nem értetek ide. Ez volt a menü, vihar után közvetlenül:

Ez elment vadászni…

A bolygó 2010 május 2-án 17:00-kor és benne Baja

Elkészült a The New York Times fotóblogján a nagyszabású project, amibe anno én is készítettem egy nyugis képet. Egy kupacba tolták a felhívásukra ugyanabban a percben készített fotókat, lehet őket böngészni órákon át. Az eFis képre klikkolva nyílik a Flash app, amiben mindezt megteheted:

Baja-pic-on-new-york-times