Gho is a fish shell function :
function gho
open https://(git config --get remote.origin.url|sed -e s/.git//g|sed s,:,/,g)/$argv
end
With gho, you can :
| Gofer it | |
| url: 'http://smalltalkhub.com/mc/PharoExtras/MorphExamplesAndDemos/main' | |
| username: '' | |
| password: ''; | |
| package: 'MorphExamplesAndDemos'; | |
| load. | |
| BouncingAtomsMorph new openInWorld. |
| # place this in your fish path | |
| # ~/.config/fish/config.fish | |
| function fish_greeting | |
| if not type fortune > /dev/null 2>&1 | |
| apt-get install fortune | |
| end | |
| fortune -a | |
| end |
| * OpenHatch - https://openhatch.org/search/?q=&language=Python | |
| * PyLadies - https://github.com/pyladies | |
| * New Coder - https://github.com/econchick/new-coder | |
| * Django Girls - https://github.com/DjangoGirls | |
| * Matplotlib - https://github.com/matplotlib/matplotlib | |
| * Hylang - http://docs.hylang.org/en/latest/, https://github.com/hylang/hy | |
| * Open Slides (Django) - http://openslides.org/ | |
| * Zeeguu - https://zeeguu.unibe.ch | |
| * Project Jupyter - https://github.com/jupyter | |
| * nbgrader - https://github.com/jupyter/nbgrader |
| #!/usr/bin/env python | |
| from type_checked_entities import entity_factory | |
| Giraffe = entity_factory( # let's define what is a giraffe! | |
| "giraffe", | |
| name=str, # my name is a string | |
| age=float, # my age is an int | |
| eats=object, # I eat pretty much everything. | |
| ) |
| # -*- coding: utf-8 -*- | |
| from __future__ import unicode_literals | |
| import re | |
| import sys | |
| def c(i): | |
| """ |
| Class { | |
| #name : #GsEllipse, | |
| #superclass : #GsObject, | |
| #instVars : [ | |
| 'radius', | |
| 'position' | |
| ], | |
| #category : #GameSketchLib | |
| } |