Category Archives: Medium Technical

Deserializing JSON on .NET

Hello, You can use the .Net classes that come with the framework “System.Web.Script.Serialization” that are a pain on the ass to understand. But if you do you can go with it… Should be something like: Dim serializer As New JavaScriptSerializer() … Continue reading

Posted in .Net Coding, Medium Technical | Tagged , , , , , , , | Comments Off on Deserializing JSON on .NET

Baseband Fucked: a “working” fix for greyed out WIFI and Bluetooth on the iPhone

Hello, If you have this problem you can follow the “Apple official solution”; that is to reset your network settings, but…. To simple to work, don’t it?  Or try the next one that is to restore your iPhone and update/reload … Continue reading

Posted in iOS, Medium Technical | Tagged , , , , , , , , , , , , , , , , | Comments Off on Baseband Fucked: a “working” fix for greyed out WIFI and Bluetooth on the iPhone

How to run applications from console on the iPhone

Hello, If the application is a terminal application just do this: CD /Applications/Appname.app ./Appname But if the application is GUI application; you will need a Cydia package named “open”, so search for it on Cydia, install it, and then on … Continue reading

Posted in iOS, Medium Technical | Tagged , , , , , , , , | Comments Off on How to run applications from console on the iPhone

How to install .deb on the iPhone on SSH

Hello, Just send the file to your device and then run: dpkg -i nameofpackage.deb (Restart or re-spring maybe is needed…) Source: http://installpaidappsfree.blogspot.com.es/2013/02/how-to-install-deb-file-iphoneipodipad.html Regards, AC

Posted in iOS, Medium Technical | Tagged , , , , | Comments Off on How to install .deb on the iPhone on SSH

Change the default traffic route on Windows

Hello, If you have multiple network cards, multiple connections to internet or you are using a VPN and you want that some of your traffic goes out by  using  a specific interface; then you will need the “route” command! As … Continue reading

Posted in Medium Technical | Tagged , , , , | Comments Off on Change the default traffic route on Windows

Find a String on Windows – FINDSTR

Hello, If you are a Windows user and need to find a string on a very long txt file, welcome to findstring! I have years working with dos/windows and never heard about it… but is there! findstr “some string” bigfile.txt>filteredfile.txt … Continue reading

Posted in Learned Today, Medium Technical | Tagged , , , | Comments Off on Find a String on Windows – FINDSTR

Copy & Paste on Remote Desktop

Hello, Problems with copy & paste on RDP? Just kill “rdpclip.exe” and run it again… Solved 🙂 Regards A.C.

Posted in Medium Technical | Tagged , , , | Comments Off on Copy & Paste on Remote Desktop

Strict-Transport-Security

Hello, A very nice way to force HTTPS on all the pages of your site is adding the following header to the server responses on your site: Strict-Transport-Security=max-age=31536000; So after that if some user access some page of your site … Continue reading

Posted in Learned Today, Medium Technical | Tagged , , , , , | Comments Off on Strict-Transport-Security