miércoles, 29 de enero de 2014

Sign your EXE file

I need to try this in the following days because I don't want to pay for a public certificate and I also need to avoid any Antivirus program keep saying that my app is a virus.

 
security - How do I create a self-signed certificate for code signing on Windows? - Stack Overflow
 
 
Clip Betterhttp://stackoverflow.com/questions/84847/how-do-i-c…
 
View Now
 




martes, 28 de enero de 2014

Android tcpDump


Very cool way for listening packages on Android devices and export them to analyze using other software like Wireshark.

 
Android tcpdump & Wireshark: Capture Wifi packets & Data
 
In my dsploit video (which you can find here: https://www.youtube.com/watch?v=HrQl1cG2Hq0) I demonstrated a feature of the app that allows you to capture wif...
 
Clip Betterhttp://www.youtube.com/watch?feature=em-uploademail…
 
View Now
 



Scroll Reveal (Javascript)

Cool effect for displaying text and graphics with a nice animation effect.
It makes your site very dynamic.

 
julianlloyd/scrollReveal.js
 
scrollReveal.js - Declarative on-scroll reveal animations.
 
Clip Betterhttp://github.com/julianlloyd/scrollReveal.js
 
View Now
 



sábado, 18 de enero de 2014

How to Use Steam OS using Virtual Box


 
Install Steam OS via Virtual Box
 
Valve recently opened up their new gaming platform, Steam OS, to the public. Now, whether or not you think it's worth the time or effort to install is on thi...
 
Clip Betterhttp://www.youtube.com/watch?feature=em-uploademail…
 
View Now
 


lunes, 13 de enero de 2014

C# Http Server

I was searching around in all the Http Servers you can find for C# and nothing was as simple as I wanted. Also the source I was looking for must include 100% customization because I needed to apply some complicated stuff and more...

So, the best I could find is this one I'm sharing today. Hope you can find it useful for your projects :-)

 
Simple HTTP Server in C# - CodeProject
 
Threaded synchronous HTTP Server abstract class, to respond to HTTP requests; Author: David Jeske; Updated: 24 Mar 2013; Section: Internet / Network; Chapter: General Programming; Updated: 24 Mar 2013
 
Clip Betterhttp://www.codeproject.com/Articles/137979/Simple-H…
 
View Now
 
Clip Better
Get it now

Install Ubuntu in your Android Device (temporary or permanent)


 
Run Ubuntu 13.10 on Android
 
How would it feel to have the power of a desktop operating system in the palm of your hands? Well, it would feel very good and you can experience it for your...
 
Clip Betterhttp://www.youtube.com/watch?feature=em-uploademail…
 
View Now
 
Clip Better
Get it now

martes, 7 de enero de 2014

Google Drive (Android and Javascript)

All started with a bug in Google's Developer Console. They are making some changes there and they're also mixing some old information with the new one.

Technical support is free but not for the most important stuff. If you want real phone support you need to pay $150 montly (too much for a simple developer who has an issue like this one once in a year I guess)

So, I was not able to define my API access for using Google Drive API form Android (I need to browse all the files from a user and when he/she selects a file I need to download that file to the Android phone).

I can not use another package name and SHA-1 combination because I already have this app uploaded on Google Play and don't want to create a new app just because of this error!

So, resuming: I can not use the Android's Drive API! So I figure what if I use the Javascript API for Drive from Android? Sure that's possible! I have a beautiful WebView I can use... So let's see the code:

1) First you need the HTML in your server (you can also try using this HTML inside your Android's code but I didn't test that)
  • This HTML will cover the following functionality for using Google Drive API:
  • a) Check if my App (defined in the Google's Developer Console) has permission for browsing this user's files in Drive.
  • b) List all the files I want from this user's account.
  • c) Tell me about the selected URL and the file name to download on the Android phone.

2) Then you need a webView in your Android app and some smart ideas :-)

I let you here a link to my Google Code repository so you can download and try yourself if it's what you are looking form


This is something I'll use from now on. Because this gives me more freedom to change the project properties in my Drive API configuration without changing anything in my Android API key or something...