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"?> | |
| <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/maven-v4_0_0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>com.maventest</groupId> | |
| <artifactId>lifecycle-test</artifactId> | |
| <packaging>pom</packaging> | |
| <version>1.0-SNAPSHOT</version> | |
| <name>aproject</name> | |
| <url>http://maven.apache.org</url> | |
| <scm> |
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"?> | |
| <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/maven-v4_0_0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>com.maventest</groupId> | |
| <artifactId>lifecycle-test</artifactId> | |
| <packaging>pom</packaging> | |
| <version>1.0-SNAPSHOT</version> | |
| <name>aproject</name> | |
| <url>http://maven.apache.org</url> | |
| <dependencies> |
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
| #!/bin/bash | |
| rm -f *-0.mp4* | |
| rm -f *.xm* | |
| for i in *.{MP4,mp4} | |
| do | |
| ffmpeg -i "$i" -vcodec copy -an "${i%.mp4}-0.mp4" | |
| exiftool -xmp:all -X -w! xml "$i" | |
| exiftool -TagsFromFile "${i%.mp4}.xml" "${i%.mp4}-0.mp4" | |
| exiftool -o "${i%.mp4}.xmp" -xmp:all "$i" | |
| exiftool -TagsFromFile "${i%.mp4}.xmp" "${i%.mp4}-0.mp4" |
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
| /usr/libexec/java_home -v 1.8 |
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
| echo test | sudo -S -u guest bash -c whoami |
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
| find . -type f -name "*.lrcat" -execdir zip '{}.zip' '{}' \; |
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
| "Hello world".inject("") { a, b -> b += a } |
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
| class ReverseString { | |
| public static void main(String[] args) { | |
| System.out.println("Hello World".chars().mapToObj(i -> Character.toString((char)i)).reduce("", (a, b) -> b + a)); | |
| } | |
| } |
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
| #!/bin/bash | |
| rm -rf ~/.Trash/* | |
| rm -rfv /Volumes/*/.Trashes |
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
| /Applications/dev/eclipse/jee-neon/Eclipse.app/Contents/MacOS/eclipse -clean -clearPersistedState | |
| /Applications/dev/eclipse/jee-neon/Eclipse.app/Contents/MacOS/eclipse -clean -refresh |
OlderNewer