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
#!/bin/bash | |
# Vagrant provisioning script for setting up a simple 'nodejs' development | |
# environment. | |
# | |
# > vagrant up && vagrant ssh | |
# > cd <my-synced-folder> && npm install | |
# | |
# If you are also doing 'front-end' development, you might want to add: | |
# gem install sass |
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
/** | |
* See https://developer.valvesoftware.com/wiki/SteamID for details. | |
*/ | |
package steamid | |
import "strconv" | |
const ( | |
ACCOUNT_ID_BITS = 32 | |
ACCOUNT_TYPE_BITS = 4 |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<!-- Make the app behave more like a native app --> | |
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, width=device-width, height=device-height" /> | |
<!-- Bootstrap styles --> | |
<link href="css/bootstrap.css" rel="stylesheet" media="screen" /> |