-
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
-
PhpStorm 8 – New Features http://t.co/l4lo6Z5I5W
PhpStorm 8 – New Features http://t.co/l4lo6Z5I5W — Manuel Gomes (@tryexcept) 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
-
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
-
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
-
Android debugging: adb via tcp
Very simple instructions here on how to debug android apps via tcp.
-
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
-
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
-
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
-
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; }
-
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.
-
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.
-

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…
-

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
-

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.
-
(video) New iPhone 5c, cheap keynote presentation
[youtube http://www.youtube.com/watch?v=ueTVu_1lxB4]
-
Create Chrome Desktop Apps with Sencha ExtJS
Here: http://developer.chrome.com/apps/sencha_framework.html
-

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.