genieyclo + examples   19

Open Source Rails 3.2 Example Apps and Tutorials
Open Source Rails 3.2 Example Apps and Tutorials

This is a website and GitHub repository for open source Ruby on Rails example apps and Rails tutorials.

It spans the gap between Ruby on Rails tutorials for beginners and the piecemeal advice found on experts’ blogs.

Here’s what you can do:

follow the Rails tutorials and examine the code to to see examples of complete working Rails 3.2 web applications
download code (“clone a repository”) to customize an app for your own use
use an application template to generate a ready-made starter app
modify an application template to make your own custom starter app

New to Rails? See a list of recommended resources for Rails.
rails  ruby  tutorial  examples  projects  snippets  golden:rails 
24 days ago by genieyclo
Eldarion
Eldarion is built on open source and its team members are core developers of a range of open source projects including Python, Django, Pinax and many individual Django apps.
Wherever possible, we open source components of our web sites and love working with clients that allow us to open source parts of our work for them.
Here are some of our open source reusable Django apps that have come out of our site development work:
django  python  golden:django  golden:python  oss  opensource  examples  webapps 
february 2012 by genieyclo
JackDanger/hacker_news - GitHub
Hacker News
This tiny script is a scraper for http://news.ycombinator.com. It shows just how little Ruby is required to run a powerful web filter.

What it be doin':
Fetches the YCombinator news page
HPricot's it into pieces
Builds an RSS feed
Uses links to parse the destination article page and include the main text inline
Runs as a stand-alone server thanks to Rack and Mongrel
ruby  golden:ruby  examples  codeexamples  useful  scraping  links  parser  hpricot  mongrel  rack  rss 
february 2012 by genieyclo
Niklas' Blog: Java 7: How to write really fast Java code
When I first wrote this blog my intention was to introduce you to a class ThreadLocalRandom which is new in Java 7 to generate random numbers. I have analyzed the performance of ThreadLocalRandom in a series of micro-benchmarks to find out how it performs in a single threaded environment. The results were relatively surprising: although the code is very similar, ThreadLocalRandom is twice as fast as Math.random()! The results drew my interest and I decided to investigate this a little further. I have documented my anlysis process. It is an examplary introduction into analysis steps, technologies and some of the JVM diagnostic tools required to understand differences in the performance of small code segments. Some experience with the described toolset and technologies will enable you to write faster Java code for your specific Hotspot target environment.
java  jvm  java7  examples  threading 
january 2012 by genieyclo
Welcome to Python by Example! — Python by Example
This guide aims to show examples of the most useful Python Library functions, methods, and classes. At this point, only the more widely used modules were added. Python version 2.5 was used for the examples unless noted otherwise. An example of output of a function will be shown in the form of function_call(args) # result, when the result is the actual output, it is shown after the comment sign, if it’s a description of an outcome, e.g. a raised exception, it will be shown in square brackets:
golden:python  tutorials  reference  examples 
january 2012 by genieyclo
Sphere Online Judge (SPOJ)
SPOJ – Sphere Online Judge – is a problemset archive, online judge and contest hosting service accepting solutions in many languages.
code  katas  examples  scales  practice  samples  programming  programminglanguages 
january 2012 by genieyclo
ProblemSets - PythonInfo Wiki
There are several sites on the web which contain problems to be solved in various programming languages. Some are helpful for newcomers just learning the language, others are challenging for experienced programmers. Some are useful for practice before programming contests. Here is a list of some of these sites (please add more that you are aware of), along with sub-pages for solutions in python (multiple alternative solutions welcome) and commentary on approaches to the problems, ways to leverage Python and/or the standard library to solve problems, ways in which the problem changes depending on the language you use to solve it, etc.
practice  kata  scales  programming  examples 
january 2012 by genieyclo
Django by Example: Django Tutorials - Django by Example
This guide will show you how to build a variety of apps in Django 1.2. (Nearly all of the code will work on Django 1.1, as well.)

