2012 (section)
October 2012
-
▸
Next Palindrome after a 1000000 digit number - SPOJ - PALIN
A classic SPOJ problem requiring string manipulation to find the smallest palindrome greater than a given number with up to 1 million digits. Explains the algorithm approach using string reflection and handling edge cases like all-9s numbers.
-
▸
Infix Expression to Postfix (RPN) Expression Conversion - SPOJ - ONP
SPOJ problem ONP - Transform algebraic expressions with brackets into Reverse Polish Notation (RPN). Uses a stack-based algorithm to convert infix expressions to postfix for easier evaluation.
-
▸
Store and read static files in Android
Explains how to bundle and read static files (like text files) in Android applications by placing them in the res/raw directory and accessing them via Resource.openRawResource().
-
▸
Making Lync 2010 to work in Android
A step-by-step guide to configure Microsoft Lync 2010 on Android to connect to corporate networks. Covers username format requirements and essential settings configuration.
-
▸
Prime Numbers and Basic Primality Tests - SPOJ - Prime1
Covers multiple algorithms for testing primality - from basic O(n) trial division to optimized approaches checking only up to square root, and skipping even numbers after 2.
-
▸
Compiling .NET code in Console mode and Form mode with Mono C# Compiler
Shows how to compile .NET C# code using Mono compiler in both console and Windows Forms modes. Covers basic mcs usage with -target:winexe and required DLL references for GUI applications.
-
▸
Google Chrome - Bug in Search Display Box
Documents a peculiar Google Chrome bug where the in-page search feature shows negative index values when searching across multiple pages. Reproducible when clicking the upward arrow at match index 1.
September 2012
-
▸
Google Chrome – Search term repeats automatically
Fixes a Google Chrome issue where the search term gets automatically duplicated in the address bar. Solution involves resetting search engine settings by removing and re-adding Google as the default.