Porting Kitchen to Python3: Part 1 - Detecting string types
From anonbadger.wordpress.com:I’ve spent a good part of the last week working on the python3 port of kitchen. It’s now to the point where I’ve reviewed all of the code and got the unittests passing. I...
View ArticleMultiple SQL INSERT operations with a single command
From CodeProject:Under normal circumstances, it is strongly recommended that you don't concatenate strings to produce an SQL Command, because of the risk of SQL Injection - and this is indeed a very...
View ArticleHidden Code
From Javalobby:Sometime ago I came across the issue of invisible characters in Strings. These can really cause confusion because they are invisible. Imagine my reaction to discovering you can use...
View ArticlePy3k status update #6
From PyPy Blog:This is the sixth status update about our work on the py3k branch, which we can work on thanks to all of the people who donated to the py3k proposal.The coolest news is not about what we...
View ArticleLen() vs. Datalength()
From CodeProject:Many gets confused with Len() and Datalength(). Here I have given a small example to describe what is the main difference between them. In the above example, two variable have declared...
View ArticlePython 3.3 is my Favorite Python Release
From pybites.blogspot.com:Today, Python 3.3 was released. During the 4.5 years I've been a CPython core developer, 6 major Python releases (2.2.3.3.3.and 3.have past by me. In this post, I will explain...
View ArticleAssign multiple test categories using TestCategoryAttribute
From Geeks With Blogs:I am using TestCategoryAttribute to filter which tests to run during builds and wandered, how to -how to assign multiple test categories. According toconstructor documentation...
View ArticleStrings in .NET are Enumerable
From Geeks With Blogs:It seems like there is always some confusion concerning strings in .NET. This is both from developers who are new to the Framework and those that have been working with it for...
View ArticleUsing Data Annotations in the .NET Framework
From CodeProject:Starting with .NET 4 or MVC3, a developer could use a data annotation on a property to force data validation. This is extremely powerful especially for MVC developers. The same data...
View ArticleHow MeetMe Went International on Android
From engineering.meetme.com:Our engineering team has been working hard to implement full internationalization (i18n), including localization (L10n) support. MeetMe sees international support as...
View ArticleXOR Hex Strings in Linux Shell Script
From CodeProject:This is a simple shell script to XOR hex strings. I used it to generate sha1 hashes of files and XOR ing their hashes to create master result. Now let's see what this function...
View ArticleOak by amirrajan
From GitHub:Oak is a suite of contructs that brings the power of dynamic typing and frictionless development to ASP.NET MVC (it can be used outside of MVC too). Oak has an addicting development life...
View ArticleC#/.NET Little Wonders: Static Char Methods
From Geeks With Blogs:Once again, in this series of posts I look at the parts of the .NET Framework that may seem trivial, but can help improve your code by making it easier to write and maintain. The...
View ArticlejQuery Roundup: jQuery UI 1.9.0, Delta Theme, jQuery.textFit
From DailyJS:Note: You can send your plugins and articles in for review through our contact form or @dailyjs. jQuery UI 1.9.0 is out, which adds new widgets, API refinements, improved accessibility,...
View ArticleMy Collection of PHP Performance Benchmarks
From maettig.com:PHP version 5.2.13 is running on this server. My conclusion: In most cases, use empty() because it does not trigger a warning when used with undefined variables. Note that empty("0")...
View ArticleSplitting strings again – strtok redeemed
From CodeProject:The C++ source files for the string tokenisers discussed in this post and the Splitting strings post, plus the code for Removing whitespace and Static assert in C++, can be found...
View ArticleOn StringComparison Values
From Geeks With Blogs:When you use the .NET Framework’s String.Equals and String.Compare methods do you use an overloStringComparison enumeration value? If not, you should be because the value provided...
View ArticleRuby Tidbit: String, the original value object
From erniemiller.org:Ernie Miller is a Ruby on Rails developer in Louisville, Kentucky. This weblog contains tips, tricks, gems, and the occasional rant.Click here to read moreTagged: #ruby #rails...
View ArticleSorting Variable Length Strings in O(N) Time
From CodeProject:Download source - 126.3 KB. The algorithm described herein is designed to implement sorting of variable length strings in O(time. The implementation sorts an input file of...
View ArticleThis Week in Ruby: MRI 1.9.3-p327, Rails 3.2.9, Capybara 2.0, and the Fukuoka...
From Ruby Inside:Welcome to this week’s roundup of Ruby news, articles, videos, and more, cobbled together from my e-mail newsletter, Ruby Weekly. Highlights include: MRI 1.9.3-p327, Rails 3.2.9,...
View Article