Skip to content

Instantly share code, notes, and snippets.

View Liight's full-sized avatar
😎
Making Apps.

Todd Hynes Liight

😎
Making Apps.
View GitHub Profile
@Liight
Liight / flutter.md
Created April 8, 2020 02:09 — forked from matteocrippa/flutter.md
Flutter Cheatsheet

Flutter

A quick cheatsheet of useful snippet for Flutter

Widget

A widget is the basic type of controller in Flutter Material. There are two type of basic Widget we can extend our classes: StatefulWidget or StatelessWidget.

Stateful

StatefulWidget are all the widget that interally have a dynamic value that can change during usage. It can receive an input value in the constructor or reference to functions. You need to create two classes like:

@Liight
Liight / wget.sh
Created February 9, 2020 03:20 — forked from Dammmien/wget.sh
wget cheat sheet
# POST a JSON file and redirect output to stdout
wget -q -O - --header="Content-Type:application/json" --post-file=foo.json http://127.0.0.1
# Download a complete website
wget -m -r -linf -k -p -q -E -e robots=off http://127.0.0.1
# But it may be sufficient
wget -mpk http://127.0.0.1
# Download all images of a website
@Liight
Liight / index.html
Created December 3, 2018 19:34
Pomodoro Clock (JQuery /JavaScript, BootStrap)[FCC]
<div id="main">
<!-- MESSAGES -->
<h2 id="message">Pomodoro Clock</h2>
<!-- SETUP BUTTONS -->
<section class="clock row">
<div class="col-xs-3"></div>
<!-- SESSION CONTROL -->
<div class="session col-xs-2">
<p>Session Time</p>
<button class="btn btn-minus" id="sessionMinus">-</button>
@Liight
Liight / calculator-javascript-jquery.markdown
Created November 29, 2018 18:26
Calculator (JavaScript/jQuery)
@Liight
Liight / dr-seuss-quote-generator-jquery-javascript-bootstrap-api-fcc.markdown
Created November 28, 2018 19:21
Dr Seuss Quote Generator (JQuery /JavaScript, BootStrap, API)[FCC]
@Liight
Liight / index.html
Created November 27, 2018 19:41
Simon Game (JQuery /JavaScript, Bootstrap)
<div class="container">
<div class="container-content">
<div class="container-row">
<div class="left-button" id="green" onclick="makeSelection(1)">
</div>
<div class="right-button" id="red" onclick="makeSelection(2)">
</div>
</div>
<div class="container-row">
<div class="left-button" id="yellow" onclick="makeSelection(3)">
@Liight
Liight / index.html
Created November 25, 2018 20:30
Temperature App (JQuery/JavaScript, JSON, API)
<div class="background" data-img-width="1920" data-img-height="1080">
<div class="content-a">
<div class="content-b">
<div class="headline fixed-size">
<div class="fixed-size no-Pointer-Events" id="location">
</div>
<div class="fixed-size" id="unitButtons">
<button class="button" id="celsius">Celsius</button>
<button class="button" id="farenheight">Fahrenheit</button>
</div>
@Liight
Liight / index.html
Created November 17, 2018 21:47
Visualize Data w Bar Chart (JavaScript, API, D3, No-Framework REQ)[FCC]
<div class="main">
<div class='container'>
<div id='title'>United States GDP</div>
<div class='visHolder'></div>
</div>
</div>
<div class='infoHolder'></div>
@Liight
Liight / d3-choropleth-map-sass-javascript-d3-fcc.markdown
Created November 17, 2018 21:46
D3 Choropleth Map (Sass, JavaScript, D3)[FCC]

D3 Choropleth Map (Sass, JavaScript, D3)[FCC]

This is a Choropleth Map coded in D3/JavaScript using some infomational APIs

A Pen by Liight on CodePen.

License.

@Liight
Liight / d3-scatter-plot-javascript-jquery-d3-fcc.markdown
Created November 17, 2018 21:46
D3 Scatter Plot (JavaScript/JQuery, D3)[FCC]