LD28 Theme Voting – Round 5 of 5
[Stay tuned! Oh, the excitement!]
LD28 Theme Voting – Round 1 of 5
| #!/bin/bash | |
| # Minimal script for timelapse capturing your screen in MacOSX. | |
| # You must run the script, from an empty directory where the images will be stored. | |
| # Usage: ./timelapse | |
| # or | |
| # Usage: ./timelapse <seconds> |
| # script to create movie from multiple png files | |
| dir=${1-"timelapse"} | |
| cd $dir; | |
| echo "Creating symlinks..."; | |
| # start at 0 | |
| count=0 |
| Send me an email.... send me and email... right now... | |
| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| mQINBFKUfXoBEADFsoCic4SBIRv4LU8YpviPZnc3sgMR26kmtC4kPTjR3QEfbE50 | |
| V/0hIvZPPEJZM5KTYH4hc5DaMFhTB/qQnX7DJU3ji23aoNDJIJSvqIwm2n9GdrJn | |
| zTnQNbVKpcAzS9oLhl0U57IMZ5pKUr+jRl1yuF/TZXX5SdaSO21YvXp9D70T4p5y | |
| /UwiQeni+fqBcurFCo9TruPijBVM5uq+G3hVblTWrD9rM/NJQb+lBv/3EzGpnLWJ | |
| OSICfOrOPiIZqBKCW5cyzgpP5PTxdxOTEjxpV72WS2zjbBm6YRYmKhG/ppEhkORN | |
| nqP/qF9ck7kUPXau7kgLLI6gnEletyG7kfaMe9Jp5aSyiDkpsQP3V3Nht+xnXAht |
| # LD27 themes | |
| - 10 Seconds +748 1423 354 675 | |
| - Death is useful +426 1278 443 852 | |
| - Connections +238 975 674 737 | |
| - Corruption +159 1004 564 845 | |
| - Space +117 1039 473 922 | |
| - Alternative Reality +117 1085 491 968 | |
| - Alchemy +115 993 539 878 | |
| - Machines +96 972 567 876 |
| module.exports = function(grunt) { | |
| // Project configuration. | |
| grunt.initConfig({ | |
| pkg: grunt.file.readJSON('package.json'), | |
| watch: { | |
| src: { | |
| files : ['digibots/res/**/*.{png,jpg,jpeg,gif}', 'digibots/scripts/**/*.js', 'digibots/index.html'], | |
| options : { |
| { | |
| {I have|I've} been {surfing|browsing} online more than {three|3|2|4} hours today, yet I never found any interesting article like yours. {It's|It | |
| is} pretty worth enough for me. {In my opinion|Personally|In my view}, if all {webmasters|site owners|website owners|web owners} and bloggers made good content as | |
| you did, the {internet|net|web} will be {much more|a lot more} | |
| useful than ever before.| | |
| I {couldn't|could not} {resist|refrain from} commenting. {Very well|Perfectly|Well|Exceptionally well} written!| | |
| {I will|I'll} {right away|immediately} {take hold of|grab|clutch|grasp|seize|snatch} | |
| your {rss|rss feed} as I {can not|can't} {in finding|find|to find} your {email|e-mail} subscription {link|hyperlink} or {newsletter|e-newsletter} service. Do {you have|you've} any? | |
| {Please|Kindly} {allow|permit|let} me {realize|recognize|understand|recognise|know} {so that|in order that} I {may just|may|could} subscribe. | |
| Thanks.| |
| # MAC manipulators | |
| alias random_mac='sudo ifconfig en0 ether `openssl rand -hex 6 | sed "s/\(..\)/\1:/g; s/.$//"`' | |
| alias restore_mac='sudo ifconfig en0 ether YOUR_ORIGINAL_MAC_ADDRESS_GOES_HERE' |
One of the goals of Play2 architecture is to provide a programming model for what is called Realtime Web Applications.
Realtime Web Applications are applications that make use of Websockets, Server Sent Events, Comet or other protocols offering/simulating an open socket between the browser and the server for continuous communication. Basically, these applications let users work with information as it is published - without having to periodically ping the service.
There are quite a few web frameworks that target the development of this type of application: but usually the solution is to simply provide an API that allows developers to push/receive messages from/to an open channel, something like:
| NSString *boundary = @"---------------------------14737809831466499882746641449"; | |
| NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary]; |