when running h2o.ai:
java -jar h2o.jar
there is an error:
06-15 13:26:18.086 192.168.12.198:54321 19409 main INFO: ----- H2O started -----
when running h2o.ai:
java -jar h2o.jar
there is an error:
06-15 13:26:18.086 192.168.12.198:54321 19409 main INFO: ----- H2O started -----
For new installations the provided rsync_bytes
plugin doesn't work. Here is rewrittend (and path-hardcoded) version which does work.
Please remember that the rsync logfile must be outside the /home
directory, see here
Before use, install logtail
.
#!/bin/bash | |
cat input.sdf | sed '/M END/,/$$$$/{//!d}' > input-fields-removed.sdf |
Many recepies for sending data with curl
via POST method didn't work for me. Eg, this was not working for me:
🔴
curl -F ‘data=@path/to/local/file’ UPLOAD_ADDRESS
(as advised for example here)
#!/bin/bash | |
vpnConnectionName="my vpn connection" | |
if nmcli c show --active | grep -q "$vpnConnectionName"; then | |
echo "$vpnConnectionName connection is up" | |
else | |
echo "$vpnConnectionName connection is down, let's connect" | |
nmcli con up id "$vpnConnectionName" | |
sleep 4s |
#!/bin/bash -e | |
# Single time - install packages, clone repos | |
# apt-get install git build-essential python3-dev libglew-dev \ | |
# libpng-dev libfreetype6-dev libxml2-dev \ | |
# libmsgpack-dev python3-pyqt5.qtopengl libglm-dev libnetcdf-dev | |
# git clone --depth=1 https://github.com/schrodinger/pymol-open-source.git | |
# git clone --depth=1 https://github.com/rcsb/mmtf-cpp.git |
#!/bin/bash | |
export DISPLAY=:0 | |
kdialog --title "Borg backup done $(date +"%A %x")" --passivepopup "<pre>$(cat /home/user/backup.log)</pre>" 10s |
#!/bin/bash | |
#see: https://forums.garmin.com/apps-software/mobile-apps-web/f/garmin-connect-web/83432/polar-flow-tcx-export-to-garmin-connect | |
cat polar.tcx | sed -e '/<Creator/,/<\/Creator>/d' -e '/<Author/,/<\/Author>/d' > garmin.tcx |
# install miniconda, then: | |
# create new environment | |
conda create -n docking-rdock | |
# activate it! | |
conda activate docking-rdock | |
# add channels |
#!/bin/bash | |
export CLASSPATH=/home/username/progs/weka-3-8-2/weka.jar | |
java weka.Run weka.classifiers.meta.GridSearch \ | |
-t train.arff \ | |
-d svm.model \ | |
-c last \ | |
-num-slots 2 \ | |
-sample-size 67 \ |