Dub Force Events
x0Events cannot currently be displayed, sorry! Please check back later.x0_close-
Recent Posts
Recent Comments
Archives
- March 2022
- August 2021
- February 2021
- December 2020
- November 2019
- April 2019
- April 2018
- January 2017
- May 2016
- April 2016
- March 2016
- December 2015
- June 2015
- January 2015
- December 2014
- November 2014
- April 2014
- January 2014
- December 2013
- November 2013
- March 2013
- December 2012
- November 2012
- November 2010
- October 2010
Categories
Meta
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 deserialize, deserialized, DeserializeObject, JavaScriptSerializer, json, Json.NET, net, serialized
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 7.0.4, baseband, BBUpdaterExtreme, Bluetooth, btaddr, fix, greyed bluetooth, greyed wifi, ios, ipad, iphone, mac change, no signal, nvram, searching, wifi, wifiaddr
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
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
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
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 dos, find string, FINDSTR, windows
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 copy and paste, rdp, rdpclip, remote desktop
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 force https, force ssl, https, ssl, Strict-Transport-Security, sts
Comments Off on Strict-Transport-Security