-
A simple way for websites to describe in clear, consistent terms what they do with the data we share.
Join the announcement list for up-to-date info. Recent Comments
- Ten Years Later on VRM: The user as point of integration
- Speaking of Identity – People-Centered Internet on Speaking of Identity
- In Context » Apps and Personal Data Stores on VRM and Personal Data Stores
- In Context » 2010 » March on VRM and Personal Data Stores
- In Context » Azigo on VRM and Personal Data Stores
Meta
Category Archives: coding
Open all files in separate emacs windows
How to open everything in a directory with emacs, each in their own window: find . -type f -exec $SHELL -c ‘”$0″ “$@” &’ emacs {} \; Many thanks to ephemient at StackOverflow for the inspiration: http://stackoverflow.com/questions/853451/can-the-find-commands-exec-feature-start-a-program-in-the-background
How to conditionally display variables with EJS
Short version: <%= user.name ? user.name : ” %> When using EJS as a template language, it can be a bit of a mystery how to concisely display variables if and only if they are defined. For example, if you … Continue reading
Posted in coding, Development
Tagged ejs, javascript, node, template, undefined
Comments Off on How to conditionally display variables with EJS
Towards a node.js Auto-Tweeter
I’ve been intrigued by node.js as a platform for highly-scalable server applications written in javascript and finally found a super simple application I wanted to try with it: an auto-tweeter that would let me schedule future tweets to my own … Continue reading
Posted in AutoTweeter, coding
Tagged coding, javascript, node.js, programming, repeal day, sbhackerspace, twitter
6 Comments