Skip to content

Instantly share code, notes, and snippets.

View DanOliverBC's full-sized avatar
🎾
Watching Federer highlight videos on Youtube

Daniel Oliver DanOliverBC

🎾
Watching Federer highlight videos on Youtube
View GitHub Profile
git svn clone --stdlayout --authors-file=authors.txt
git svn clone http://bouxbuildsvn.bc.com/WoodSVNProjects/WoodApps/RailTracing/trunk/RailTracingWood/ -r HEAD --no-minimize-url -A authors-transform.txt C:/rt
@DanOliverBC
DanOliverBC / postcss.config.js
Created March 5, 2020 16:55
Using tailwind css with buefy/bulma classes
const path = require("path");
const purgecss = require("@fullhuman/postcss-purgecss")({
// Specify the paths to all of the template files in your project
content: [
"./src/**/*.html",
"./src/**/*.vue",
path.join(__dirname, "./node_modules/buefy/**/*.@(vue|js)")
// etc.
],
@DanOliverBC
DanOliverBC / wpitgoals2020.md
Last active January 6, 2020 17:02
WP IT Goals for 2020

WP IT Goals for 2020

What would we like to get done if we had no other projects to work on?

  • AMTools move to Vue / Microservice architecture for entire profitability
  • AMTools split project/goal/profit tracker into individual projects
  • SATracker improve Hibernate responsiveness, update/improve JPA (Spring Data)
  • MOM move to Java 8, dependencies using Maven, running on Websphere Liberty or Tomcat
  • Create some type of service registry/discovery in Azure.
  • Look at a customer/user master that apps can share
We couldn’t find that file to show.
@DanOliverBC
DanOliverBC / danobox.txt
Created December 12, 2019 20:39
Boxstarter.org new computer install
cinst dbeaver
cinst intellijidea-ultimate
cinst sublimetext3
cinst googlechrome
cinst git
cinst nodejs
cinst insomnia-rest-api-client
cinst microsoft-windows-terminal
cinst adobereader
cinst 7zip.install
@DanOliverBC
DanOliverBC / commitHistory.sh
Created November 12, 2019 16:28
Gets git log commits for a time period and outputs them to a csv
echo "commit id,author,date,comment,changed files,lines added,lines deleted" > res.csv 
git log --since='2019-01-01' --date=local --all --pretty="%x40%h%x2C%an%x2C%ad%x2C%x22%s%x22%x2C" --shortstat | tr "\n" " " | tr "@" "\n" >> res.csv