- Necessary libraries (all available in the standard distribution) - mark them for installation in Synaptic Package Manager
Core packages that bring the necessary dependencies(start here)
network-manager-l2tp-gnome (1.2.4-0ubuntu1
xenial1) strongswan (5.3.5-1ubuntu3.1) strongswan-plugin-openssl (5.3.5-1ubuntu3.1) All packages (after selecting list 1, make sure you have all these "Marked for Installation") that need to be installed network-manager-l2tp (1.2.4-0ubuntu1xenial1) network-manager-l2tp-gnome (1.2.4-0ubuntu1~xenial1) strongswan (5.3.5-1ubuntu3.1) strongswan-libcharon (5.3.5-1ubuntu3.1)
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/sh | |
# store the command and its paramters | |
CMD="$@" | |
# store the current dir | |
CUR_DIR=$(pwd) | |
# Let the person running the script know what's going on. | |
echo -e "\n\033[1mExecuting \033[0;32m'$CMD'\033[0m\033[1m against all repositories under $CUR_DIR ...\033[0m\n" |
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
import com.google.common.eventbus.EventBus | |
import com.google.common.eventbus.Subscribe | |
import io.micronaut.context.ApplicationContext | |
import spock.lang.Specification | |
import javax.inject.Inject | |
import javax.inject.Singleton | |
class EventBusSpec extends Specification { |
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
mvn archetype:generate \ | |
-DinteractiveMode=false \ | |
-DarchetypeGroupId=org.openjdk.jmh \ | |
-DarchetypeArtifactId=jmh-groovy-benchmark-archetype \ | |
-DgroupId=org.sample \ | |
-DartifactId=test \ | |
-Dversion=1.0 |
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/zsh | |
# store the command and its paramters | |
CMD="$@" | |
# store the current dir | |
CUR_DIR=$(pwd) | |
# Let the person running the script know what's going on. | |
echo "\n\033[1mExecuting \033[0;32m'$CMD'\033[0m\033[1m against all repositories under $CUR_DIR ...\033[0m\n" |
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 | |
# store the current dir | |
CUR_DIR=$(pwd) | |
# Let the person running the script know what's going on. | |
echo "\n\033[1mPulling in latest changes for all repositories...\033[0m\n" | |
# Find all git repositories and update it to the master latest revision | |
for i in $(find . -name ".git" | cut -c 3-); do |
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
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=Postman | |
Exec=postman | |
Icon=/opt/Postman/resources/app/assets/icon.png | |
Terminal=false | |
Type=Application | |
Categories=Development; |