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
{ | |
"@context": "https://w3id.org/openbadges/v2", | |
"id": "https://www.scrumlife.tv/issuer.json", | |
"type": "Issuer", | |
"name": "Scrum Life", | |
"url": "https://www.scrumlife.tv", | |
"image": "https://www.scrumlife.tv/logo_scrumlife.png", | |
"email": "[email protected]", | |
"description": "Scrum Life propose des formations et coachings Agile certifiés pour accompagner les équipes vers l'excellence opérationnelle." | |
} |
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
curl 'http://vim-bootstrap.com/generate.vim' --data 'langs=javascript&langs=php&langs=html&langs=ruby&editor=vim' > ~/.vimrc |
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
set expandtab | |
set tabstop=4 | |
set softtabstop=4 | |
set shiftwidth=4 | |
colorscheme darkblue | |
set number | |
syntax on | |
set background=dark |
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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
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
{ "keys": ["("], "command": "insert_snippet", "args": {"contents": " ( $0 )"}, "context": | |
[ | |
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true }, | |
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }, | |
{ "key": "following_text", "operator": "regex_contains", "operand": "^(?:\t| |\\)|]|;|\\}|$)", "match_all": true }, | |
{ "key": "selector", "operator": "equal", "operand": "source.php" } | |
] | |
}, | |
{ "keys": ["("], "command": "insert_snippet", "args": {"contents": " ( ${0:$SELECTION} )"}, "context": | |
[ |
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
from scrapy.spider import BaseSpider | |
from scrapy.selector import HtmlXPathSelector | |
from deloitte_listing.items import DeloitteListingItem | |
class DeloitteListingSpider(BaseSpider): | |
name = "deloitte_listing" | |
allowed_domains = ["deloitte.com"] | |
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
test> db.salary.find() | |
{ | |
"_id": ObjectId("5669fee5cdeb623e44ea3f41"), | |
"emp_id": 3, | |
"Employee_Name": "Farquleet Shadab", | |
"Employee_Gender": "Male", | |
"Employee_Salary": [ | |
{ | |
"month_year": "Jan-2015", | |
"salary_paid": 100 |
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
<snippet> | |
<content><![CDATA[ | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<link rel="dns-prefetch" href="//fonts.googleapis.com" /> | |
<title>$1</title> | |
<meta name="description" content="$2"> |
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
/** | |
* RESET CSS | |
* from http://const.fr/tools/reset | |
* @version: 3.1 | |
* @date: 2013-11-20 | |
**/ | |
html, body, div, span, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, address, cite, code, | |
del, dfn, em, img, ins, kbd, q, samp, |