Open source, free alternative to MATLAB.
Author Archives
chjj/tty.js · GitHub
If you are in an environment that makes it difficult to get a normal SSH connection to your server, but allows HTTP (e.g., restrictive network), this could be useful. As long as you are careful about security when you set it up.
Intern: A next-generation JavaScript testing stack
Intern is a new testing framework for JavaScript which attempts to combine the best features of many other testing tools. It supports multiple test styles (BDD, TDD, Object), works both client and server-side, and has support for many popular tools (grunt, Travis CI, Selenium) baked in.
WordPress 10th Anniversary Blogging Project
The official 10th anniversary of the release of WordPress is May 27, 2013. It has been an amazing 10 years, during which WordPress evolved from a simple blogware to a very full-featured CMS (Content Management System), used to power some of the biggest and most popular web sites on the internet. All over the world, people are planning celebrations. As much as I like a good party, I thought this would also be a good … Continue reading
dust
Dustjs is a format agnostic JavaScript template engine.
traceGL
Brython
davidbau.com: Local Variable Debugging with see.js
With see.js, you can examine JavaScript variable state within any scope, including closures. Also includes an object pretty printer that can be used independently.
Collaborative interviews with code editor, video and voice | Codassium
“WebRTC based video chat + code editor = Awesome interviews”
Collaborative interviews with code editor, video and voice | Codassium
Improve Apache thread memory usage
Thing I learned today at CoderFaire Atlanta: If you are using Apache with the worker MPM model (or the experimental event worker) under Linux, you can probably improve your memory usage. By default, there is an 8MB stack size per thread, which turns out to be overkill. If you change the size to 1MB, you can save a ton of memory: <IfModule mpm_worker_module> StartServers 8 MaxClients 512 MinSpareThreads 64 MaxSpareThreads 128 ThreadsPerChild 32 ThreadLimit 512 … Continue reading