I hereby claim:
- I am japsu on github.
- I am japsu (https://keybase.io/japsu) on keybase.
- I have a public key whose fingerprint is AFB7 7174 3BA9 E603 486D AC3E F257 2D74 1F60 2388
To claim this, I am signing this object:
x () { | |
if [ -f $1 ] | |
then | |
case $1 in | |
(*.tar.bz2) tar xvjf $1 ;; | |
(*.tar.gz) tar xvzf $1 ;; | |
(*.bz2) bunzip2 $1 ;; | |
(*.rar) unrar x $1 ;; | |
(*.gz) gunzip $1 ;; | |
(*.tar) tar xvf $1 ;; |
japsu@hobgoblin:~/Work/scratch$ coffee scrabble.coffee cartel /home/japsu/Work/scratch/scowl-7.1/final/english-words.* | |
acelrt | |
: cartel,claret,rectal,tarcel,carlet,lacert,talcer | |
t: clatter | |
tu: cultrate | |
ty: clattery | |
tt: tractlet | |
y: treacly,craylet | |
u: cuartel,curatel,leuctra | |
uu: |
# Language: fi | |
Ominaisuus: Lippujen tilaaminen | |
Kävijänä haluan päästä Traconiin, mutta ilkeät järjestäjät sanovat | |
että tarvitsen pääsylipun. | |
Tausta: | |
Oletetaan että järjestelmässä on tuotteita | |
Tapaus: Onnistunut tilaus | |
Kun surffaan etusivulle |
Feature: A product is sold out | |
As a visitor | |
I want to order a ticket to Yukicon | |
But five hundred others beat me to it | |
And now I'm left without. | |
Scenario: Sold out products on the ticket phase | |
Given there is a product that is sold out | |
When I view the tickets phase | |
Then the product that is sold out should be marked as such |
class tracon::atlassian { | |
include nginx | |
file { | |
"/opt/atlassian": | |
ensure => directory, | |
owner => 'root', | |
group => 'root', | |
mode => 0770; | |
} |
I hereby claim:
To claim this, I am signing this object:
Please don't use this method any more, this is ages old (2014, Python 2.7).
Assuming you use virtualenv
for Python library hygiene. Now you want Numpy and Scipy in your project.
NumPy and SciPy can not be easily installed under Mac OS X with a simple
pip install scipy
mongod> npm.install(['lodash'])
[email protected]
mongod> var _ = require('lodash')
Then use _ in MongoDB MapReduce ;) ;)
def slots_repr(self): | |
""" | |
Provides a readable, namedtuple-like __repr__ for classes that use __slots__. | |
Usage: | |
>>> class A(object): | |
... __slots__ = ['b'] | |
... __repr__ = slots_repr | |
... |