Skip to content

Instantly share code, notes, and snippets.

View VickiLanger's full-sized avatar
🛠️
Building things

Vicki VickiLanger

🛠️
Building things
View GitHub Profile
@VickiLanger
VickiLanger / 4 step process
Created April 13, 2019 00:46
4 step process w/ icons and arrows
<div class="main-wrapper"> <!-Process for User looking for data-->
<div class="working-process-area">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="section-title text-center">
<h2>So, how does it work?</h2>
<p>What a good question. Here's how it works.</p> <!--this looked just fine with 2 lines of text-->
</div>
@ClintonLang
ClintonLang / fortune_funnyloadingmsgs.txt
Last active November 16, 2020 20:09
Funny Slack loading messages
......... Oh shit, you were waiting for me to do something? Oh okay, well then.
%
Not panicking...totally not panicking...er...everything's fine...
%
Following the white rabbit....
%
"Going the distance..."
%
The Elders of the Internet are contemplating your request...
%
@x86ed
x86ed / blag_model.py
Created March 30, 2012 03:57
Django blog model
import urllib2
import mimetypes
from django.conf import settings
from django.db import models
from django.contrib.auth.models import User
class Category(models.Model):
name = models.CharField(max_length=32)
class Meta: