Skip to content

Instantly share code, notes, and snippets.

View mikecarr's full-sized avatar

ViperFPV mikecarr

  • 13:04 (UTC -07:00)
View GitHub Profile
; VTXMenu Ini file format
; * Sections are pages
; * Sections can have Submenus or Options or Commands
; * Submenus link to other Sections
; * Options have a special colon seperated format in this order
; Name
; Range or List
; Command to read the value
; Command to write the value
@mikecarr
mikecarr / aliases
Last active August 8, 2019 15:03
Some fun aliases
# handy short cuts #
alias c='clear'
alias ..='cd ..'
alias h='history -20'
alias j='jobs -l'
alias ports='netstat -tulanp'
@mikecarr
mikecarr / p4merge4git.md
Created July 22, 2019 22:16 — forked from tony4d/p4merge4git.md
Setup p4merge as a visual diff and merge tool for git
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xml>
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<!-- encoders are assigned the type
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - [%X{loggingCorrelationToken}] %msg%n</pattern>
</encoder>
Spring Boot
list of starters
https://github.com/spring-projects/spring-boot/tree/master/spring-boot-project/spring-boot-starters
--------------------------------------------------------------------
SPRING INITIALIZR
http://start.spring.io
brew install spring boot
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://new.webservice.namespace" targetNamespace="http://new.webservice.namespace">
<wsdl:types>
<xs:schema targetNamespace="http://new.webservice.namespace" elementFormDefault="qualified"/>
</wsdl:types>
<wsdl:message name="NewMessageRequest">
<wsdl:part name="parameter" type="xs:string"/>
</wsdl:message>
<wsdl:message name="NewMessageResponse">
<wsdl:part name="parameter" type="xs:string"/>
@mikecarr
mikecarr / gist:6909959
Created October 9, 2013 22:57
pip log
Using PyPI mirrors: http://g.pypi.python.org/simple/, http://b.pypi.python.org/simple/, http://e.pypi.python.org/simple/, http://d.pypi.python.org/simple/, http://f.pypi.python.org/simple/, http://c.pypi.python.org/simple/, http://a.pypi.python.org/simple/
Downloading/unpacking suds (from -r /staging/staged/app/requirements.txt (line 1))
Getting page http://pypi.python.org/simple/suds
URLs to search for versions for suds (from -r /staging/staged/app/requirements.txt (line 1)):
* http://pypi.python.org/simple/suds/
* http://g.pypi.python.org/simple/suds/
* http://b.pypi.python.org/simple/suds/
* http://e.pypi.python.org/simple/suds/
* http://d.pypi.python.org/simple/suds/
* http://f.pypi.python.org/simple/suds/
@mikecarr
mikecarr / log4j.properties
Created October 17, 2012 21:19
log4j.properties
log4j.rootCategory=INFO, stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %t %c{2}:%L - %m%n
log4j.category.org.springframework.test=WARN
log4j.category.org.springframework.context=WARN
log4j.category.org.springframework.beans=WARN
log4j.category.org.springframework.beans.factory.xml=INFO