Skip to content

Instantly share code, notes, and snippets.

View PupSpikeChaos's full-sized avatar

Pup SpikeChaos PupSpikeChaos

  • San Antonio TX
  • 05:25 (UTC -05:00)
View GitHub Profile
@PupSpikeChaos
PupSpikeChaos / flexbasis.css
Last active April 21, 2022 08:41
Modified hw1.css file
.container {
font-family: arial, sans-serif;
margin: 0;
padding: 0;
list-style-type: none;
display: flex;
flex-wrap: wrap;
}
.flex {
@PupSpikeChaos
PupSpikeChaos / US Zip Codes from 2013 Government Data
Created July 6, 2020 20:56 — forked from erichurst/US Zip Codes from 2013 Government Data
All US zip codes with their corresponding latitude and longitude coordinates. Comma delimited for your database goodness. Source: http://www.census.gov/geo/maps-data/data/gazetteer.html
This file has been truncated, but you can view the full file.
ZIP,LAT,LNG
00601,18.180555, -66.749961
00602,18.361945, -67.175597
00603,18.455183, -67.119887
00606,18.158345, -66.932911
00610,18.295366, -67.125135
00612,18.402253, -66.711397
00616,18.420412, -66.671979
00617,18.445147, -66.559696
@PupSpikeChaos
PupSpikeChaos / flutter_layouts_challenge.dart
Last active May 17, 2019 06:52
Flutter Layouts Challenge - Angela Yu Course (The Complete Flutter Development Bootcamp with Dart on Udemy)
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(