Most dynamic typing related news are at:
Cracking passwords is getting easier 14 Feb 2013 | 05:52 pm
Not Python-related, but really worth reading. Why passwords have never been weaker — and crackers have never been stronger on ars technica.
Death Swamp 17 Jan 2013 | 06:24 pm
Recently a friend sent me this. I recognized it instantly, although I never knew that it had a name. There is a management technique called “death swamp” (or “death bog” or “fly paper”). It works this...
More dynamic typing related news:
Casting vs Not Casting in Strict Mode and not in Strict Mode hejp.co.uk 19 Sep 2010 | 03:49 am
Preamble Actionscript is, for the most part, a dynamically typed language, which means that the types (i.e. String, int, GameObject) of variables are checked at run-time rather than at compile-time li...
Simulating dynamic typing in Objective C bw.org 28 Sep 2010 | 06:00 am
Objective C implements polymorphism by using a generic object pointer type (id) and by requiring methods that provide information about the capabilities of a class implementation. Objective C’s NSObj...
Use C# dynamic typing to conveniently access internals of an object igoro.com 2 Apr 2010 | 08:47 pm
Sometimes you need to access private fields and call private methods on an object – for testing, experimentation, or to work around issues in third-party libraries. .NET has long provided a solution ...
Dynamic in C# 4.0 codegateway.com 12 Mar 2013 | 09:03 am
Dynamic type is introduced C# 4.0. As its name specifies type of the defined variable is decided dynamically at runtime. At compile time the variable that is declared as dynamic is assumed to be suppo...
Python: Dynamic Typing snipt.net 28 Apr 2013 | 04:51 am
>>> from types import * >>> >>> def what (x): ... if type(x) == IntType: ... print "This is an int." ... else: ... print "This is something else." ... >>> what(4) This is an int. >>> >>> what("4") Thi...
eCommerce with Hybris: Debugging Hybris with Beanshell from Eclipse IDE flexblog.faratasystems.com 28 Apr 2013 | 11:20 pm
Overview BeanShell is a Java-like dynamically typed language that allows to execute scripts in a running Java environment. You can use it to enhance the functionality of your application or to test an...
Side-By-Side Comparison with Go and PHP cj-jackson.com 20 May 2013 | 02:19 am
What I'm going to do a side-by-side comparison between Go and PHP. The reason I'm doing that is so I can illustrate the problem that happens with the dynamically typed language that is called PHP and ...
Ruby Simplified Part 2: Major language features soumya.wordpress.com 3 Jul 2013 | 02:08 am
Some features of the Ruby programming language, comparing them with C#, 1. Ruby is a dynamically typed programming language. C# got dynamic extensions to the language in C# 4.0 2. Ruby is open s...
Dynamic in C# 4.0 codegateway.com 12 Mar 2013 | 09:03 am
Dynamic type is introduced C# 4.0. As its name specifies type of the defined variable is decided dynamically at runtime. At compile time the variable that is declared as dynamic is assumed to be suppo...
Side-By-Side Comparison with Go and PHP cj-jackson.com 20 May 2013 | 02:19 am
What I'm going to do a side-by-side comparison between Go and PHP. The reason I'm doing that is so I can illustrate the problem that happens with the dynamically typed language that is called PHP and ...