Skip to content

Instantly share code, notes, and snippets.

View Natetronn's full-sized avatar

Nathan Doyle Natetronn

View GitHub Profile
@Natetronn
Natetronn / theme.txt
Created November 2, 2021 05:09 — forked from r0manas/theme.txt
Ventoy config + theme
# GRUB2 gfxmenu Linux theme
# Designed for any resolution
# Global Property
title-text: ""
desktop-image: "background.jpg"
desktop-color: "#000000"
terminal-font: "Terminus Regular 14"
terminal-box: "terminal_box_*.png"
terminal-left: "0"
@Natetronn
Natetronn / basic_ui_documented.py
Created October 15, 2021 22:31 — forked from AzureDVBB/basic_ui_documented.py
A commented template for making simple UI in blender using the bpy python API
#import the bpy module to access blender API
import bpy
#WARNING: this is written and tested for blender 2.79
#blender 2.8 and newer will likely have a different python API
#create a property group, this is REALLY needed so that operators
#AND the UI can access, display and expose it to the user to change
#in here we will have all properties(variables) that is neccessary
class CustomPropertyGroup(bpy.types.PropertyGroup):
@Natetronn
Natetronn / grub.cfg
Created October 19, 2020 20:51 — forked from Pysis868/grub.cfg
My own configuration file for GRUB2 to boot various live distributions of Linux-based operating systems, along with some system tools. I tried to include a lot of sample configuration entries, even if I don't currently use them, so it may help others. Exceedingly long blog post: http://tehfishyblog.logdown.com/chips/306146-a-homemade-ultimate-bo…
# Config for GNU GRand Unified Bootloader (GRUB) (2)
# /boot/grub/grub.cfg
# or
# /boot/grub2/grub.cfg
# This grub.cfg file was created by Lance http://www.pendrivelinux.com
# Suggested Entries and the suggestor, if available, will also be noted.
# and then improved by Pysis.
@Natetronn
Natetronn / pyproject.toml
Created July 3, 2020 20:03
poetry pyproject.toml
[tool.poetry]
name = "some name"
version = "0.1.0"
description = "some description"
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = "^3.7"
pyqt5 = "5.15.0"
# Maintainer: Zach Hoffman <zach@zrhoffman.net>
pkgname=docksal
pkgver=1.13.1
pkgrel=1
epoch=1
pkgdesc='All-purpose web-development environment based on Docker and Docker Compose.'
arch=('any')
url='https://docksal.io/'
license=('MIT')
@Natetronn
Natetronn / craft-specific-syntax.md
Last active August 29, 2015 14:19
Craft CMS Project Specific Syntax Highlighting for HTML (Twig)
@Natetronn
Natetronn / .editorconfig
Created April 16, 2015 23:15
Craft CMS Editor Config with PT Coding Standards - Find your IDE/Editor here: http://editorconfig.org/#download
# http://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
@Natetronn
Natetronn / quotes
Created March 16, 2015 17:29
Thoughts on quotes
Quotes can be damaging if read from the wrong state of mind. Some of us forget a whole life of successes can not be wrapped into one sentence. Life is not always so easily repeated.
@Natetronn
Natetronn / stash-columns.html
Created July 22, 2014 18:58
An easy way to build Columns in ExpressionEngine using Stash - This is a 2 column, 10 item per column, with pagination example
{exp:stash:set_list name="directory" parse_tags="yes"}
{exp:channel:entries channel="profile" disable="categories|category_fields|profile_data|pagination" status="open" limit="200"}
{stash:company}{profile_company}{/stash:company}
{stash:first_name}{profile_first_name}{/stash:first_name}
{stash:last_name}{profile_last_name}{/stash:last_name}
{stash:title}{profile_title}{/stash:title}
{stash:address}{profile_address}{/stash:address}
{stash:address2}{profile_address2}{/stash:address2}
#!/bin/sh
# Import a remote database into a local database
# ----------------------------------------------
#
# Based on http://danherd.net/quick-script-synchronise-from-a-remote-expressionengine-database/
#
# Don’t forget chmod +x to make the script executable.
#
# Change the extension to .command to run the script directly from OS X Finder.