TeXchat is a simple web chat service that renders TeX math.
The goal is to make it trivially easy to have a conversation with someone else in the web, using mathematical symbols.
Currently, the prettiest math rendering is TeX math, which
| #!/usr/bin/env python | |
| import os | |
| from subprocess import Popen | |
| from subprocess import PIPE | |
| cmd = ["git", "log", "--shortstat", '--pretty=format:commit %an'] | |
| proc = Popen(cmd, stdout=PIPE) |
| // The MIT License | |
| // | |
| // Copyright (c) 2010 Juan Batiz-Benet | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| // copies of the Software, and to permit persons to whom the Software is | |
| // furnished to do so, subject to the following conditions: |
| #!/bin/sh | |
| # | |
| # Framework.sh -- static iOS framwork packager | |
| # | |
| # This script combines two static libs (iphoneos and iphonesimulator) into one, | |
| # and then packages it into a static, app-store friendly, framework. | |
| # A chosen configuration is also packaged into a tarball for easy releases :) | |
| # | |
| # Original Script by Pete Goodliffe | |
| # from http://accu.org/index.php/journals/1594 |
| // The MIT License | |
| // | |
| // Copyright (c) 2010 Juan Batiz-Benet | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| // copies of the Software, and to permit persons to whom the Software is | |
| // furnished to do so, subject to the following conditions: |
| #!/usr/bin/env python | |
| # The MIT License | |
| # | |
| # Copyright (c) 2011 Juan Batiz-Benet | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| /* | |
| author: jbenet | |
| os x, compile with: gcc -o testo test.c | |
| linux, compile with: gcc -o testo test.c -lrt | |
| */ | |
| #include <time.h> | |
| #include <sys/time.h> | |
| #include <stdio.h> |
| class Datastore(object): | |
| '''A Datastore represents storage for serialized dronestore versions. | |
| Datastores are general enough to be backed by all kinds of different storage: | |
| in-memory caches, databases, a remote cache, flat files on disk, etc. | |
| The general idea is to wrap a more complicated storage facility in a simple, | |
| uniform interface, keeping the freedom of using the right tools for the job. |
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'cfpropertylist' | |
| # This is a fix for the bug filed as Radar #1288404 with Apple. | |
| # http://openradar.appspot.com/radar?id=1288404 | |
| # So, in Snow Leopard, I always set up Mail.app to have keyboard shortucts | |
| # for my "From" email addresses. You can create your own in the Keyboard | |
| # system preference pane by entering your email address (like "Andre Arko |
| define([ | |
| 'jquery', | |
| 'underscore', | |
| 'backbone', | |
| 'handlebars', | |
| 'ich', | |
| 'util/resource', | |
| 'order!libs/bootstrap/bootstrap-twipsy', | |
| 'order!libs/bootstrap/bootstrap-popover', |