I hereby claim:
- I am shakna-israel on github.
- I am shakna (https://keybase.io/shakna) on keybase.
- I have a public key whose fingerprint is CE67 2507 AB85 EA82 46A5 D3B6 A089 B2D6 AA04 9EFE
To claim this, I am signing this object:
| Homebrew build logs for tcc on macOS 10.13.2 | |
| Build date: 2018-01-08 20:04:19 |
I hereby claim:
To claim this, I am signing this object:
| ; | |
| ; Unit test framework for scheme, originally by http://c2.com/cgi/wiki?JohnClonts | |
| ; Heavily modified by me, https://github.com/shakna-israel | |
| ; | |
| #| | |
| This is a brain-dead simple unit-testing framework. | |
| It differs wildly from John Clonts' which is where it began life (http://c2.com/cgi/wiki?SchemeUnit), but that was mainly aimed at number equivalency testing. | |
| Basic Usage: |
| ``` | |
| . | |
| ├── curlTimerFormat.txt | |
| ├── env | |
| │ ├── bin | |
| │ │ ├── activate | |
| │ │ ├── activate.csh | |
| │ │ ├── activate.fish | |
| │ │ ├── activate_this.py | |
| │ │ ├── aws |
| filePointer = open('catchme.py', 'r') | |
| builtFunc = [] | |
| for lines in filePointer: | |
| if lines[:3] == 'def': | |
| inFunc = True | |
| if inFunc == True: | |
| if lines[0] == lines.strip(): | |
| inFunc = False | |
| builtFunc.append(lines.strip()) | |
| filePointer.close() |
| export PS1='\[\033[01;32m\]\h\[\033[01;34m\] \w\[\033[31m\]$(__git_ps1 "(%s)") \[\033[01;34m\]$\[\033[00m\] ' |
| server { | |
| listen 80; | |
| server_name example.org; | |
| access_log /var/log/nginx/example.log; | |
| location / { | |
| proxy_pass http://127.0.0.1:8000; | |
| proxy_set_header Host $host; | |
| proxy_set_header X-Real-IP $remote_addr; | |
| proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
| import cherrypy | |
| import os.path | |
| current_dir = os.path.dirname(os.path.abspath(__file__)) | |
| class RootPage: | |
| def index(self): | |
| raise cherrypy.HTTPRedirect("/static/index.html") |
| --- | |
| --- | |
| {% for posts in site.posts %} | |
| #{{ post.id }} { | |
| overflow:hidden; | |
| width:100%; | |
| height:auto; | |
| background-image:url("{{ "assets/img/" | append post.img }}") | |
| } |
| # Requires jpegoptim, pngquant, optipng, gifsicle as well as scour and python. | |
| # The scour.py file should be located at ~/scour/scour.py | |
| # IMPORTANT: This script OVERWRITES existing image files. | |
| # Licensed under the MIT License | |
| # The MIT License (MIT) |