Skip to content

Instantly share code, notes, and snippets.

View dirkteucher's full-sized avatar

dirk teucher dirkteucher

View GitHub Profile
@PurpleBooth
PurpleBooth / README-Template.md
Last active June 16, 2024 07:49
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

anonymous
anonymous / Loading animation circle.markdown
Created June 10, 2015 20:51
Loading animation circle

Loading animation circle

Loading animation that can be easily customised to change the look of the:

  1. Scale
  2. Color
  3. Custom image
  4. Speed
  5. Shape/Animation -- to a lesser extent
  6. Position
@zeffii
zeffii / LiDaR.py
Last active February 13, 2020 13:17 — forked from anonymous/LiDaR.py
import bpy
dfile = r"C:\Users\dealga\Desktop\Archive\SU8606_DSM_1M.asc"
getval = lambda i: next(i).split()[1]
with open(dfile) as ofile:
ncols = getval(ofile)
nrows = getval(ofile)
xllcorner = getval(ofile)
@pburtchaell
pburtchaell / styles.css
Last active February 25, 2024 12:24
VH and VW units can cause issues on iOS devices. To overcome this, create media queries that target the width, height, and orientation of iOS devices.
/**
* VH and VW units can cause issues on iOS devices: http://caniuse.com/#feat=viewport-units
*
* To overcome this, create media queries that target the width, height, and orientation of iOS devices.
* It isn't optimal, but there is really no other way to solve the problem. In this example, I am fixing
* the height of element `.foo` —which is a full width and height cover image.
*
* iOS Resolution Quick Reference: http://www.iosres.com/
*/