After getting this error:
There was on error while executing VBoxManage, a CLI used by Vagrant for controlling VirtualBox.
The command and stderr is shown below
Command: ["hostonlyif", "create"]
Stderr: 0%...
Progress state: NS_ERROR_FAILURE
| Calendar cal = Calendar.getInstance(); // creates calendar | |
| cal.setTime(new Date()); // sets calendar time/date | |
| cal.add(Calendar.HOUR_OF_DAY, 1); // adds one hour | |
| cal.getTime(); // returns new date object, one hour in the future |
After getting this error:
There was on error while executing VBoxManage, a CLI used by Vagrant for controlling VirtualBox.
The command and stderr is shown below
Command: ["hostonlyif", "create"]
Stderr: 0%...
Progress state: NS_ERROR_FAILURE
| CREATE INDEX trgm_idx ON domain_names USING gin (domain_name gin_trgm_ops); |
| -- returns word divided into smaller tokens, not shorter than value specified in | |
| -- MINIMUM_LENGTH. | |
| -- | |
| -- calling this with param `bobcat` will return 'bobcat bob obc bca cat bobc obca bcat bobca obcat' | |
| -- | |
| -- Please note that changing this function, especially the minimum length which it uses | |
| -- means that each INDEX which depends on it needs to be recreated | |
| create or replace function tokenize(varchar, integer, integer) returns varchar as | |
| $BODY$ declare |
| select function_name() from generate_series(1, 2000) |
| with recursive all_tags(rownum, id) as ( | |
| select 1::bigint, id, parent_id from tags where id = :startingTagId | |
| union all | |
| select rownum + 1, c.id, c.parent_id | |
| from all_tags a | |
| inner join tags c on a.parent_id = c.id) | |
| select * from all_tags |
| import javax.net.ssl.SSLSocket; | |
| import javax.net.ssl.SSLSocketFactory; | |
| import java.io.*; | |
| /** Establish a SSL connection to a host and port, writes a byte and | |
| * prints the response. See | |
| * http://confluence.atlassian.com/display/JIRA/Connecting+to+SSL+services | |
| */ | |
| public class SSLPoke { | |
| public static void main(String[] args) { |
| ༼ つ◕_◕༽つ | |
| ಠ_ಠ | |
| ¯\_(ツ)_/¯ | |
| \( ゚◡゚)/ | |
| " Modeline and Notes { | |
| " vim: set sw=4 ts=4 sts=4 et tw=78 foldmarker={,} foldlevel=0 foldmethod=marker spell: | |
| " | |
| " __ _ _____ _ | |
| " ___ _ __ / _/ |___ / __ __(_)_ __ ___ | |
| " / __| '_ \| |_| | |_ \ _____\ \ / /| | '_ ` _ \ | |
| " \__ \ |_) | _| |___) |_____|\ V / | | | | | | | | |
| " |___/ .__/|_| |_|____/ \_/ |_|_| |_| |_| | |
| " |_| | |
| " |
| WITH RECURSIVE | |
| q (r, i, rx, ix, g) AS | |
| ( | |
| SELECT x + r::DOUBLE PRECISION * step, y + i::DOUBLE PRECISION * step, | |
| x + r::DOUBLE PRECISION * step, y + i::DOUBLE PRECISION * step, | |
| 0 | |
| FROM ( | |
| SELECT 0.25 x, -0.55 y, 0.002 step, r, i | |
| FROM generate_series(-40, 40) r | |
| CROSS JOIN |