There are no events to show at this time.
-
LifeStreaming...
-
:)
March 16th, 2010Category: MyLife, Programming | No Comments
-
Preview d’Intelligent HomeScreen de Larva Labs /fr/
December 14th, 2009Larva Labs l’avais annoncé sur leur site il y a maintenant quelques mois, Intelligent HomeScreen, leur prototype de Home sur Android, est maintenant disponible en beta privé.

Ecran principal d’HomeScreenLarva Labs propose un écran d’accueil intelligent qui crée une hiérarchie à partir des informations utilisateur. Semblable au système de notifications d’Android, HomeScreen propose d’agencer et de hiérarchiser les différentes informations du téléphone ; Appel manqués, SMS, Compte Gmail, Calendrier… ainsi que différents flux d’informations ; pour l’instant Google Reader, la Bourse et Twitter.
Tags: android, beta, french post, home, larvalabs, prototype
Category: Virtual | No Comments -
The Google Story
December 8th, 2009The Google Story from Nick Scott Studio on Vimeo.
Category: Virtual | No Comments
-
SFR M! Pocket on ADB
September 30th, 2009SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="d00d", MODE="0666", OWNER=$USERNAME, GROUP="users"Tags: android, linux, snippet
Category: Programming, Snippets | 1 Comment -
Separator like ListView in View
July 30th, 2009<View android:layout_width="fill_parent" android:layout_height="1dp" android:background="?android:attr/listDivider" />Tags: android, snippet
Category: Programming, Snippets | No Comments -
Android: Set transbg w/ custom amount
June 26th, 2009Android Manifest
android:theme="@android:style/Theme.Translucent.NoTitleBar"Class Activity
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
WindowManager.LayoutParams lpWindow = new WindowManager.LayoutParams();
lpWindow.flags = WindowManager.LayoutParams.FLAG_DIM_BEHIND;
lpWindow.dimAmount = 0.65f;
lpWindow.windowAnimations = android.R.anim.fade_in | android.R.anim.fade_out;
getWindow().setAttributes(lpWindow);
setContentView(R.layout.main);
}Tags: android, java, snippet
Category: Programming, Snippets | No Comments -
Android ADB on linux
March 24th, 2009Create or edit file :
emacs /etc/udev/rules.d/50-android.rulesAdd line :
SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", ATTR{idProduct}=="0c02", MODE="0666", OWNER="<add login>", GROUP="users"Tags: android, linux, snippet
Category: Programming, Snippets | No Comments -
Create new Git remote repository
March 2nd, 2009On Git server
Connect on server$ ssh remote@server.sshCreate project directory
$ mkdir project.git && cd project.gitInit Git repository
$ git --bare initThe remote repository is finish
$ exitTags: git, linux, snippet
Category: Programming, Snippets | No Comments -
Hello World
March 1st, 2009hello_world
Category: MyLife | No Comments

