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 :
Class { | |
#name : #GsEllipse, | |
#superclass : #GsObject, | |
#instVars : [ | |
'radius', | |
'position' | |
], | |
#category : #GameSketchLib | |
} |
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
import re | |
import sys | |
def c(i): | |
""" |
#!/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. | |
) |
* 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 |
# 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 |
Gofer it | |
url: 'http://smalltalkhub.com/mc/PharoExtras/MorphExamplesAndDemos/main' | |
username: '' | |
password: ''; | |
package: 'MorphExamplesAndDemos'; | |
load. | |
BouncingAtomsMorph new openInWorld. |
This is a demonstration of the Python [code][1] module, which allows for an interactive interpreter to be embedded into a Python program.
Convenience function to run a read-eval-print loop. This creates a new instance
of [InteractiveConsole
][2] and sets readfunc to be used as the
#Sample code | |
#Hello world | |
"Hello world!" print | |
#Factorial | |
factorial := method(n, if(n == 1, 1, n * factorial(n - 1))) | |
99 bottles of beer |