generic
ObjectiveC – Power of “AT Sign” aka “@”
The at sign @ is also commonly called the at symbol or commercial at in English—and less commonly a wide range of other terms.
he fact that there is no single word in English for the symbol has prompted some writers to use the French arobase or Spanish arroba—or to coin new words such as asperand, ampersat—but none of these have achieved wide currency.
[WP7] The Last Two – for Windows Phone
The Last Two
Sei proprio sicuro di conoscere tutte le parole della lingua italiana?
[Objective-C] Change default status bar content
Power of screenshot!!
Simply, make a screenshot of your app and render the frame f your captured image, adding the UI components that you want.
Very easy.
[BASH] Create big file (custom) size
This create a 15Mb file. For any use.
[code lang=”bash” autolinks=”false” collapse=”false” firstline=”1″ gutter=”true” htmlscript=”false” light=”false” padlinenumbers=”false” smarttabs=”true” tabsize=”4″ toolbar=”false”]dd if=/dev/random of=BigFile.dat bs=1500000 count=10[/code]
[WP7] Certification Test Results
Microsoft play my game, Apple do the same?
[OSX-SHELL] Get Memory Informations
A simple python script to get your RAM status faster on MAC OSx.
[PHP] A custom ENUM
PHP has not enum, but there is a simple way to simulate it, using Class in php5.
I like to use this structure:
[Objective-C] Get UIWebView html page size
A trick to get size and apply resize or other effects on your view.
Set your UIWebView delegate and create finishLoad method.
After that, using javascript, get document.height of your view and do what you want.