This is the first Silverlight tutorial on Geekpedia, and we’re going to take a look at how to build our first Silverlight application, starting with the components that you need to reviewing the actual code.
Get Velocity And Position Of A Projectile
Use Java, physics and simple math to calculate the position of a projectile at a given time and its velocity.
How to bind a DataGrid to an array
It simply shows how to bind a DataGrid to an array using C# code.
Using Sockets To Retrieve Data Through HTTP
Use the Java Socket object and the BufferedReader to retrieve the response of an HTTP web request.
Find The Greatest Common Divisor
Implement the Euclidean algorithm into a Python function in order to calculate the largest common divisor of two numbers.
Count Words In String
The simplest way to count words in a string using Ruby and regular expressions by splitting the string at each space.
Getting a list of all the files in a directory
With very little C# code you are able to loop through all the files at a given path.
Convert a number from digits to words
A JavaScript function for converting numbers (21) to words (twenty-one). It works for numbers up to 999, but it can be transformed to support numbers in the thousands too.
Read file to output stream and return its state
This code will read a file and display its content to the output stream (console), while being on the lookout for errors.
Quicksort algorithm and character count
This C++ console application accepts a string as input and after storing them in a character array, sorts them alphabetically using the quicksort algorithm. It also counts the number of character occurences in the string.