8/2/10: New tutorial added: Calendar App.
golden:django  tutorial  examples 
january 2012 by genieyclo
Python Module of the Week - Python Module of the Week
The Python Module of the Week series, or PyMOTW, is a tour of the Python standard library through short examples. This is version 1.132, last updated Jul 08, 2011 to cover the ConfigParser module.
golden:python  python  reference  tutorial  awesome  libs  libraries  modules  podcast  documentation  examples 
december 2011 by genieyclo
K Idioms
great list of things you can do in K, more than 1000+ !
K  kona  APL  examples  awesome  golden 
december 2011 by genieyclo
Algorithm Tutorials
A number is prime if it is only divisible by 1 and itself. So for example 2, 3, 5, 79, 311 and 1931 are all prime, while 21 is not prime because it is divisible by 3 and 7. To find if a number n is prime we could simply check if it divides any numbers below it. We can use the modulus (%) operator to check for divisibility:
algorithms  primes  topcoder  examples  useful  java 
october 2011 by genieyclo
•• /home/alp
Born in Dallas, TX in December, 1989. I'm living in Turkey and studying Computer Engineering as 3rd year student at Bilkent University. My interest areas are web backend development, infrastructure scalability, mobile application development and I'm enthusiastic about cloud computing, NoSQL databases and user experience. I am blogging in Turkish for 6 years.
turks  people  designers  inspiration  portfolio  smart  examples  homepages 
august 2011 by genieyclo
FuzzyWuzzy: Fuzzy String Matching in Python | SeatGeek Blog
Of course, a big problem with most corners of the internet is labeling. One of our most consistently frustrating issues is trying to figure out whether two ticket listings are for the same real-life event (that is, without enlisting the help of our army of interns).
fuzzy  strings  sets  python  examples  tutorials  interesting  datastructures  databases  data  startups  guides  useful  programming  problems 
july 2011 by genieyclo
Colloquial catchy statements encoding serious mathematics - MathOverflow
As the title says, please share colloquial statements that encode (in a non-rigorous way, of course) some nontrivial mathematical fact (or heuristic). Instead of giving examples here I added them as answers so they may be voted up and down with the rest.
math  puremath  mathoverflow  stackexchange  answers  interesting  quora  useful  colloquial  mathematics  ideas  conveying  examples 
may 2011 by genieyclo
I lived in constant fear of forgetting a WHERE clause...
For beginners, a useful startup option is --safe-updates (or --i-am-a-dummy, which has the same effect). It is helpful for cases when you might have issued a DELETE FROM tbl_name statement but forgotten the WHERE clause. Normally, such a statement deletes all rows from the table. With --safe-updates, you can delete rows only by specifying the key values that identify them. This helps prevent accidents.
news.yc  mysql  doc  goodpractices  examples  guides 
march 2011 by genieyclo
CoffeeScript: The beautiful way to write JavaScript - amix.dk
I have coded a lot of years in JavaScript and I have produced a lot of JavaScript code. Yet even with all my experience I still struggle to make JavaScript beautiful. In this post I'll explore why writing beautiful JavaScript is hard and how to improve this with CoffeeScript - a minimalistic language that compiles to JavaScript.
coffeescript  javascript  examples  tutorials  blogs 
march 2011 by genieyclo
Embeddable Languages: Bash, Tcl, Lua, JavaScript, Io - Hyperpolyglot
a side-by-side reference sheet for the hyperpolyglot; there is also a reference sheet for PHP, Perl, Python, Ruby, Smalltalk
bash  tcl  lua  javascript  io  hyperpolyglot  reference  examples  useful  scripting 
february 2011 by genieyclo
Scripting Languages: PHP, Perl, Python, Ruby, Smalltalk - Hyperpolyglot
a side-by-side reference sheet for the hyperpolyglot; there is also a reference sheet for Bash, Tcl, Lua, JavaScript, Io
php  perl  python  ruby  smalltalk  hyperpolyglot  reference  cheatsheet  useful  coding  tips  examples 
february 2011 by genieyclo

Copy this bookmark:



description:


tags: