Skip to content

Instantly share code, notes, and snippets.

View markaltmann's full-sized avatar
🎯
Focusing

Mark Altmann markaltmann

🎯
Focusing
View GitHub Profile
@markaltmann
markaltmann / pom.xml
Created March 28, 2020 19:15
Maven file for Asciidoc build
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>GROUP_ID</groupId>
<artifactId>asciidoc</artifactId>
<version>0.1</version>
@markaltmann
markaltmann / Jenkinsfile
Created March 28, 2020 19:14
Jenkinsfile for Asciidoc
#!/usr/bin/env groovy
// Good example for asciidoc-pdf maven:
// https://github.com/asciidoctor/asciidoctor-maven-examples/blob/master/asciidoctor-pdf-example/pom.xml
pipeline {
options {
buildDiscarder logRotator(
daysToKeepStr: '10',
numToKeepStr: env.BRANCH_NAME == 'master' ? '20' : '30' ,
artifactDaysToKeepStr: '10',
@markaltmann
markaltmann / asciidoc.adoc
Last active March 28, 2020 19:15
Asciidoc Maven Jenkins Pipeline example

Hello, AsciiDoc!

An introduction to AsciiDoc.

First Section

  • item 1

  • item 2

git submodule deinit <path_to_submodule>
git rm <path_to_submodule>
git commit-m "Removed submodule "
rm -rf .git/modules/<path_to_submodule>
@markaltmann
markaltmann / keybase.md
Created July 15, 2016 09:09
keybase.md

Keybase proof

I hereby claim:

  • I am markaltmann on github.
  • I am markaltmann (https://keybase.io/markaltmann) on keybase.
  • I have a public key ASA9nr-eL5NtyAtwnqvVya1t3rVc0_CgKiIWaagpKzvfRAo

To claim this, I am signing this object:

@markaltmann
markaltmann / Toggle WiFi
Last active November 6, 2020 19:08 — forked from albertbori/Installation.md
Automatically disable Wifi when an Ethernet connection (cable) is plugged in on a Mac.
# Overview
This is a bash script that will automatically turn your wifi off if you connect your computer to an ethernet connection and turn wifi back on when you unplug your ethernet cable/adapter. If you decide to turn wifi on for whatever reason, it will remember that choice. This was improvised from [this mac hint](http://hints.macworld.com/article.php?story=20100927161027611) to work with Yosemite, and without hard-coding the adapter names. It's supposed to support growl, but I didn't check that part. I did, however, add OSX notification center support. Feel free to fork and fix any issues you encounter.
Most the credit for these changes go to [Dave Holland](https://github.com/davidholland) and [Albert Bori](https://github.com/albertbori)
## Requirements
- Mac OSX 10+
- Administrator privileges