- Download the perforce visual tool suite from here: http://www.perforce.com/perforce/downloads/index.html
- Copy only the p4merge.app file into your /Applications/ directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # handy short cuts # | |
| alias c='clear' | |
| alias ..='cd ..' | |
| alias h='history -20' | |
| alias j='jobs -l' | |
| alias ports='netstat -tulanp' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |