Keybase proof
I hereby claim:
- I am ompugao on github.
- I am ompugao (https://keybase.io/ompugao) on keybase.
- I have a public key ASCvgIzHlvaBMqkp3j15ycXkQMor2b9-F_X4Vdjc6cyNbwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# export passwords from google
python3 convert_googlepasswords_to_bitwarden.py ./Google\ Passwords.csv ./bitwarden.csv
# import bitwarden.csv via csv(bitwarden)
curl https://gist.githubusercontent.com/ompugao/d98780de08f3e71caffbfc0cd8522e6e/raw/fcf708f6ef9d98ed924c4a4c8485c84c12aae7b3/setup.sh | /bin/bash |
# settings for when connected to a power source | |
[charger] | |
# see available governors by running: cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors | |
# preferred governor. | |
governor = performance | |
# minimum cpu frequency (in kHz) | |
# example: for 800 MHz = 800000 kHz --> scaling_min_freq = 800000 | |
# see conversion info: https://www.rapidtables.com/convert/frequency/mhz-to-hz.html | |
# to use this feature, uncomment the following line and set the value accordingly |
from casadi import * | |
import math | |
import numpy as np | |
class MPC: | |
def __init__(self): | |
# 問題設定 | |
T = 1.0 # ホライゾン長さ (MPCなので短め) | |
N = 20 # ホライゾン離散化グリッド数 (MPCなので荒め) |
15c15,18 | |
< allowed_users=console | |
--- | |
> | |
> # allowed_users=console | |
> allowed_users=anybody | |
> needs_root_rights=yes# from | |
diff --git a/.gitignore b/.gitignore | |
index d6136dbab..956bb7caf 100644 | |
--- a/.gitignore | |
+++ b/.gitignore | |
@@ -8,3 +8,4 @@ msvc_soqt/ | |
src/models/ | |
myrelpath.pyc | |
+build | |
diff --git a/CMakeLists.txt b/CMakeLists.txt |
diff --git a/install-dependencies.sh b/install-dependencies.sh | |
index 01a43fe..db378e6 100755 | |
--- a/install-dependencies.sh | |
+++ b/install-dependencies.sh | |
@@ -6,6 +6,7 @@ | |
# Description: | |
# OpenRAVE Installation Script: Dependencies | |
+set -e | |
# Check ubuntu version |
FROM ubuntu:20.04 | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN apt -y update && apt -y upgrade && apt -y install git cmake build-essential lsb-release sudo && rm -rf /var/lib/apt/lists | |
WORKDIR /workdir | |
RUN apt -y update && \ | |
apt install -y --no-install-recommends build-essential cmake doxygen \ | |
g++ git octave python-dev python-setuptools wget mlocate \ |