Skip to content

Instantly share code, notes, and snippets.

View heath3n's full-sized avatar

Matt Newell heath3n

  • Boston, MA
View GitHub Profile
###############################################################################################
##################################### WORKING (INPUT) #########################################
###############################################################################################
H:\Program Files\QGIS 3.20.0>gdalinfo -stats H:/Matt/Downloads/Heightmaps/840625_ne.tif
Driver: GTiff/GeoTIFF
Files: H:/Matt/Downloads/Heightmaps/840625_ne.tif
Size is 1250, 1250
Coordinate System is:
PROJCRS["NAD83(2011) / Connecticut (ftUS)",
@heath3n
heath3n / SetPivot.cs
Created December 9, 2020 20:03
Set pivot point of Unity GameObject
/*
* Version: 1.0
* Author: Yilmaz Kiymaz (@VoxelBoy)
* Purpose: To be able to change the pivot of Game Objects
* without needing to use a separate 3D application.
* License: Free to use and distribute, in both free and commercial projects.
* Do not try to sell as your own work. Simply put, play nice :)
* Contact: VoxelBoy on Unity Forums
*/
@heath3n
heath3n / emojis.json
Created October 8, 2020 20:18 — forked from oliveratgithub/emojis.json
Emoji-list with emojis, names, shortcodes, unicode and html entities [massive list]
{
"emojis": [
{"emoji": "👩‍👩‍👧‍👧", "name": "family: woman, woman, girl, girl", "shortname": ":woman_woman_girl_girl:", "unicode": "1F469 200D 1F469 200D 1F467 200D 1F467", "html": "👩‍👩‍👧‍👧", "category": "People & Body (family)", "order": ""},
{"emoji": "👩‍👩‍👧‍👦", "name": "family: woman, woman, girl, boy", "shortname": ":woman_woman_girl_boy:", "unicode": "1F469 200D 1F469 200D 1F467 200D 1F466", "html": "👩‍👩‍👧‍👦", "category": "People & Body (family)", "order": ""},
{"emoji": "👩‍👩‍👦‍👦", "name": "family: woman, woman, boy, boy", "shortname": ":woman_woman_boy_boy:", "unicode": "1F469 200D 1F469 200D 1F466 200D 1F466", "html": "👩‍👩‍👦‍👦", "category": "People & Body (family)", "order": ""},
{"emoji": "👨‍👩‍👧‍👧", "name": "family: man, woman, girl, girl", "shortname": ":man_woman_girl_girl:", "unicode": "1F468 200D 1F469 200D 1F467 200D 1F467", "html": "👨‍👩&z
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
// See: https://twitter.com/shakil807/status/1042127387515858949
// https://github.com/pchmn/MaterialChipsInput/tree/master/library/src/main/java/com/pchmn/materialchips
// https://github.com/BelooS/ChipsLayoutManager
void main() => runApp(ChipsDemoApp());
@heath3n
heath3n / main.dart
Created December 5, 2018 18:16 — forked from mikemimik/main.dart
Flutter: Custom theme data
import 'package:flutter/material.dart';
import 'theme.dart' as Theme;
void main() {
runApp(
new MaterialApp(
title: 'CompanyApp',
color: Theme.CompanyColors.blue[500],
theme: Theme.CompanyThemeData,
home: new Scaffold(
@heath3n
heath3n / BatchBuilderSettings.cs
Created August 31, 2018 23:34 — forked from msklywenn/BatchBuilderSettings.cs
Unity Batch Builder
using UnityEditor;
using UnityEngine;
using System.IO;
using System;
class BatchBuilderSettings : ScriptableObject
{
[Serializable]
public struct Settings
{