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
| ./configure \ | |
| --prefix=/etc/nginx \ | |
| --sbin-path=/usr/sbin/nginx \ | |
| --modules-path=/usr/lib64/nginx/modules \ | |
| --conf-path=/etc/nginx/nginx.conf \ | |
| --error-log-path=/var/log/nginx/error.log \ | |
| --http-log-path=/var/log/nginx/access.log \ | |
| --pid-path=/var/run/nginx.pid \ | |
| --lock-path=/var/run/nginx.lock \ | |
| --http-client-body-temp-path=/var/cache/nginx/client_temp \ |
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
| extern crate rusoto_core; | |
| extern crate rusoto_rds; | |
| use rusoto_core::request::HttpClient; | |
| use rusoto_core::credential::DefaultCredentialsProvider; | |
| use rusoto_core::Region; | |
| use rusoto_rds::{DescribeDBClustersMessage, Rds, RdsClient}; | |
| fn main() { |
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
| const std = @import("std"); | |
| pub fn main() void { | |
| var i: i32 = 0; | |
| var j: i32 = 0; | |
| while (i < 10) { | |
| while (j < 10) { | |
| std.debug.warn("i: {}, j: {}\n", i, j); | |
| j += 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
| extern crate sdl2; | |
| extern crate sdl2_image; | |
| use std::path::Path; | |
| use sdl2::Sdl; | |
| use sdl2::video::Window; | |
| use sdl2::render::{Renderer, Texture}; | |
| use sdl2::surface::Surface; | |
| use sdl2::event::Event; |
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
| layout(location = 0) in vec4 position; | |
| layout(location = 1) in vec4 color; | |
| smooth out vec4 theColor; | |
| uniform vec2 offset; | |
| uniform mat4 perspectiveMatrix; | |
| void main() { |
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
| ➜ ~ brew -v | |
| Homebrew 0.9.3 | |
| ➜ ~ brew --config | |
| HOMEBREW_VERSION: 0.9.3 | |
| HEAD: 81934ef9256ca49c2b754efaa9c13c534722a629 | |
| HOMEBREW_PREFIX: /usr/local | |
| HOMEBREW_CELLAR: /usr/local/Cellar | |
| CPU: 8-core 64-bit ivybridge | |
| OS X: 10.8.2-x86_64 | |
| Xcode: 4.5.2 |