Turn Source Quicklinks into a packaged app. It can use <browser> to embed the Chromium code search and have a custom toolbar that allows switching to SVN history, blame, etc. It can also log recently pulled up docs in a sidebar, support looking up files by name.
Thursday, August 23, 2012
Code Explorer (Packaged) App
Wednesday, July 18, 2012
Credit card reader Chrome extension
The Square card reader converts the magnetic stripe on a credit card to audio. Using the getUserMedia() API from WebRTC, it should be possible to get at that audio data (via WebAudio). mslib is a library for decoding this magnetic stripe data (blog posts with more details). It could be incorporate via NaCl. Rhombus is another project that does this (albeit Java-based).
One possible application is in a Chrome extension that implements payment form filling out by swiping a card.
Saturday, June 16, 2012
Atop
Saturday, June 2, 2012
What are some time-saving tips that every Linux user should know? - Quora
What are some time-saving tips that every Linux user should know?
Thursday, May 24, 2012
Friday, May 18, 2012
Monday, May 7, 2012
Mosh
Remote terminal application that allows roaming, supports intermittent connectivity, and provides intelligent local echo and line editing of user keystrokes.
Mosh is a replacement for SSH. It's more robust and responsive, especially over Wi-Fi, cellular, and long-distance links.
Friday, April 27, 2012
Lights Out
iPhone app that lets you put nearby Macs to sleep (discovery can be handled via Bonjour). Unlike iShutdown or Control!, it shouldn't require installing a special daemon on the Mac that's to be controlled. iSleep claims to do this via Remote Login (i.e. ssh), but the reviews seem mixed. If remote Apple events are still possible, then it should be feasible via that. If not (or as an alternative), whatever mechanism Apple Remote Desktop uses could be used here too.
Monday, April 23, 2012
apt-file and finding Ubuntu packages
apt-file can find which packages include a specific file. Ubuntu Packages Search also provides a web UI.
Thursday, April 19, 2012
Freeze inactive background Chrome tabs
In the vein of the Firefox extension Dormancy, build a Chrome extension that frees up resources used by background tabs that haven't been accessed in a while. Using the chrome.tabs.onUpdated event, an LRU list could be maintained. Inactive tabs would have a screenshot taken via chrome.tabs.captureVisibleTab, and the tab would then be navigated to a chrome-extension:// URL that shows that screenshot (thus making all inactive tabs live in the extension's process, instead of separate renderer ones). When the tab is re-selected, history.back() could be used to back to the live page (by using history traversal, form/scroll position restore is invoked, retaining as much of the state as possible).
Optionally, there could be a browser action that displays the total/live/frozen tab count, in the same way that Tab Count does.
Wednesday, April 11, 2012
Monday, March 12, 2012
Pretty-print inline diffs in emails
Rietveld (and presumably other code review tools) inline diffs in emails. Even if they don't, they generally have a URL that points at the review. A Gmail gadget could be written that inlines the diffs (if not already inline), and pretty-prints them (with syntax highlighting).
GitHubDiff does something like this for GitHub emails.
Wednesday, March 7, 2012
TodoMVC
TodoMVC is a project which offers the same Todo application implemented using MV* concepts in most of the popular JavaScript MV* frameworks of today.
Solutions look and feel the same, have a common simple feature-set and make it easy for you to compare the syntax and structure of different frameworks so you can select the one you feel the most comfortable with.
Monday, March 5, 2012
Aleph
Google has shut down Code Search and the Social Graph API. Replicating those services outside of Google is hard; they presuppose a scalable, well-oiled crawling/indexing/serving machine. Only Google has been able to release interesting n-gram data (from books too).
Along the same lines, the HTTP Archive tracks 55K URLs (with a goal of 1M by the end of 2012). W3Techs also only looks at the Alexa top 1 million. Presumably this is because crawling is hard. If Foursquare wanted to know how many pages have a link to a foursquare.com URL, would they want to crawl the whole web?
"Aleph" would be an infrastructure company that offers a few services:
- Large (billion and up) archive of sites on the internet. This would include not just raw HTML, but the full set of resources necessary to recreate that page (think crawling with headless WebKit and capturing all HTTP requests).
- Ability to do quick (semi-interactive) analyses over the crawl data that has been pre-processed (think regular expressions, or Dremel-like queries for attributes).
- Ability to run arbitrary MapReduces over the data (see ZeroVM for a way to do this safely).
- Ability to import new datasets (whether web-like or not)
For the web index to be useful for some applications, it would need to have a PageRank-like attribute per page to expose importance (and/or a number of visits/traffic).
In theory the Internet Archive has a lot of this data. They make their data available "at no cost to researchers, historians, and scholars," thus their willingness to license is unclear.
As for the name, the Aleph was a MacGuffin-like device from Mona Lisa Overdrive that a large copy of the Internet stored.
Update on 5/7/2012: Blekko appears to offer basic grepping functionality.
Update on 2/24/2013: CommonCrawl is a non-profit with 6 billion pages indexed and available for MapReduce.
Monday, February 27, 2012
The Locker Project
A Locker is a container for personal data, which gives the owner the ability to control how it's protected and shared. It retrieves and consolidates data from multiple sources, to create a single collection of the things you see and do online: the photos you take, the places you visit, the links you share, contact details for the people you communicate with, and much more. It also provides flexible APIs for developers to build rich applications with access to all of this information.
The Locker Project is an open source development effort, permissively licensed, and sponsored by Singly. Singly provides a personal data service based on this technology, and also welcomes its use by anyone for any purpose.
Sunday, February 12, 2012
MVC Framework for Node — Matador
krillapps
CodeRunner: Edit and run code in any programming language with just a single click. Write and test code, run scripts, work with algorithms, or simply experiment with a new coding or scripting language.
Patterns: A simple yet powerful tool for working with regular expressions. Build great patterns quickly and effortlessly with syntax coloring and with matching and replacing occurring in real time.
Monday, February 6, 2012
Building Games with Web Tools
Code
Editors
Resources
Sound
Music
- Noteflight (brief tutorial on how to write music for games)
- Sonant Live, a tracker
- Aviary Roc, beat sequencer
Editing
SFX
Graphics
Pixel editors
Voxel editors
Vector graphics
Painting
Procedural
- Pinello (requires facebook login)
- Recursion Toy
- Algorithm Ink
Misc
- Aviary Peacock, effects/filter editor
- Aviary Toucan, palette creation tool
- COLOURlovers, palette/color discovery
- Adobe Kuler, palette/color discovery
dpup/surface - GitHub
Sunday, February 5, 2012
PhantomJS and confess.js
PhantomJS provides a headless, yet fully-featured, WebKit browser that can easily be launched off the command-line, and then scripted and manipulated with JavaScript.
confess.js is a small library that uses PhantonJS to make it easy to analyze web pages and apps for various purposes.
Monday, December 12, 2011
benvanik/node-airplay
CodeKit
Monday, December 5, 2011
Ugorji Nwoke: Dev Tool for GO AppEngine
Responsive IMGs
Saturday, December 3, 2011
UILayer
Sunday, November 27, 2011
Saturday, November 26, 2011
ProdEagle - Welcome
Sunday, November 13, 2011
Workshop / Chrome Experiments
- dat.GUI: A lightweight graphical user interface for changing variables in JavaScript. Rather than modify variables manually in your code, use dat.GUI to modify them during execution.
- three.js: A lightweight 3D engine. Three.js makes it easy to render graphics with canvas, svg, and WebGL.
- stats.js: A JavaScript performance widget. Stats.js adds a simple info box to your page displaying frames per second (FPS) or, with a mouse click, the milliseconds required to render the frame.
Saturday, October 29, 2011
Saturday, September 24, 2011
Bootstrap, from Twitter
Tuesday, September 13, 2011
Saturday, September 10, 2011
Friday, August 12, 2011
Performance Data from our Fieldrunners WebGL Demo
Wednesday, July 27, 2011
nowjs for Node
Monday, July 18, 2011
SceneJS - WebGL Scene Graph Library
Thursday, July 14, 2011
Cocos2D JavaScript
Monday, July 11, 2011
Sunday, June 26, 2011
Google App Engine Mini Profiler
Friday, June 24, 2011
SocketStream
Monday, June 13, 2011
Perceptual Image Difference Utility
Monday, June 6, 2011
Sitebricks
Sunday, June 5, 2011
Apache Lucy
Thursday, May 26, 2011
Sunday, May 22, 2011
Scrollability
The Dynamics of Scrolling | MacResearch
Saturday, May 14, 2011
Google App Engine Blog: Introducing ProtoRPC for writing App Engine Web Services in Python
ProtoRPC makes it easy to write consistent, reliable web interfaces that can be used, for example, to do the following:
- Create AJAX URL end-points for use by dynamic web pages and forms.
- Provide simple and understandable server-to-server communications.
- Become a back-end for command-line tools or other non-web based clients.
MTR
mtr combines the functionality of the 'traceroute' and 'ping' programs in a single network diagnostic tool.
As mtr starts, it investigates the network connection between the host mtr runs on and a user-specified destination host. After it determines the address of each network hop between the machines, it sends a sequence ICMP ECHO requests to each one to determine the quality of the link to each machine. As it does this, it prints running statistics about each machine.
Monday, April 11, 2011
Crafty - JavaScript Game Engine
Sunday, April 3, 2011
MaxSquare: a fast and simple algorithm for maximizing photo thumbnail sizes
Wednesday, March 30, 2011
Coded Exposure Photography (Flutter Shutter Deblur, SIGGRAPH 2006)
In a conventional single-exposure photograph, moving objects or moving cameras cause motion blur. The exposure time defines a temporal box filter that smears the moving object across the image by convolution. This box filter destroys important high-frequency spatial details so that deblurring via deconvolution becomes an ill-posed problem.
Rather than leaving the shutter open for the entire exposure duration, we "flutter'' the camera's shutter open and closed during the chosen exposure time with a binary pseudo-random sequence. The flutter changes the box filter to a broad-band filter that preserves high-frequency spatial details in the blurred image and the corresponding deconvolution becomes a well-posed problem. We demonstrate that manually-specified point spread functions are sufficient for several challenging cases of motion-blur removal including extremely large motions, textured backgrounds and partial occluders.
Monday, March 28, 2011
Remote git diffs with bbdiff
- See previous post about key exchange.
- Add the following to
.gitconfig:[diff] tool = "bbdiff" [difftool] prompt = false [difftool "bbdiff"] cmd = /home/mihaip/bin/bbdiff "$REMOTE" "$LOCAL" - Create
bbdiffon the remote machine with the following contents:#!/bin/sh source_machine=${SSH_CLIENT%% *} for arg in "$@" do readlink -fn $arg if [[ $arg == /tmp/* ]] then scp $arg mihaip@$source_machine:$arg fi echo -n " " done | xargs ssh mihaip@$source_machine /usr/local/bin/bbdiff --wait --resume
Saturday, March 26, 2011
Google Application Utilities for Python
Same set of utilities used to build and run internal Python apps at Google:
- Simple application startup integrated with python-gflags.
- Subcommands for command-line applications.
- Option to drop into pdb on uncaught exceptions.
- Helper functions for dealing with files.
- High-level profiling tools.
- Timezone-aware wrappers for datetime.datetime classes.
- Improved TestCase with many of the same methods as unittest2, plus helpful flags for test startup.
- google_test setuptools command for running tests.
- Helper module for creating application stubs.
Friday, March 25, 2011
xStats
xStats provides simple charts to help monitor your code performance.
- FPS: Frames rendered per second. The higher the number the better.
- MS: Milliseconds needed to render a frame. The lower the number the better.
- MEM: Megabytes of memory used. Make sure it doesn't keep incrementing.
Editing files remotely
- See previous post about key exchange and
get_source_machine - Install FUSE and SSHFS.
- Ideally, mount the remote directories you're interested to the same path on your Mac. Most recently I've used:
sshfs mihaip@snowberry.local:/D \ /D \ -oauto_cache,reconnect,volname=snowberry-mihaip - Add the following to your
.bashrc:bbedit() { source_machine=$(get_source_machine) for arg in "$@" do readlink -fn $arg echo -n " " done | xargs ssh mihaip@$source_machine /usr/local/bin/bbedit }
Growl notifications from other machines
- Install growlnotify
- Set up public keys so that the other machine can SSH into the Mac without prompting
- Add the following to
.bashrc:get_source_machine() { echo ${SSH_CLIENT%% *} } function growlnotify() { if [ "$AT_HOME" = "true" ]; then return; fi source_machine=$(get_source_machine) ssh mihaip@$source_machine /usr/local/bin/growlnotify \ -n "command-notifier" \ -m \"[$PWD]\" \"$1\" 2> /dev/null } - In the Growl PrefPane, the notifications can be styled for the
command-notifier"Application." (I like Music Video)
Wednesday, March 23, 2011
Using the Google V8 Javascript Engine in Java
Monday, March 14, 2011
JVM Crash in Development App Engine server after Mac OS X Java SE 6 Update 4
/System/Library/Java/JavaVirtualMachines/1.6.0.3.jdk and pointing Eclipse at it worked for me.
Sunday, March 13, 2011
Backbone.js
Underscore.js
Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects. It's the tie to go along with jQuery's tux.
Underscore provides 60-odd functions that support both the usual functional suspects: map, select, invoke — as well as more specialized helpers: function binding, javascript templating, deep equality testing, and so on. It delegates to built-in functions, if present, so modern browsers will use the native implementations of forEach, map, reduce, filter, every, some and indexOf.
CoffeeScript
CoffeeScript is a little language that compiles into JavaScript. Underneath all of those embarrassing braces and semicolons, JavaScript has always had a gorgeous object model at its heart. CoffeeScript is an attempt to expose the good parts of JavaScript in a simple way.
The golden rule of CoffeeScript is: 'It's just JavaScript'. The code compiles one-to-one into the equivalent JS, and there is no interpretation at runtime. You can use any existing JavaScript library seamlessly (and vice-versa). The compiled output is readable and pretty-printed, passes through JavaScript Lint without warnings, will work in every JavaScript implementation, and tends to run as fast or faster than the equivalent handwritten JavaScript.
Friday, March 11, 2011
d3.js
Tuesday, March 8, 2011
Monday, March 7, 2011
Chef - Opscode
Thursday, March 3, 2011
boilerpipe
The boilerpipe library provides algorithms to detect and remove the surplus 'clutter' (boilerplate, templates) around the main textual content of a web page.
Instance/web API running at http://boilerpipe-web.appspot.com/.
Wednesday, March 2, 2011
visionmedia/express - GitHub
Sunday, February 27, 2011
Varnish: Notes from the Architect
Monday, February 14, 2011
Graphite - Enterprise Scalable Realtime Graphing
Graphite is a highly scalable real-time graphing system. As a user, you write an application that collects numeric time-series data that you are interested in graphing, and send it to Graphite's processing backend, carbon, which stores the data in Graphite's specialized database. The data can then be visualized through Graphite's web interfaces.
Used by Etsy.
Etsy also has StatsD (blog post) which is a daemon that increments/times can be sent to, which aggregates them and sends them to Graphite.Friday, February 4, 2011
ack 1.94 -- better than grep, a source code search tool for programmers
"ack is a tool like grep, designed for programmers with large trees of heterogeneous source code."
Unicode code converter
Convert input text to various representations and escaping levels.
Also related: Text Escaping and Unescaping in JavaScript.
Friday, January 21, 2011
Sunday, January 16, 2011
Friday, December 31, 2010
web-page-replay
Saturday, December 25, 2010
Node Inspector
Thursday, December 23, 2010
Introducing Knockout, a UI library for JavaScript
Knockout is a JavaScript library that makes it easier to create rich, desktop-like user interfaces with JavaScript and HTML, using observers to make your UI automatically stay in sync with an underlying data model. It works particularly well with the MVVM pattern, offering declarative bindings somewhat like Silverlight but without the browser plugin.
Tuesday, December 21, 2010
CSS Timing Bookmarklet
querySelectorAll on all the selectors in loaded stylesheets and then sorts their eval time.
Thursday, November 25, 2010
DNode
Monday, November 15, 2010
creationix's step
Monday, July 5, 2010
JSRegexTeststand v2
Saturday, June 19, 2010
Sunday, April 25, 2010
Learn CSS Positioning in Ten Steps: position static relative absolute float
Thursday, April 22, 2010
Akihabara
Tuesday, April 13, 2010
Thursday, April 1, 2010
Monday, March 29, 2010
App Engine JavaScript SDK
Sunday, March 28, 2010
Recipe: CloudKit
objectify-appengine - Project Hosting on Google Code
Saturday, March 27, 2010
Using a Caching Proxy Server for Web Demos
Friday, March 19, 2010
Hg Init: a Mercurial tutorial by Joel Spolsky
For when I want to actually learn a DVCS:
Mercurial is a modern, open source, distributed version control system, and a compelling upgrade from older systems like Subversion. In this user-friendly, six-part tutorial, Joel Spolsky teaches you the key concepts.
Thursday, March 18, 2010
Gecko Memory Profiler
Add-on appears to be stuck at Firefox 3.5-only though.
Labs/Memory Profiler - MozillaWiki: "Memory Profiler is an experimental Labs project that attempts to make debugging memory use in web pages easier.
For more information about the tool's design and rationale, see Atul's blog post entitled Web Application Memory Profiling, Take Two."