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
Kushi Tsuru | Mon-Sun 11:30 am - 9 pm | |
---|---|---|
Osakaya Restaurant | Mon-Thu, Sun 11:30 am - 9 pm / Fri-Sat 11:30 am - 9:30 pm | |
The Stinking Rose | Mon-Thu, Sun 11:30 am - 10 pm / Fri-Sat 11:30 am - 11 pm | |
McCormick & Kuleto's | Mon-Thu, Sun 11:30 am - 10 pm / Fri-Sat 11:30 am - 11 pm | |
Mifune Restaurant | Mon-Sun 11 am - 10 pm | |
The Cheesecake Factory | Mon-Thu 11 am - 11 pm / Fri-Sat 11 am - 12:30 am / Sun 10 am - 11 pm | |
New Delhi Indian Restaurant | Mon-Sat 11:30 am - 10 pm / Sun 5:30 pm - 10 pm | |
Iroha Restaurant | Mon-Thu, Sun 11:30 am - 9:30 pm / Fri-Sat 11:30 am - 10 pm | |
Rose Pistola | Mon-Thu 11:30 am - 10 pm / Fri-Sun 11:30 am - 11 pm | |
Alioto's Restaurant | Mon-Sun 11 am - 11 pm |
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
Osakaya Restaurant | Mon-Thu, Sun 11:30 am - 9 pm / Fri-Sat 11:30 am - 9:30 pm | |
---|---|---|
The Stinking Rose | Mon-Thu, Sun 11:30 am - 10 pm / Fri-Sat 11:30 am - 11 pm | |
McCormick & Kuleto's | Mon-Thu, Sun 11:30 am - 10 pm / Fri-Sat 11:30 am - 11 pm | |
Mifune Restaurant | Mon-Sun 11 am - 10 pm | |
The Cheesecake Factory | Mon-Thu 11 am - 11 pm / Fri-Sat 11 am - 12:30 am / Sun 10 am - 11 pm | |
New Delhi Indian Restaurant | Mon-Sat 11:30 am - 10 pm / Sun 5:30 pm - 10 pm | |
Iroha Restaurant | Mon-Thu, Sun 11:30 am - 9:30 pm / Fri-Sat 11:30 am - 10 pm | |
Rose Pistola | Mon-Thu 11:30 am - 10 pm / Fri-Sun 11:30 am - 11 pm | |
Alioto's Restaurant | Mon-Sun 11 am - 11 pm |
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
use std::fs::File; | |
use std::io::BufReader; | |
use std::io::Read; | |
use std::io::Write; | |
use std::result; | |
use std::mem::transmute; | |
use std::mem::size_of; | |
const TRIE_SIZE: usize = 32768; |
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
use std::iter::Peekable; | |
use std::str::FromStr; | |
#[derive(Copy, Clone, PartialEq, Eq, Debug)] | |
struct Atom(usize); | |
struct StringPool { | |
symbols: Vec<String> | |
} |
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
pub struct RigidBody { | |
x: f32, | |
y: f32, | |
} | |
impl Serialize for RigidBody { | |
fn serialize<T: BitStream>(&mut self, stream: &mut T) -> Result { | |
stream.stream_f32(&mut self.x).unwrap(); | |
stream.stream_f32(&mut self.y).unwrap(); | |
Ok(()) |
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
typedef float f;typedef int i; | |
f t[2<<15]; | |
void parse_obj() { | |
f *l=t;i c;while((c=getchar())!=EOF)if((c=='v'||c=='f')&&scanf(" %f %f %f\n",l,l+1,l+2)==3)if(c=='v')l+=3;else{ | |
I k=(I){*l,*(l+1),*(l+2)}; | |
printf("FACE (%f, %f, %f), (%f, %f %f), (%f, %f, %f)\n", | |
t[k.x*3],t[k.x*3+1],t[k.x*3+2], | |
t[k.y*3],t[k.y*3+1],t[k.y*3+2], | |
t[k.z*3],t[k.z*3+1],t[k.z*3+2]); |
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
https://www.shadertoy.com/view/ltK3D1 |
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
#include <stdint.h> | |
#include <stdbool.h> | |
#include <X11/Xlib.h> | |
#include <X11/Xutil.h> | |
#include <X11/XKBlib.h> | |
#include <dlfcn.h> | |
#include <stdio.h> | |
#include <sys/syscall.h> | |
#include <time.h> |
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
#define STB_IMAGE_IMPLEMENTATION | |
#include "stb_image.h" | |
#define STB_IMAGE_WRITE_IMPLEMENTATION | |
#include "stb_image_write.h" | |
#define STBIR_NO_ALPHA_EPSILON | |
#define STB_IMAGE_RESIZE_IMPLEMENTATION | |
#include "stb_image_resize.h" | |
#include <stdbool.h> |
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
#include <stdint.h> | |
#include <X11/Xlib.h> | |
#include <X11/XKBlib.h> | |
#include <GL/glx.h> | |
#include <GL/gl.h> | |
#include <dlfcn.h> | |
#include <stdio.h> | |
#include <sys/syscall.h> | |
#include <time.h> |