sudo apt install debootstrap make git apt-utils
git clone https://salsa.debian.org/live-team/live-build.git debian-live-build
cd debian-live-build
sudo make install
sudo lb --version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.8.2; | |
contract Token { | |
mapping(address => uint) public balances; | |
mapping(address => mapping(address => uint)) public allowance; | |
uint public totalSupply = 1000000 * 10 ** 18; | |
string public name = "INDOG"; // name your token | |
string public symbol = "INDG"; // code your token | |
uint public decimals = 18; | |
- Keyboard layout editor, http://www.keyboard-layout-editor.com/
- Plate builder, http://builder.swillkb.com/
- Laser cutting service, https://lasergist.com/shop/lasergist/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
➜ imagerec git:(updated-deps) ✗ nvidia-smi | |
Tue May 5 15:00:40 2020 | |
+-----------------------------------------------------------------------------+ | |
| NVIDIA-SMI 440.33.01 Driver Version: 440.33.01 CUDA Version: 10.2 | | |
|-------------------------------+----------------------+----------------------+ | |
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC | | |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. | | |
|===============================+======================+======================| | |
| 0 GeForce GTX 166... On | 00000000:01:00.0 On | N/A | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for file in *; do | |
if [ ${file: -4} == ".pdf" ] | |
then | |
echo "Converting $file using ghost script..." | |
# Handle multi pages | |
gs -sstdout=%stderr -dPDFSTOPONERROR -dNOPAUSE -sDEVICE=pngalpha -o $file-%03d.png -r600 $file | |
if [ "$?" != "0" ] | |
then |
Given the specific parameters (size
, wall
, start
and target
), you should build a virtual block map. If the size
is 10, then it will be a 10x10 blocks map. Each block is numbered sequentially from left to right, then top to bottom. The initial value for this sequence is 1.
If the size
value is 6, then the map will be like this,
NewerOlder