create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
package com.example.jersey; | |
import javax.net.ssl.*; | |
import javax.ws.rs.client.Client; | |
import javax.ws.rs.client.ClientBuilder; | |
import javax.ws.rs.core.Configuration; | |
import java.security.KeyManagementException; | |
import java.security.NoSuchAlgorithmException; | |
import java.security.SecureRandom; | |
import java.security.cert.CertificateException; |
Source: StackOverflow
With a Linux Guest run this:
sudo dd if=/dev/zero | pv | sudo dd of=/bigemptyfile bs=4096k
sudo rm -rf /bigemptyfile
package com.rajendarreddyj.basics.regex.test; | |
import java.util.Scanner; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
/** | |
* @author rajendarreddy.jagapathi | |
* |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>App Redirection</title> | |
</head> | |
<body> | |
<!-- | |
NOTE: This was a great hack in days gone by, but now both Apple and Google have improved their support for custom | |
protocol handlers. |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Open App</title> | |
<!-- | |
URL Params: | |
customSchemeURL: Your custom scheme app |
# Let’s see all the packages marked as rc by dpkg. Know more about the state rc. | |
# This state means that the configuration files are not yet removed. You can see how a single package can be removed. | |
# $ dpkg --list |grep "^rc" | |
# rc bsh 2.0b4-10ubuntu2 Java scripting environment (BeanShell) Versi | |
# rc devicekit-disks 007-2ubuntu6 abstraction for enumerating block devices | |
# rc devicekit-power 011-1ubuntu2 abstraction for power management | |
# rc dvipdfmx 1:20090115-1.2 A DVI to PDF translator with CJK support | |
# rc gnome-blackjack 1:2.28.0-0ubuntu3 Blackjack casino card game | |
# rc groovy 1.6.4-4ubuntu2 |
#!/bin/sh | |
# set -euxo pipefail | |
# File: adbhostgen.sh | |
# | |
# Script to generate massive block lists for DD-WRT | |
# | |
# AUTHOR: Manish Parashar | |
# | |
# https://github.com/m-parashar/adbhostgen | |
# https://gist.github.com/m-parashar/ee38454c27f7a4f4e4ab28249a834ccc |
#!/bin/sh | |
set -e | |
set -x | |
for package in $(npm -g outdated --parseable --depth=0 | cut -d: -f3) | |
do | |
npm -g install "$package" | |
done |