I hereby claim:
- I am mss on github.
- I am mss (https://keybase.io/mss) on keybase.
- I have a public key whose fingerprint is RETU RN T HIS. PGP. GET_ FING ERPR INT( ); }
To claim this, I am signing this object:
| if [ "$(type -t __git_ps1)" ]; then | |
| PS1="\$(__git_ps1 '(%s)')$PS1" | |
| fi |
| Index: src/main/java/com/sun/jersey/client/apache4/ApacheHttpClient4Handler.java | |
| =================================================================== | |
| --- src/main/java/com/sun/jersey/client/apache4/ApacheHttpClient4Handler.java (revision 5854) | |
| +++ src/main/java/com/sun/jersey/client/apache4/ApacheHttpClient4Handler.java (working copy) | |
| @@ -71,6 +71,7 @@ | |
| import javax.ws.rs.core.MultivaluedMap; | |
| import java.io.BufferedInputStream; | |
| import java.io.ByteArrayInputStream; | |
| +import java.io.ByteArrayOutputStream; | |
| import java.io.Closeable; |
| blockdiag { | |
| orientation = portrait; | |
| default_shape = roundedbox; | |
| default_group_color = "#808080"; | |
| user [shape = actor] | |
| inet [shape = cloud]; | |
| user -> inet |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| config.vm.box = "ubuntu-precise-12.04.x-amd64-virtualbox-cloudimg" | |
| config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box" | |
| config.vm.provision "shell" do |shell| | |
| # Put the path to your playbook here |
| /* [...] | |
| * | |
| * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved. | |
| * | |
| * The contents of this file are subject to the terms of either the GNU | |
| * General Public License Version 2 only ("GPL") or the Common Development | |
| * and Distribution License("CDDL") (collectively, the "License"). [...] | |
| */ | |
| package javax.mail.internet; |
I hereby claim:
To claim this, I am signing this object:
| ls -1d /boot/abi-* | cut -d - -f 2- | sort -V | fgrep -v $(uname -r) | head -n -1 | sed -e s:^:linux-image-: | xargs -r apt-mark auto |
| # Tested on an upgraded Ubuntu 20.04 | |
| apt install netplan.io | |
| systemctl unmask systemd-networkd.service | |
| systemctl unmask systemd-resolved.service | |
| ENABLE_TEST_COMMANDS=1 netplan migrate | |
| netplan try | |
| reboot | |
| apt purge ifupdown resolvconf | |
| ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf |
| #!/bin/bash | |
| # This is a hack to make Bluetooth headests like the jabra Evolve 65 actually | |
| # work as a headset with the Linux (Ubuntu/Debian) Zoom client without having | |
| # to switch manually from A2DP to the HSP/HFP profile. | |
| # | |
| # This is done by injecting an environment variable which makes PulseAudio | |
| # recognize the application as a telephony/voice application as described | |
| # here: | |
| # * https://www.freedesktop.org/wiki/Software/PulseAudio/Documentation/User/Bluetooth/#profiles | |
| # * https://www.freedesktop.org/wiki/Software/PulseAudio/Documentation/Developer/Clients/ApplicationProperties/#pa_prop_media_role |
| #!/bin/bash | |
| # Example Dovecot checkpassword script that may be used as both passdb or userdb. | |
| # | |
| # Originally written by Nikolay Vizovitin, 2013. | |
| # Assumes authentication DB is in /etc/dovecot/users, each line has '<user>:<password>' format. | |
| # Place this script into /etc/dovecot/checkpassword.sh file and make executable. | |
| # Implementation guidelines at http://wiki2.dovecot.org/AuthDatabase/CheckPassword |