Posts

Showing posts from March, 2012

APN para Movistar Argentina

Por si a alguien le sirve Para Datos: APN: wap.gprs.unifon.com.ar User: wap Pass: wap Para Internet: APN: internet.gprs.unifon.com.ar User: internet Pass: internet Hoy (29/3/12) funcionan

git: Syncing local and remote (with deleted) branches git

Sometimes, you delete a branch and if you run git branch -a it still listed under /remote. One way to sync your local branches is to execute the following: git fetch -p After fetching, will remove any remote-tracking branches which no longer exist on the remote. from man git-fetch

git: diff files in different branches

git difftool somebranch:UNREADME otherbranch:README from stackoverflow

git: delete local and remote branch

Delete local branch "serverfix": git branch -d serverfix Delete remote branch "serverfix": git push origin :serverfix progit.org

Kivy, an open source library for rapid app develop

Image
Kivy is an open source software library for rapid development of applications equipped with novel user interfaces, such as multi-touch apps. Cross Platform: Runs on Linux, Windows, MacOSX, Android and IOS. It can use natively most inputs protocols and devices like WM_Touch, WM_Pen, Mac OS X Trackpad and Magic Mouse, Mtdev, Linux Kernel HID, TUIO. A multi-touch mouse simulator is included. Business Friendly: It is 100% free to use, under LGPL 3 licence. The framework is stable and has a documented API, plus a programming guide to help for in the first step Gpu Accelerated: The graphics engine is built over OpenGL ES 2. The toolkit is coming with more than 20 widgets designed to be extensible. Many parts are written in C using Cython, tested with regression tests. Homepage: Kivy.org   Images and info from kivy official site

Script to open Ninja ide from Terminal and minimize the calling Terminal

Create a file with sh extension with the following code #!/bin/sh /usr/bin/osascript -e 'tell application "System Events" to click (first button of (first window of (application process "Terminal")) whose role description is "minimize button")' python /Users/carpincho/Dev/ninja-ide/ninja-ide.py Just edit the apps names with the ones you like.