- Cross-meetup meeting (game group?) - 6
- Debugging issues with node.js (including benchmarking) - 6
- gotcha's in node.js - 7
- native bindings - 1
- Socket frameworks (socket stream / meteor / derby) - 5
- node.js require("domain") and so can you - 4
- Typescript - 0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Next Meetup: Tuesday, january 15 | |
# Topics: | |
- connect/express middleware - 3 | |
- non-http networks - 8 - DUN DUN DUN | |
- Torrent | |
- UDP | |
- Multicast (Frank) | |
- XMPP (XTENSIBLE MESSAGING AND PRESENCE PROTOCOL) | |
- Serial |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo kill `ps -ax | grep 'coreaudiod' | grep 'sbin' |awk '{print $1}'` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=== Logging started: 11/28/2012 15:06:17 === | |
Action start 15:06:17: INSTALL. | |
Action start 15:06:17: FindRelatedProducts. | |
Action ended 15:06:17: FindRelatedProducts. Return value 1. | |
Action start 15:06:17: LaunchConditions. | |
Action ended 15:06:17: LaunchConditions. Return value 1. | |
Action start 15:06:17: ValidateProductID. | |
Action ended 15:06:17: ValidateProductID. Return value 1. | |
Action start 15:06:17: CostInitialize. | |
Action ended 15:06:17: CostInitialize. Return value 1. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Requires Application Initialization module in IIS 7.5 or (built in already to) IIS 8. --> | |
<!-- http://www.iis.net/downloads/microsoft/application-initialization --> | |
<?xml version="1.0" encoding="utf-8"?> | |
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | |
<Product> | |
<!-- ... --> | |
<InstallExecuteSequence> | |
<Custom Action="CA.AppPoolSetStartMode" Before="InstallFinalize">NOT (REMOVE="ALL")</Custom> | |
<Custom Action="CA.ApplicationSetPreloadEnabled" Before="InstallFinalize">NOT (REMOVE="ALL")</Custom> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
events { | |
worker_connections 1024; | |
} | |
http { | |
upstream appname { | |
server 127.0.0.1:3000; | |
server 127.0.0.1:3001; | |
} |
#Title TBD
###Abstract How many languages and APIs can we squeeze into an hour? Let's take a tour through as many popular REST APIs as we can by writing 5 minute applications in a variety of languages (JavaScript, Ruby, Python, C#, etc). We'll discuss some of the finer points of REST API design and why some languages are naturally better for consuming web services than others.
Talk Type: Survey
Track: /etc
Video Approval: Yes
Talk Duration: 50 minutes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// background transparency | |
background-transparency(color, alpha = 1) | |
ms-color = argb(color, alpha) | |
background rgb(color) | |
background rgba(color, alpha) | |
.lt-ie8 & | |
zoom 1 | |
.lt-ie9 & | |
background transparent | |
filter s('progid:DXImageTransform.Microsoft.gradient(startColorstr=%s,endColorstr=%s)', ms-color, ms-color) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This detects the presence of ClickOnce in IE, Chrome (with extension), and | |
Firefox (with extension). | |
It doesn't work if Firefox is using Microsoft's .NET Framework Assistant when | |
adding .NET information to the User Agent string is turned off (the default | |
setting as of late). I personally worked around this by using server logic to | |
detect if the X-ClickOnceSupport header was set. |