git remote add all URL_1
git remote set-url --add --push all URL_1
git remote set-url --add --push all URL_2
...
git remote set-url --add --push all URL_N
To push to the
N
remotes, do,
git push all
git remote add all URL_1
git remote set-url --add --push all URL_1
git remote set-url --add --push all URL_2
...
git remote set-url --add --push all URL_N
N
remotes, do,
git push all
VMware Payer and Device/Credential Guard are not compatible.
VMware Player can be run after disabling Device/Credential Guard.
PowerShell
session,
DG_Readiness_Tool_v3.6.ps1 -Disable -AutoReboot
tcpdump
.TCP
or UDP
port number is 112233
via interface eth0
, and save the captured packets to file packet.cap
, we run,
sudo tcpdump -i eth0 -w packet.cap port 112233
packet.cap
file, we run,
sudo tcpdump -nn -xx -XX -r packet.cap
CTRL-C
stopped working. It turns out that CTRL-C
was being trapped, which we could examine using the trap
command, e.g.,
trap -- '' SIGINT
trap -- '' SIGQUIT
trap -- '' SIGTSTP
trap -- '' SIGTTIN
trap -- '' SIGTTOU
CTRL-C
, i.e., SIGINT
from this list, we can issue a command,
trap - SIGINT
bash
, in $HOME/.bash_profile
.
pdftk
package is reported missing from Ubuntu 18.04 Bionic. To me, the easiest way to install it out of a few suggested methods is as follows,
sudo snap install pdftk
snap
here.
HandBrakeCLI
complains,
Cannot load libnvidia-encode.so.1
Cannot load libnvidia-encode.so.1
Cannot load libnvidia-encode.so.1
Cannot load libnvidia-encode.so.1
pbi_browser
seems to yield the list of plugins, for instance,
$ sudo /usr/local/sbin/pbi_browser --viewall
Using RepoID: 001
Listing all available PBIs
------------------------------------
Application: CouchPotato
Version: autoupdate.9_5
Category: Network - P2P
Created: 20160212 060001
RootInstall: NO
Arch: amd64
Author: RuudBurger
URL: https://couchpota.to/
License: GPLv3
Type: Graphical
Keywords: net,p2p,share,nzb
Icon: /var/db/pbi/repo-icons/a5a51ab301916fcacfa9029fc96adff2-CouchPotato.png
Description: An automatic NZB and torrent downloader
To install this PBI:
# pbi_add --rArch amd64 --repo 001 -r CouchPotato
------------------------------------
Application: Emby
Version: 3.3.1.0
The solution that worked for me is simply to reboot the system.
wmic bios get serialnumber
sudo lshw
hypens
to the url
package that is referenced in the hyperref
package, e.g., PassOptionsToPackage{hyphens}{url}\usepackage{hyperref}
\usepackage[hyphenbreaks]{breakurl}
\sloppy
command right before
the reference to an URL, e.g., \sloppy
\url{a-very-long-and-awkward-URL-with-many-hyphens}
WARNING (theano.tensor.blas): Using NumPy C-API based implementation for BLAS functions.
sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev gfortran
mkl
and mkl-service
as suggested in the theano documentation and the discussion here.
vmware-toolbox-cmd -v
apt-show-versions open-vm-tools
git commit
, I would observe the following,
$ git commit -m "done something trivial"
error: bad index file sha1 signature
fatal: index file corrupt
git commit
is successful. As discussed in issue #90, this is the result that the tools cache file attributes and entries and causes a cache inconsistency. The 5-second delay is the waiting time before the cached items get updated.npm install
to fail.
sudo add-apt-repository ppa:ci-train-ppa-service/3152
sudo apt-get update
sudo apt-get upgrade open-vm-tools open-vm-tools-desktop open-vm-tools-dkms
10.2.0.1608 (build-7253323)
, and it seems to work fine although some seem to observe some issues, such as, a race condition.
rundll32 sysdm.cpl,EditEnvironmentVariables
SHOW SERVER_ENCODING
command in psql
, e.g., assuming the database is foodb
,
foodb=> SHOW SERVER_ENCODING
pg_database
, e.g., assuming the database is foodb
,
foodb=> SELECT pg_encoding_to_char(encoding)
FROM pg_database WHERE datname = 'foodb';
information_schema
, e.g., assuming the database is foodb
,
foodb=> SELECT character_set_name
FROM information_schema.character_sets
WHERE default_collate_catalog='foodb'
information_schema
is a standard.
UTF-8
. When I connects to it using psql
on Windows, it complains with the following,foopgdb => select * from bar;
ERROR: character with byte sequence 0xe2 0x86 0x92 in encoding "UTF8" has no
equivalent in encoding "WIN1252"
foopgdb =>
psql
the encoding and select proper encoding table when we run psql as follows in a Windows Command Prompt window,
SET PGCLIENTENCODING=utf-8
chcp 65001
PGCLIENTENCODING
is in the PostgreSQL documentation while that of chcp
at Microsoft Technet. The reference to the code page 65001
is at this MSDN page.Not enough memory error
on some version of Windows, such as, Windows 7. See this discussion for more.psql
as follows,foopgdb => \encoding UTF8
foopgdb => select * from bar;
......
foopgdb =>
"Universities are the bedrock of progressive values, but the one kind of diversity that universities disregard is ideological and religious. We’re fine with people who don’t look like us, as long as they think like us."In parallel, Fredrik deBoer argues at the Los Angles Times,
"But academics are at fault, too, because we’ve pushed mainstream conservatism out of our institutions. Sociologists Neil Gross and Solon Simmons have found that about half of professors identify as liberal, versus only 14% who identify as Republican. (At the time of their study, in 2006, only a fifth of American adults described themselves as liberal.)
......
In my network of professional academics, almost no one recognizes that our lopsided liberalism presents a threat to academia itself."and suggests that,
"Our public universities are under massive pressure and at immense risk, and those who should be defenders of public universities still don’t understand that they’ve created the conditions for their destruction."