Skip to content

Instantly share code, notes, and snippets.

View binq2's full-sized avatar

Ridha Watanabe binq2

  • Tena, Ecuador
View GitHub Profile
@binq2
binq2 / hraly-con-shop.markdown
Last active March 6, 2019 18:50
Hraly con shop
@binq2
binq2 / fcc-calculator.markdown
Last active March 6, 2019 18:47
FCC Calculator
@binq2
binq2 / index.html
Created March 6, 2019 18:39
Novice Tic Tac Toe
<div class="container">
<section class="hero">
<div class="hero-body">
<div class="container">
<h1 class="title">
TicTacToe
</h1>
<h2 class="subtitle">
by Ridha Watanabe
</h2>
@binq2
binq2 / index.html
Last active March 6, 2019 18:34
Minimalist Random Quote Generator
<div class="quote"></div>
<div class="author"></div>
<div class="buttons">
<a id="clicker"><i class="fa fa-refresh" aria-hidden="true"></i>
</a>
<a id="tweet" href='#' target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</div>
<div class="footer">
@binq2
binq2 / index.html
Created August 22, 2018 04:35
Simple map with leaflet.js
<div id="map"></div>
var url="https://raider.io/guilds/us/dalaran/Harbingers%20of%20Chaos";
fetch(url).then(r => r.json())
.then(data => console.log(data))
.catch(e => console.log("Booo"))
var achieve_url('https://raider.io/api/guilds/us/dalaran/Harbingers%20of%20Chaos')
function achievement() {
return new Promise((resolve, reject) => {
fetch(achieve_url)
.then(resp => resp.json())
.then(information => {
achieve_json = information;
console.log("Achievements loaded");
resolve("yay")
})