Skip to content

Instantly share code, notes, and snippets.

View willwoodlief's full-sized avatar

Will Woodlief willwoodlief

  • Texas Software Developers
  • Texas, USA
  • 20:38 (UTC -05:00)
View GitHub Profile
@zit0un
zit0un / GeoJSON-OAS3.yaml
Last active November 15, 2024 13:17
OpenAPI (OAS3/Swagger) definition for GeoJSON objects
openapi: 3.0.0
info:
version: 1.0.1
title: GeoJSON format
description: >
This document defines the GeoJSON format as an OpenAPI.
It contains the definitions for 'Feature' object and 'FeatureCollection'
objects, as well as the definitions for all 'Geometry' objects.
It conforms with the 'RFC-7946' standard from IETF (August 2016 version)
@Avery-Woodlief
Avery-Woodlief / Calculator App.py
Created April 11, 2020 13:40
This is a calculator GUI using Python3
from tkinter import *
from bokeh.colors.named import black, grey, whitesmoke
root = Tk()
root.title("Homemade Calculator")
root.iconbitmap("C:/Users/Avery/Desktop/Python Programs/Images/Calc.ico")
e = Entry(root, width=90, borderwidth=5, bg=black, fg=whitesmoke)
e.grid(row=0, column=0, columnspan=9, padx=10, pady=10)
@willwoodlief
willwoodlief / mysql_backup
Last active July 28, 2017 00:36 — forked from timkuijsten/mysql_backup
mysql per database backup without mysql.event warning
#!/bin/sh -
# this script is from https://gist.github.com/timkuijsten/6067107
# The important part is not to put the password as an argument to the mysql
# commands, i.e. don't use the -p option. Instead use a .my.cnf file in the home
# dir of the user you are running this script as, i.e. /home/records/.my.cnf if running
# as root. Make the file readable for the owner only: chmod 400 /home/records/.my.cnf
# See: http://stackoverflow.com/questions/17829659/securing-backup-credentials-for-mysqldump/17844997#17844997
umask 007
@bawasaab
bawasaab / sqlite.php
Last active July 3, 2018 14:41 — forked from nannubest/sqlite.php
SQLite3 Class for PHP
<?php
class Db_core
{
private $sqlite;
private $mode;
function __construct( $filename, $mode = SQLITE3_ASSOC )
{
$this->mode = $mode;
$this->sqlite = new SQLite3($filename);
@brianoz
brianoz / class-virtualthemedpage-bc.php
Created February 20, 2014 01:10
WordPress Virtual page with theme
<?php
/*
* Virtual Themed Page class
*
* This class implements virtual pages for a plugin.
*
* It is designed to be included then called for each part of the plugin
* that wants virtual pages.
*
* It supports multiple virtual pages and content generation functions.
@mindplay-dk
mindplay-dk / README.md
Last active September 3, 2024 11:39
ISO 3166-2 Country and State/Region Tables for MySQL