Mr0grog + programming   305

line-by-line memory usage of a Python program
Very cool Python library called "memory_profiler" that profiles the memory usage of a Python program on each line.
python  programming  development  memory  optimization  performance 
29 days ago by Mr0grog
flamejs/flame.js
An implementation of something similar to SproutCore1's view layer on top of Ember.
javascript  development  webdev  programming  library  opensource 
6 weeks ago by Mr0grog
Light Table - a new IDE concept
Incredible IDE UI design and prototype by Chris Granger.
“Light table is based on a few guiding principles:
- You should never have to look for documentation
- Files are not the best representation of code, just a convenient serialization.
- Editors can be anywhere and show you anything - not just text.
- Trying is encouraged - changes produce instaneous results
- We can shine some light on related bits of code”
clojure  code  programming  editor  ui  interface  interaction  design  software  tools 
6 weeks ago by Mr0grog
HTTP Status Codes
This lists more than most and even contains callouts and links back to both wikipedia and IETF RFCs. It's pretty, too.
programming  development  webdev  reference 
10 weeks ago by Mr0grog
Massive Health - Opaque: Prototyping Clear App in a Day
A howto and library for doing gestural "folding" interactions in the style of Clear app.
development  programming  howto  tutorial 
12 weeks ago by Mr0grog
SocketRocket - GitHub
ObjC library for connecting with websockets! Use the same websocket services for native and web apps :)
programming  development  ios  mac  osx  objc  objective-c  webdev  library  opensource 
february 2012 by Mr0grog
CodeRunner — krillapps
Simple app for testing snippets of code in almost any language. Pretty neat looking.
mac  osx  software  tools  programming 
november 2011 by Mr0grog
JS DOM
A JS implementation of the DOM, meant for Node.js and other CommonJS platforms.
javascript  development  programming  webdev  library 
november 2011 by Mr0grog
Slider.js
Nice little library for doing transitions between images.
javascript  webdev  library  programming  development 
november 2011 by Mr0grog
iOS Frameworks
Nice little directory of iOS frameworks.
development  programming  ios  frameworks  library 
october 2011 by Mr0grog
Sooty - GitHub
A nodejs library for writing Campfire bots!
development  programming  javascript  library  campfire 
october 2011 by Mr0grog
Handling Multi-touch and Mouse Input in All Browsers - IEBlog - Site Home - MSDN Blogs
Actually a very practical overview of how to manage touch and mouse input across both WebKit and IE.
programming  development  webdev  javascript 
october 2011 by Mr0grog
SteramJS
Very interesting JS library for creating and manipulating infinite/dynamically generated streams of data.
javascript  programming  library  opensource 
october 2011 by Mr0grog
Promises are the monad of asynchronous programming
Very interesting take on using monad concepts/techniques with promises.
javascript  programming  development  promises 
october 2011 by Mr0grog
jQuery.fracs · larsjung.de
Interesting JS library that determines the portion of an element that is visible on-screen (and other related visibility metrics).
javascript  library  programming  development  webdev  opensource 
august 2011 by Mr0grog
Benchmark.js
Benchmarking library for JavaScript. JSPerf is apparently based on this.
programming  development  javascript  tools  library  performance 
july 2011 by Mr0grog
Paper.js
JS vector graphics drawing library that renders to canvas. Interesting setup; c.f. Protovis.
javascript  library  webdev  development  programming  graphics 
july 2011 by Mr0grog
Know Your Engines
Awesome overview of how modern JS engines optimize code and how you can write more optimizable JS.
javascript  programming  performance  optimization  webdev  filetype:pdf  media:document 
june 2011 by Mr0grog
pdf.js - GitHub
JS Library for rendering PDF files in a canvas! (andreasgal)
webdev  programming  development  javascript  library 
june 2011 by Mr0grog
Debug Object - MozillaWiki
Mozilla's proposed API for debugging JS. Looks pretty nice.
programming  development  debugging 
may 2011 by Mr0grog
JavaScript Madness: Keyboard Events
A pretty good and in depth reference on how various key events work across browsers, although it hasn't been updated in a while.
javascript  programming  development  webdev  tips  reference  events 
april 2011 by Mr0grog
JS Guilloche Pattern Generator (GitHub Gist)
Quick bit of JS for generating guilloche (fine engraved line patterns), such as are seen on bank notes.
javascript  programming  snippets 
january 2011 by Mr0grog
Harmony Of My Dreams | Brendan Eich
Interesting write-up of Brendan Eich's personal goals for how JS should evolve.
javascript  programming  webdev  ecmascript 
january 2011 by Mr0grog
IE9 Pinned Sites Docs
Documentation for using IE9's new pinned sites feature.
webdev  development  programming  reference  browser  ie 
january 2011 by Mr0grog
Computer science in JavaScript: Base64 encoding
Nick Zakas writes a brief overview of Base64 encoding and encoding/decoding with JavaScript.
javascript  programming  encoding  webdev  development 
october 2010 by Mr0grog
Understanding delete
Best detailed description out there of the ins and outs of exactly how the delete operator works in JS.
development  programming  language  javascript  reference  tips 
october 2010 by Mr0grog
php.js - php.js
PHP functions implemented in JS. Some good some bad.
javascript  library  opensource  programming  webdev 
october 2010 by Mr0grog
Polymaps
A very nice API and map set for developing interactive, tiled maps with SVG. From Stamen, of course.
javascript  programming  development  library  opensource  webdev  webdesign  api  geography  cartography  maps  svg 
august 2010 by Mr0grog
bpython interpreter
Awesomesauce. Adds tab completion, inline help, and syntax highlighting (among other things) to the Python command line interpreter.
programming  python  software  tools  opensource  console 
august 2010 by Mr0grog
Why is programming fun?
An extract from Fred Brooks' (Frederick P. Brooks Jr.) book, The Mythical Man-Month
writing  programming  quotes  inspiration  philosophy 
august 2010 by Mr0grog
XRegExp: JavaScript regex library
Extended regular expression library for JS which adds lots of nice features (named capture!) and fixes cross-browser inconsistencies. MIT Licensed.
javascript  library  programming  regex  tools  webdev  development  opensource 
july 2010 by Mr0grog
Escaping regular expression characters in JavaScript
Simon WIllison's short regex for cleaning a string that you plan to create a regex from.
javascript  programming  regex 
july 2010 by Mr0grog
mechanize
Stateful HTTP library for Python. Looks super useful for filling out forms or moving through pages in series. Could probably do a lot of things Selenium is used for, too (except testing JS interactions).
python  http  library  programming  development  testing  webdev 
april 2010 by Mr0grog
Robert Martin, "What Killed Smalltalk Could Kill Ruby" (RailsConf 09)
Most entertaining and insightful talk on programming (and professionalism) I've seen. YouTube.
programming  development  video  ruby  smalltalk  presentation 
april 2010 by Mr0grog
PHP: session_set_save_handler - Manual
Has a good example of writing a custom session handler for PHP. Might be useful for memcache sessions.
php  programming  development  reference 
april 2010 by Mr0grog
Fun with TextMate and PDB
Setting breakpoints in Textmate with bookmarks. Clever.
debugging  mac  osx  textmate  programming  python  testing  tips  howto 
march 2010 by Mr0grog
17 Essential Developer Networks | Carsonified
Good listing for case studies of what kinds of material is good to include.
reference  development  programming  webdev  networks 
march 2010 by Mr0grog
« earlier      

