I hereby claim:
- I am avinassh on github.
- I am avin (https://keybase.io/avin) on keybase.
- I have a public key whose fingerprint is 1D2E 27B3 57DC 4A82 E811 5760 05D1 EE9B D243 C385
To claim this, I am signing this object:
Competitions:- | |
https://www.kaggle.com/ | |
https://www.hackerearth.com/ | |
Books:- | |
Introduction to Algorithms By Thomas H Cormen | |
Pattern Recognition and Machine Learning By Christopher M. Bishop | |
Freakonomics By Steven D. Levitt and Stephen J. Dubner |
I hereby claim:
To claim this, I am signing this object:
I want the home page copy to be of a similar style to that of Papa Parse. Basically, there will be a primary hook followed by a QA-style explanation of what ClipX is. This document will hold those QA and other home-page copy till we are ready to commit it to the repository.
What is ClipX?
Its a content syndication service
That was not at all clear.
ClipX archives and stores everything you want to save on the internet. If you've used ifttt, think of it as ifttt for content.
So you store everything I visit? >No. We store whatever you want to. For eg, you may add an article to pocket, or tag it on Feedly, post a link on your facebook wall, or even star it on twitter. ClipX recognizes all these actions and saves the corresponding link into our database.
<?xml version='1.0' encoding='UTF-8'?> | |
<container xmlns="urn:oasis:names:tc:opendocument:xmlns:container" version="1.0"> | |
<rootfiles> | |
<rootfile media-type="application/oebps-package+xml" full-path="content.opf"/> | |
</rootfiles> | |
</container> |
I wanted to be really able to explain to a fair amount of detail how does the program :command:`ls` actually work right from the moment you type the command name and hit ENTER. What goes on in user space and and in kernel space? This is my attempt and what I have learned so far on Linux (Fedora 19, 3.x kernel).
How does the shell find the location of 'ls' ?
COLOR_LIGHT_RED=$(tput sgr0 && tput bold && tput setaf 1) | |
COLOR_LIGHT_CYAN=$(tput sgr0 && tput bold && tput setaf 6) | |
COLOR_RESET=$(tput sgr0) | |
say -v ? | while read line; do | |
voice=`echo $line | awk '{ print $1 }'` | |
phrase=`echo $line | sed -E 's/^.+# //'` | |
echo "${COLOR_LIGHT_RED}say -v ${COLOR_LIGHT_CYAN}${voice}${COLOR_RESET} $phrase" | |
say -v $voice $phrase | |
done |
#!/bin/bash | |
while : | |
do | |
clear | |
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $* | |
sleep 1 | |
done |
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition: