Course Name | Start Date | Length | Provider | Rating |
---|---|---|---|---|
LFS101x : Introduction to Linux | Aug 1 | NA | EdX | NA |
Usable Security | Aug 18 | 8 weeks | Coursera | NA |
Programming Foundations with Python: Learn OOP | Self paced | 4 weeks | Udacity | 5 (1 review) |
CS 101: Building a Search Engine | Self paced | 7 weeks | Udacity | 5 (5 reviews) |
Intro to Internet working with TCP/IP | Self paced | 6 weeks | openHPI | NA |
UNSW Computing 1 - The Art of Programming | Self paced | 12 weeks | OpenLearning | NA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sequential_array = [*0..23] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env ruby | |
require 'open-uri' | |
require 'nokogiri' | |
google_query_url = 'http://www.google.co.in/search?&q=' | |
search_query = 'drath note' | |
if ARGV.length == 0 then | |
puts "usage: suggest <approx> <wrds> <to> <srch>" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global oh-my-zsh.hide-status 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unbind C-b | |
set-option -g prefix ` | |
bind ` send-prefix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chflags hidden /path/to/file-or-folder | |
chflags nohidden /path/to/file-or-folder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def multiple_of number | |
Proc.new do |n| | |
(n % number) == 0 | |
end | |
end | |
fb = (0..100).map do |n| | |
case n | |
when multiple_of(15) | |
"FizzBuzz" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"language": "Malayalam", | |
"area": "214", | |
"population": "745000" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" copy all this into a vim buffer, save it, then... | |
" source the file by typing :so % | |
" Now the vim buffer acts like a specialized application for mastering vim | |
" There are two queues, Study and Known. Depending how confident you feel | |
" about the item you are currently learning, you can move it down several | |
" positions, all the way to the end of the Study queue, or to the Known | |
" queue. | |
" type ,, (that's comma comma) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Object | |
def print | |
puts self.to_s | |
end | |
end | |
23.times &:print |
OlderNewer