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
| // maybe session.local, or maybe session.option.local. Not sure. | |
| var binaryLocal = session.local.binary(function(value) { | |
| // value is the newly requested value for this. | |
| // Barring an error thrown, binaryLocal.value will equal value after the function call ends. | |
| // Do anything needed here, like proceed if client declined, or whatever. | |
| // can throw to decline support (forces false) | |
| // Forces IAC WONT, regardless of if this is a request or response. | |
| // (but tracks which it is internally.) |
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
| ~/Work/ | |
| env/src/github.com/natmeox/mess (git: github.com/natmeox/mess.git) | |
| mess/ (symlink -> env/src/github.com/natmeox/mess) | |
| main.go (package main) | |
| auth.go (package main) | |
| game.go (package main) | |
| ... | |
| templates/ | |
| index.html |
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
| declare @employee varchar(20) | |
| set @employee = '055320'; | |
| WITH Employees (Employee, Level, Boss, Name, BTL) AS ( | |
| SELECT | |
| 1 AS Level, | |
| NULL AS Boss, | |
| EM.Employee, | |
| EM.LastName + ', ' + EM.PreferredName AS Name, | |
| BTL.LastName + ', ' + BTL.PreferredName AS BTL |
NewerOlder