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
Disclaimer: I'm a brand ambassador of Bolt. | |
Restaurants: | |
- acucar & canela (cheap portuguese) https://maps.app.goo.gl/1NoGifCSLsJAjPjh9 | |
- sushi all you can eat lunch (cheap) https://maps.app.goo.gl/oUkTWhqQRaJdZVzy7 | |
- avoid: kebaps | |
- you can go to almost any restaurant in bairro alto. they are nice and usually not crazy expensive. and from there go directly to some of the bars below 😁 | |
Bars: | |
- Sentido Proibido 2 (cheapest large cocktails) https://maps.app.goo.gl/PMUDHZikEgdXLi2c8 |
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
{"widget":{"debug":"on","window":{"title":"Sample Konfabulator Widget","name":"main_window","width":500,"height":500},"image":{"src":"Images/Sun.png","name":"sun1","hOffset":250,"vOffset":250,"alignment":"center"},"text":{"data":"Click Here","size":36,"style":"bold","name":"text1","hOffset":250,"vOffset":100,"alignment":"center","onMouseUp":"sun1.opacity = (sun1.opacity / 100) * 90;"}}} |
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 is a port of [this gist](https://gist.github.com/vkravets/5370589) | |
# I literally copied the code and ported it line by line, so all credits belong to the author, Vladimir Kravets. | |
require 'java' | |
# I guess this is necessary.. | |
# I'm on Fedora 23, I had to install the packages jna and jna-contrib | |
# on other platforms these two jar files might live in other locations | |
require '/usr/share/java/jna.jar' | |
require '/usr/share/java/jna/jna-platform.jar' |
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
#![feature(result_expect)] | |
#[macro_use] | |
extern crate clap; | |
extern crate image; | |
extern crate rustc_serialize; | |
use rustc_serialize::base64::ToBase64; | |
use rustc_serialize::hex::ToHex; |
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
macro_rules! construct_tuple { | |
(0,$it:expr) => (); | |
($n:expr, $e:expr) => ( | |
$e,construct_tuple!($n-1,$e) | |
); | |
} | |
#[test] | |
fn construct_tuple() { | |
let t = (construct_tuple!(2,1u8),); |
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
00000000002014e0 B __bss_start | |
w __cxa_finalize@@GLIBC_2.2.5 | |
00000000002014e0 D _edata | |
00000000002014e8 B _end | |
0000000000000808 T _fini | |
w __gmon_start__ | |
00000000000005f0 T _init | |
w _ITM_deregisterTMCloneTable | |
w _ITM_registerTMCloneTable | |
w _Jv_RegisterClasses |