I hereby claim:
- I am zaporylie on github.
- I am zaporylie (https://keybase.io/zaporylie) on keybase.
- I have a public key ASABwOebnU0g_uYA-djX90uUlTTaeMk1kTB0pZoKbCr0Wgo
To claim this, I am signing this object:
This is ApacheBench, Version 2.3 <$Revision: 1757674 $> | |
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ | |
Licensed to The Apache Software Foundation, http://www.apache.org/ | |
Completed 100 requests | |
Completed 200 requests | |
Completed 300 requests | |
Completed 400 requests | |
Completed 500 requests | |
Completed 600 requests |
I hereby claim:
To claim this, I am signing this object:
# Install openvpn | |
sudo apt install network-manager-openvpn-gnome | |
# Install curl & git | |
sudo apt install git curl |
# install fish | |
sudo apt-add-repository ppa:fish-shell/release-2 | |
sudo apt-get update | |
sudo apt-get install fish | |
# make fish the default shell | |
chsh -s /usr/bin/fish | |
# install fisher | |
curl -Lo ~/.config/fish/functions/fisher.fish --create-dirs git.io/fisher |
<?php | |
/** | |
* Get field/instance | |
*/ | |
function get_field_install($field_name) { | |
$field = field_info_field($field_name); | |
unset($field['columns']); | |
unset($field['id']); | |
unset($field['indexes']); | |
unset($field['foreign keys']); |
$view = new view(); | |
$view->name = 'FAQ'; | |
$view->description = ''; | |
$view->tag = 'default'; | |
$view->base_table = 'node'; | |
$view->human_name = 'FAQ'; | |
$view->core = 7; | |
$view->api_version = '3.0'; | |
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */ |
function generateHtmlList() { | |
var offset = 2; | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var sheet = ss.getSheets()[0]; | |
var range = sheet.getRange(1,1,(sheet.getLastColumn() - offset),3); | |
var data = range.getValues(); | |
var stringToDisplay = ''; | |
for (var i = offset; i < data.length; i++) { | |
stringToDisplay += data[i][1] + ' ('; |