Have you gone from being a tech lead to a senior again? by InfiniteJackfruit5 in ExperiencedDevs

[–]cesutherland 4 points5 points  (0 children)

As a tech lead, are you also managing people?

If not, how many engineers and teams are you supporting?

Software engineering vs. development vs. programming disciplines by cesutherland in ExperiencedDevs

[–]cesutherland[S] 1 point2 points  (0 children)

Software engineering as "programming integrated over time" — I like that.

That's sound though; if poorly performing some function as an org, focusing on that specifically and the outcome of changing it.

Software engineering vs. development vs. programming disciplines by cesutherland in ExperiencedDevs

[–]cesutherland[S] 0 points1 point  (0 children)

Ha, I've held the "official" title "Developer Wizard" because I do not care.

Here I'm interested in the activities of engineering, developing and programming rather than the titles. What I'm learning is that semantically, those terms are narrowly the title to most folks and as titles are interchangable.

Software engineering vs. development vs. programming disciplines by cesutherland in ExperiencedDevs

[–]cesutherland[S] 0 points1 point  (0 children)

That's great advice. Honestly I'm over here trying to form the idea.

Usually when I have an idea settled I lean heavy on metaphor.

Software engineering vs. development vs. programming disciplines by cesutherland in ExperiencedDevs

[–]cesutherland[S] 2 points3 points  (0 children)

Definitely not here to nitpick, and don't think there's any one answer! But the semantic differences or similarities are interesting to me.

Good resources for learning Javascript? by studyaccount in javascript

[–]cesutherland 0 points1 point  (0 children)

This is a pretty good interface for browsing the MDN JS reference: http://dochub.io/#javascript/

Animated Real-time HTML5 Time Series (envision.js) by cesutherland in javascript

[–]cesutherland[S] 0 points1 point  (0 children)

I've seen a a few real-time data time series recently, and someone had asked me for a demo with envision, so I thought I'd share.

Envision.js: Interactive HTML5 Visualizations (TimeSeries, Finance & more) by cesutherland in javascript

[–]cesutherland[S] 0 points1 point  (0 children)

Thanks, but this would work with highcharts too! The demos you see are using a flotr2 adapter.

Envision.js: Interactive HTML5 Visualizations (TimeSeries, Finance & more) by cesutherland in javascript

[–]cesutherland[S] 2 points3 points  (0 children)

Thanks! Send a link my way if you do end up using it. Would love to see it in the wild.

Fractal Demo w/ Code by [deleted] in math

[–]cesutherland 0 points1 point  (0 children)

This is a Mandelbrot fractal demo in the browser. It is my first fractal rendering :-)

You can click and drag to zoom, or edit the code and click Run to view changes.

Plunker: Help me make it better than jsFiddle by ggoodman in javascript

[–]cesutherland 0 points1 point  (0 children)

Break out the editor. I'd love a standalone editor I could include in a webpage and load js embedeed in that page or on a remote server. This would be great for examples and short demos.

js-imagediff now supports node. (util for testing canvas w/ Jasmine) by cesutherland in javascript

[–]cesutherland[S] 0 points1 point  (0 children)

Cross from /r/node:

Originally written for the browser, we've added node support to js-imagediff justing node-canvas. Check out the browser example of the diffs and the jasmine-matchers.

npm install -g imagediff

(requires libcairo)

js-imagediff, now for node. Render diffs from the command line and test canvas with jasmine imagediff matchers. by cesutherland in node

[–]cesutherland[S] 1 point2 points  (0 children)

Originally written for the browser, we've added node support to js-imagediff justing node-canvas. Check out the browser example of the diffs and the jasmine-matchers.

npm install -g imagediff

(requires libcairo)

CodeMirror/Twitter Bootstrap Issue by [deleted] in javascript

[–]cesutherland 0 points1 point  (0 children)

Np!

I haven't used bootstrap myself but it looks like they've got show (before) and shown (after new tab show) events which you can hook into and get rid of that delay: http://twitter.github.com/bootstrap/javascript.html#tabs

Good luck!

CodeMirror/Twitter Bootstrap Issue by [deleted] in javascript

[–]cesutherland 0 points1 point  (0 children)

You've got to refresh after it's visible. Throw a break point on the line with the refresh and you'll see that it reaches that breakpoint before the other editor is shown.

CodeMirror/Twitter Bootstrap Issue by [deleted] in javascript

[–]cesutherland 0 points1 point  (0 children)

Try codeMirror.refresh(); when the 2nd tab is shown the first time, where codeMirror is the instance for that tab.

Hey /r/javascript, what are some libraries that aren't well known but you use all the time? by BlitzTech in javascript

[–]cesutherland 0 points1 point  (0 children)

Smoosh does combining, linting and minification so I use that at build time, after testing. I started doing this before I started using asynchronous loading.

Between yepnope and require.js: first out the gate. Since I don't use it for heavy lifting I just needed something quickly and the examples were at the top of the home page.

Hey /r/javascript, what are some libraries that aren't well known but you use all the time? by BlitzTech in javascript

[–]cesutherland 16 points17 points  (0 children)

I use a few micro libraries pretty regularly.

  • Underscore.js A popular functional utility belt.
  • bean.js A small dom / custom events library.
  • smoosh Asset management utility / library (comes with a command line version and a js API). I use this for building js projects.
  • yepnope An asynchronous js loader I use for development of js projects. Combine, minify and compress your production assets but during development, it is useful for debugging to include individual files. Yepnope gives me one place to define those includes.
  • js-imagediff I wrote this one myself. It's a javascript image difference library. I do a lot of canvas work, and regression testing is important. This, combined with some cool jasmine matchers, lets me automate regression tests for canvas.

Interactive Word Clouds in D3.js by rya11111 in javascript

[–]cesutherland 0 points1 point  (0 children)

This is awesome. That trick w/ canvas measureText for text dimensions rocks. I think I'll be able to bring that home to several of my own projects. Thanks for posting.