killall jackdbus
Until ps -ef | grep jack shows no jack processes
pulseaudio --kill
aplay -l
aplay -D hdmi alert.wav
alsamixer
aplay -D hdmi alert.wav
alsamixer
C-x C-+
’ and ‘C-x C--’
(‘text-scale-adjust’
) to increase or decrease the buffer text size (`C-+
’ or ‘C--’
to repeat).eval-expression
).C-x h
selects the entire buffer.C-M-\
reindents the selected region.mark-word
) puts the mark at the end of the next wordM-<
to move to the beginning of the buffer, and M->
to move to the endC-v
to scroll down, and M-v
to scroll upkill-word
).delete-horizontal-space
)just-one-space
)delete-indentation
)transpose-chars
). transpose-words
). transpose-sexps
). transpose-lines
).M-x auto-revert-tail-mode
(tail a file)query-replace
, so if you want to do further replacement you must use C-x <ESC> <ESC> <RET> to restart (see Repetition). (
seq
(.getURLs (java.lang.ClassLoader/getSystemClassLoader))))
private
static
Iterator list(ClassLoader CL)
throws
NoSuchFieldException, SecurityException,
IllegalArgumentException, IllegalAccessException {
Class CL_class = CL.getClass();
while
(CL_class != java.lang.ClassLoader.
class
) {
CL_class = CL_class.getSuperclass();
}
java.lang.reflect.Field ClassLoader_classes_field = CL_class
.getDeclaredField(
"classes"
);
ClassLoader_classes_field.setAccessible(
true
);
Vector classes = (Vector) ClassLoader_classes_field.get(CL);
return
classes.iterator();
}
private
void
dumpClasses() {
ClassLoader myCL = Thread.currentThread().getContextClassLoader();
while
(myCL !=
null
) {
log.warn(
"===> ClassLoader: "
+ myCL);
try
{
for
(Iterator iter = list(myCL); iter.hasNext();) {
Class clazz = (Class) iter.next();
log.warn(
"======> "
+ clazz.getName() +
" @ "
+ clazz.getProtectionDomain().getCodeSource().getLocation());
}
}
catch
(NoSuchFieldException e) {
e.printStackTrace();
}
catch
(IllegalAccessException e) {
e.printStackTrace();
}
myCL = myCL.getParent();
}
}
sudo mkdir /etc/systemd/system/docker.service.d # not present by default
cat <<EOF > /etc/systemd/system/docker.service.d/proxy.conf
[Service]
Environment="HTTP_PROXY=http://your.proxy:3128/" "HTTPS_PROXY=https://your.proxy:3128/" "NO_PROXY=localhost,127.0.0.1,docker-registry.yourdomain.net"
EOF
sudo systemctl daemon-reload && sudo systemctl restart docker
ENV http_proxy http://<PROXY_HOST>:<PORT>
ENV https_proxy https://<PROXY_HOST>:<PORT>
RUN echo "http_proxy=http://proxy.my-domain:3128" >> /etc/yum.conf
RUN echo "https_proxy=https://proxy.my-domain:3128" >> /etc/yum.conf
# Make sure YUM proxy is set up first
RUN yum update -y && yum install curl