try {} except

Twitter
  • Basic Comparison of C# and Apple Swift Programming Language Syntax http://t.co/OxMZOICuDm

    Basic Comparison of C# and Apple Swift Programming Language Syntax http://t.co/OxMZOICuDm — Manuel Gomes (@tryexcept) June 7, 2014

    Read more

    June 7, 2014
  • PhpStorm 8 – New Features http://t.co/l4lo6Z5I5W

    PhpStorm 8 – New Features http://t.co/l4lo6Z5I5W — Manuel Gomes (@tryexcept) June 6, 2014

    Read more

    June 6, 2014
  • Custom Translucent Android ActionBar http://t.co/K0mSymw4Uy

    Custom Translucent Android ActionBar http://t.co/K0mSymw4Uy — Manuel Gomes (@tryexcept) June 6, 2014

    Read more

    June 6, 2014
  • The PHP Framework For Web Artisans. http://t.co/I5KPiMQFyO

    The PHP Framework For Web Artisans. http://t.co/I5KPiMQFyO — Manuel Gomes (@tryexcept) June 2, 2014

    Read more

    June 2, 2014
  • Free Download : Business Vector Icon Set http://t.co/7Kp6yE10qd

    Free Download : Business Vector Icon Set http://t.co/7Kp6yE10qd — Manuel Gomes (@tryexcept) June 2, 2014

    Read more

    June 2, 2014
  • Android debugging: adb via tcp

    Very simple instructions here on how to debug android apps via tcp.

    Read more

    May 31, 2014
  • New Android Studio is out!

    New Android Studio is out! http://t.co/5yumHUIRls — Manuel Gomes (@tryexcept) May 31, 2014 via Twitter http://ift.tt/1tuJXWO May 31, 2014 at 04:53AM

    Read more

    May 31, 2014
  • Huge Vector Graphics Bundle Full of Useful Elements

    Huge Vector Graphics Bundle Full of Useful Elements http://t.co/UdBoqjFVm2 — Manuel Gomes (@tryexcept) May 30, 2014 via Twitter http://ift.tt/1tuJXWO May 30, 2014 at 08:18PM

    Read more

    May 30, 2014
  • Xamarin: Design an app for Windows, iOS and Android … from one codebase?

    Xamarin: Design an app for Windows, iOS and Android … from one codebase? http://t.co/zWE5Jc3Ztq — Manuel Gomes (@tryexcept) May 30, 2014 via Twitter http://ift.tt/1tuJXWO May 30, 2014 at 07:40PM

    Read more

    May 30, 2014
  • Quicky check if Data connection is available (Android SDK)

    Just use the following method: public boolean isOnline() { boolean status=false; try{ ConnectivityManager cm = (ConnectivityManager) getActivity() .getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo netInfo = cm.getActiveNetworkInfo(); status=netInfo.isConnected(); }catch(Exception e){ e.printStackTrace(); return false; } return status; }

    Read more

    May 17, 2014
  • Android Toasts (e.g. small notifications), how to use in Fragments

    The syntax is very simple. The example below is invoked from inside a Fragment, so the first parameter (Context) is the activity that holds the fragment: Toast.makeText(getActivity(),R.string.asset_added_fav,Toast.LENGTH_SHORT).show(); The second parameter is the message, the third is the duration, Toast.makeText returns an instance of Toast, that we “.show()” immediately.

    Read more

    May 15, 2014
  • Web page structure, speed and general testing online

    I use this one very often. Very good, fast and compreensive tests, spanning various platforms and browsers: WebPagetest – Website Performance and Optimization Test.

    Read more

    April 14, 2014
  • OpenSSL CVE-2014-0160 “heartbleed” online test page

    OpenSSL CVE-2014-0160 “heartbleed” online test page

    Here it is, online test for the CVE-2014-0160 by Filippo Valsorda. Test all your server ports that are in some way being served via SSL, not only the HTTPS 443 port: every service that is using OpenSSL are potentially vulnerable, not only Apache. These include 993 (POP3/SSL), 995 (POP3/SSL) or 465 (SMTP/SSL). You must test…

    Read more

    April 13, 2014
  • FTP file upload using CURL

    FTP file upload using CURL

    The command is very very simple: just type curl -T localfile.ext ftp://username:[email protected]/remotedir/ If you want to use a different destination filename just add it at the end: curl -T localfile.ext ftp://username:[email protected]/remotedir/remotefile.zip

    Read more

    November 13, 2013
  • node.js app as a Daemon/Service

    node.js app as a Daemon/Service

    Charlie Robbins wrote a nice article on how to run your node.js permanently. Find the full article on nodejitsu.

    Read more

    October 3, 2013
  • (video) New iPhone 5c, cheap keynote presentation

    [youtube http://www.youtube.com/watch?v=ueTVu_1lxB4]

    Read more

    September 28, 2013
  • Create Chrome Desktop Apps with Sencha ExtJS

    Here: http://developer.chrome.com/apps/sencha_framework.html

    Read more

    September 25, 2013
  • Fast(er) Android 4.1.1 emulator how-to

    Fast(er) Android 4.1.1 emulator how-to

    A small, but effective, guide on how to quickly setup the Android Emulator using the x86 images (not the painfully slow ARM emulation) and GPU.

    Read more

    October 12, 2012
←Newer Posts Older Posts→

try {} except

Proudly powered by WordPress