Skip to content

Instantly share code, notes, and snippets.

View funkeyfreak's full-sized avatar
:octocat:
Searching for meaning in the endless void...

Dalin Williams funkeyfreak

:octocat:
Searching for meaning in the endless void...
View GitHub Profile
@funkeyfreak
funkeyfreak / README.md
Last active December 15, 2021 00:54
Handy-Dandy Helpers for Working with GitHub Issues Accross Multiple Repositories

My Workflow For Working Across Multiple Repositories (In GitHub)

So, you work with many, many repositories in github, and you want to use github issues? Then you're in the right place! For the past seven years, I have been working to better streamline my workflow between milestone creation, issue creation, and projects - especally as I am now a senior engineer.

The process I am suggesting is this blog post is no-where near perfect. However, it is a good jumping-off point. If you have any suggestions on how to improve this process, please let me know!

Setting Things Up

First, we need to create our folder structures

@funkeyfreak
funkeyfreak / README.md
Last active January 6, 2020 20:35
Get Check the Signing Status of Assemblies in a Nuget Package

Introduction

extract-and-test is a script which tests the .dll(s) in a nuget package to verify they are strong-name signed using the sn tool.

Extract And Check Demo

Setup - Windows

First, install scoop by running Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh'). Then, in a new window, install the remainding requirements for this script by running ./instal.ps1 in a new elevated instance of powershell.

Setup - Debian Linux

@funkeyfreak
funkeyfreak / pom.xml
Created October 11, 2017 01:17
bigo pom
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!--<parent>
<groupId>com.gitgood.crackingthecodinginterview</groupId>
<artifactId>crackingthecodinginterview</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
package example
import "fmt"
type Resource interface {
Href() string
}
type Customer struct {
Id UUID.uuid
@funkeyfreak
funkeyfreak / README.md
Last active September 15, 2017 17:22
How to set up a FREE secure online password store

Setting gopass, a FREE password manager

Or just pass, if you are a horrible person

This is the internal password repository for gopass. Inorder to setup your gopass, see below. For any questions that are not on this page, checkout the gopass documentation.

Also, internet security is becoming more and more of a necessity. Password managers are generally subscription based, but this is FREE. This will hopefully help those who are on the fence of moving to a password manager.

Purpose

To ensure a secure, modular password solution that is scalable across multiple clients. If you are installing this for personal use, awesome!

Security is important. 'nough said.

@funkeyfreak
funkeyfreak / init.coffee
Last active November 10, 2017 19:29
Atom Packages.json sync
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->