Skip to content

Instantly share code, notes, and snippets.

@SkyKOG
SkyKOG / gist:5722466
Created June 6, 2013 15:34
Python Resources
Very nice intro book :
http://kushal.fedorapeople.org/book/
Execute and learn python online :) ...
http://www.learnpython.org/
The best intro video on python i could find :) ...
http://www.youtube.com/watch?v=Pij6J0HsYFA&list=EC4C4720A6F225E074&index=0
How to learn Python ? ...
@SkyKOG
SkyKOG / gist:5394338
Created April 16, 2013 08:28
redirect
class PerformaonesController < InheritedResources::Base
def new
@performaone = Performaone.new(:employee_id => params[:id], :hospital_id => params[:hospital_id])
end
def create
@performaone = Performaone.new(params[:performaone])
respond_to do |format|
if @performaone.save
format.html { redirect_to @performaone, notice: 'Performance Entry for the employee was successfully created.' }
@SkyKOG
SkyKOG / gist:5270711
Created March 29, 2013 13:05
Still the prob ...
<div class="row">
<div class="span4">
<table class="table table-bordered">
<thead>
<tr>
<th>Specialization</th>
<th>Number of Employees</th>
</tr>
</thead>
<tbody>
@SkyKOG
SkyKOG / gist:5261972
Last active December 15, 2015 12:39
Trying to get the dynamic graphs working ...
<link rel="stylesheet" href="//cdn.oesmith.co.uk/morris-0.4.1.min.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
<script src="//cdn.oesmith.co.uk/morris-0.4.1.min.js"></script>
<h1>Doctors by Specialisations</h1>
<br><br>