tl;dr we're lazy, we're coders.
Let's make use of that.
- We don't like to start off new projects and write all the booooring boilerplate
- We like to fiddle with code and fix it
- We like recognition
- We're quickly bored
Hence, I present to you my idea:
tl;dr we're lazy, we're coders.
Let's make use of that.
Hence, I present to you my idea:
| // example of how you do stuff as user x | |
| route('/dashboard', function() { loadDashboard(getSession('user_id')); }); | |
| // example of link to become another user | |
| // make sure it's admin only | |
| route('/changelink/:userid', requireAdmin, function(req) { | |
| setSession('is_faking', getSession('user_id')); | |
| setSession('user_id', req.params.userid); | |
| }); |
| \documentclass{report} | |
| \usepackage{graphicx} | |
| \usepackage{fancyhdr} | |
| \pagestyle{fancy} | |
| \lhead{LEFT} | |
| \chead{CENTER} | |
| \rhead{RIGHT} | |
| \lfoot{a very long left header} | |
| \cfoot{} | |
| \rfoot{a very long right header} |
| ./configure --prefix=/opt/php-zts --bindir=/opt/php-zts/bin --with-config-file-scan-dir=/opt/php-zts/modules.d --with-zlib --disable-phar --enable-debug --enable-maintainer-zts |
| jsfiddle: http://jsfiddle.net/FRsGS/2/ | |
| A sample of how this could work: | |
| HTML: | |
| <output id="output"></output> | |
| <input type="text" id="input"> | |
| JS: |
| $ sudo apt-get install libfixposix-dev |
| Write a blog post about "return ASAP". | |
| e.g. | |
| ``` | |
| $user = getUser(); | |
| if ($user) { | |
| $group = getGroup($user); | |
| if ($group) { | |
| // do something |
| router.get('/set-authentication', function(req, res) { | |
| var groups = global.mysql.authentication.groups; | |
| db.Group.find(groups, createIfNotExists); | |
| function createIfNotExists(err, results) { | |
| if (err) return res.send(500); | |
| var missing = findMissing(groups, results); | |
| db.Group.insert(missing, createAdminUser); |
| /* | |
| $ cpp -P -nostdinc test.js bundle.js | |
| # OR | |
| $ cpp -P -nostdinc test.js | |
| # To give parameters, use -D, like this: | |
| $ cpp -P -nostdinc -D DEV test.js |
| Why should I choose this or this class? Isn't there any skill that's available only to them later on? | |
| What does clicking on "validate" (email) do? Nothing happens, and I don't get any mail. | |
| Sending password in clear by mail? | |
| Otherwise the tutorial is nice. I don't like the gameplay, but it's just me :-) |