Skip to content

Instantly share code, notes, and snippets.

View dahlbyk's full-sized avatar

Keith Dahlby dahlbyk

View GitHub Profile
@dahlbyk
dahlbyk / index.html
Last active August 10, 2020 15:22
Responsive Table with Inline Form (Grid)
<!DOCTYPE html>
<html>
<head>
<title>Grid Table Test</title>
<link href="styles.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<table>
<thead>
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://developer.intuit.com/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://developer.intuit.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">WebService for QBFS created using ASP.NET to troubleshoot QuickBooks WebConnector</wsdl:documentation>
<wsdl:types>
<s:schema elementFormDefault="qualified" targetNamespace="http://developer.intuit.com/">
<s:element name="serverVersion">
<s:complexType />
</s:element>
<s:element name="serverVersionResponse">
<s:complexType>
@dahlbyk
dahlbyk / PowerShell_transcript.ZDeF3Zud.20180606152552.txt
Created June 6, 2018 20:40
PowerShell 6.0.2: PowerShellGet Conflict
**********************
PowerShell transcript start
Start time: 20180606152552
Username: <redacted>\<redacted>
RunAs User: <redacted>\<redacted>
Configuration Name:
Machine: <redacted> (Microsoft Windows NT 6.2.9200.0)
Host Application: C:\Program Files (x86)\PowerShell\6.0.2\pwsh.dll
Process ID: 11508
PSVersion: 6.0.2
static class Original
{
// Adding new extensions is simple copy/paste
public static Int32? ConvertToInt32(this string value)
{
return Int32.TryParse(value, out var result) ? result : (Int32?)null;
}
public static Int64? ConvertToInt64(this string value)
@dahlbyk
dahlbyk / log.txt
Created October 12, 2017 17:24
EF Migration LocalDB Error
PS> Update-Database -Verbose
Using project 'src\RedactedWeb'.
Using startup project 'src\RedactedWeb'.
Build started...
Build succeeded.
C:\Program Files\dotnet\dotnet.exe exec --depsfile C:\Dev\Redacted3\src\RedactedWeb\bin\Debug\netcoreapp1.1\RedactedWeb.deps.json --additionalprobingpath C:\Users\Keith\.nuget\packages --runtimeconfig C:\Dev\Redacted3\src\RedactedWeb\bin\Debug\netcoreapp1.1\RedactedWeb.runtimeconfig.json C:\Users\Keith\.nuget\packages\microsoft.entityframeworkcore.tools\1.1.2\tools\netcoreapp1.0\ef.dll database update --verbose --no-color --prefix-output --assembly C:\Dev\Redacted3\src\RedactedWeb\bin\Debug\netcoreapp1.1\RedactedWeb.dll --startup-assembly C:\Dev\Redacted3\src\RedactedWeb\bin\Debug\netcoreapp1.1\RedactedWeb.dll --project-dir C:\Dev\Redacted3\src\RedactedWeb --content-root C:\Dev\Redacted3\src\RedactedWeb --data-dir C:\Dev\Redacted3\src\RedactedWeb\bin\Debug\netcoreapp1.1\ --root-namespace RedactedWeb
Using assembly 'RedactedWeb'.
Using startup assembly 'RedactedWeb'.
Using a
@dahlbyk
dahlbyk / init.coffee
Created June 9, 2017 15:30
Atom Command + Keymap to Disable vim-mode-plus
atom.commands.add 'atom-text-editor',
'user:toggle-vim-mode': (event) ->
if atom.packages.isPackageDisabled("vim-mode-plus")
atom.packages.enablePackage("vim-mode-plus")
else
atom.packages.disablePackage("vim-mode-plus")
@dahlbyk
dahlbyk / github.md
Last active April 22, 2023 11:48
Mastering GitHub

Mastering GitHub

GitHub is often used as a basic Git host, but its platform has so much more to offer. From simple and powerful issues and pull requests, to advanced features for power users and integrators, it’s a tool worth knowing well in its own right. This session will review everything you need to know to master collaboration with GitHub, from best practices for GitHub Issues and how it represents basic Git concepts, to hidden features and the tools enabling its developer ecosystem.

  • Git Hosting
@dahlbyk
dahlbyk / projects.graphql
Created September 15, 2016 00:09
GraphQL to fetch GitHub Projects+Columns+Cards with issue/PR detail for a specific repo.
{
search(type: REPOSITORY, query: "org:huboard-testing spooky-octo-pug", first: 1) {
edges {
node {
__typename
... on Repository {
owner {
id
}
name
[alias]
co = checkout
# New branch
nb = checkout origin -b
# Push new branch
pnb = push -u origin HEAD
# Log Graph
@dahlbyk
dahlbyk / github-timeline-events-comparison.md
Last active May 11, 2023 00:29
GitHub API Comparison: Issue Events vs Issue Timeline