related tags

accessibility  actionscript  activerecord  adobe  agile  air  algorithm  amazon  amqp  analysis  animation  apache  api  apollo  apple  applescript  arabic  architecture  art  authentication  automation  benchmarks  biology  books  browser  build  business  c  c#  c++  cache  caching  campfire  capistrano  cappucino  career  cartography  certification  character  charts  cheatsheet  clipboard  clojure  cloud  cocoa  coda  code  color  comments  community  computers  console  contrast  conventions  creativity  css  database  date  debugging  deployment  design  desktop  development  django  dna  documentation  dotnet  ecmascript  editor  education  email  encoding  encryption  engineering  entrepreneurship  enum  environment  events  exif  extension  extraction  filetype:pdf  firebug  firefox  flash  flex  folksonomy  forms  forum  frameworks  free  games  genetics  geography  geolocation  germs  git  Google  graphics  groupware  guides  hacking  hardware  haxe  hci  hebrew  helma  history  hosting  howto  html  html5  http  humor  i18n  ie  ie8  iis  images  infographics  information  innovation  inspiration  interaction  interface  internationalization  InternetExplorer  interview  interviewing  ios  ipad  iphone  java  javascript  javascriptcore  job  joyent  jquery  jsonp  kernel  language  leaks  learning  library  linq  linux  lisp  loop  mac  maps  media:document  memcache  memory  metadata  microsoft  mobile  money  mongrel  mono  mootools  mozilla  MSBuild  music  mysql  naming  networking  networks  nhibernate  nodejs  nosql  notebooks  oauth  objc  objective-c  objective-j  opensource  optimization  orm  osx  outsourcing  packaging  paper  parsing  patterns  performance  perl  philosophy  phone  php  plugin  podcast  pragmatism  presentation  prism  process  processing  productivity  programming  promises  prototyping  proxy  python  quotes  rabbitmq  rails  rake  redis  reference  regex  research  rhino  rmagick  rte  rtl  ruby  safari  satchmo  scraping  screenreaders  scripting  sdk  search  security  self  server  shell  silverlight  slingshot  smalltalk  snippets  sociology  software  sound  sql  standards  startup  statistics  storage  subversion  svg  symfony  sysadmin  tagging  technology  template  templates  testing  text  textmate  tfs  theme  time  tips  titanium  tools  tutorial  twitter  ui  unicode  unittesting  usability  ux  v8  validation  vector  versioncontrol  video  virtualenv  virus  visualization  vm  vs2005  webapp  webdesign  webdev  webkit  webservices  webstandards  windows  wpf  writing  xcode  xhtml  xml  xul  yahoo  yui  zendframework 

Copy this bookmark:



description:


tags: