It is being used to boot up a headless system running debian12 (bookworm)
Prepare a USB containing a file keyfile which contains a password to open the LUKS partition.
The UUID of the USB will be used. In this example case it is 69A0-9BE4.
| #!/bin/bash | |
| # Accept input as arguments instead of stdin | |
| input="$*" | |
| if [ -z "$input" ]; then | |
| echo "Usage: $0 'code to complete'" >&2 | |
| exit 1 | |
| fi | |
| # input=$(cat) |
It is being used to boot up a headless system running debian12 (bookworm)
Prepare a USB containing a file keyfile which contains a password to open the LUKS partition.
The UUID of the USB will be used. In this example case it is 69A0-9BE4.
The systemd servicefile codium-server.service is executed at boot time.
It executes a script startup-codium-server.sh which calls docker run ...., the details of which are not shown here.
The docker container being run will fork, and the service can/does not keep track of it. That's why Type=oneshot is used in the service file.
Lingering has to be set up so that the user service can be run even when the user has not logged on:
loginctl enable-linger $USER
To check that linger setting
Correspondence between m and PyTorch call form
| m | call |
|---|---|
| 24 | argsort(rand((batch_count,K))) |
| 32 | argsort(randint(low=-2**31,high=2**31-1,(batch_count,K),dtype=integer32)) |
| 64 | argsort(randint(low=-2**63,high=2**63-1,(batch_count,K),dtype=integer64)) |
| #!/bin/bash | |
| set -e | |
| # Step-by-Step Installation Guide | |
| # Step 0: Remove existing NVIDIA drivers and CUDA installations | |
| sudo yum erase -y nvidia cuda | |
| # Step 1: Update the system and install dependencies |
Chrome Version : Chromium 83.0.4103.116 snap Other browsers tested: Add OK or FAIL, along with the version, after other browsers where you have tested this issue:
Firefox: OK, "Mozilla Firefox 78.0.1" Chromium (non-span): OK, "Chromium 83.0.4103.61 Built on Ubuntu , running on Ubuntu 18.04"
What steps will reproduce the problem?
| Lerna issue [ Lerna does not run scripts according to topological order #2731 ](https://github.com/lerna/lerna/issues/2731) | |
| reports the bug, but issue was closed although not resolved. | |
| Strangely, I didn't **notice** any problem until adding new scopes in the project. | |
| But now I have the same bug. | |
| I threw up something quick to get builds working again, and posted it here. | |
| It's a near replacement but uses regexp instead of globbing. | |
| ### Keybase proof | |
| I hereby claim: | |
| * I am craigphicks on github. | |
| * I am craigphicks (https://keybase.io/craigphicks) on keybase. | |
| * I have a public key ASC8QGnm0y40XjjMeoQiia7-7ESqROa6XhlL-g9in4RUPQo | |
| To claim this, I am signing this object: |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| { | |
| "type": { | |
| "info": "this is a ts.Type with id=86", | |
| "flags": [ | |
| "Union" | |
| ], | |
| "objectFlags": [ | |
| "PrimitiveUnion" | |
| ] |