Category: Candy Box
- Popcorn
-
- CondimentSet_12
- -- Caramel
- -- White/Dark Choc Swirl
- Sprinkled Pretzels
- Mixed Nuts
- Candy
-
- CondimentSet_11
alias "+jumpaction" "+jump;" | |
alias "+throwaction" "-attack; -attack2" | |
alias "-jumpaction" "-jump" | |
bind mouse5 "+jumpaction;+throwaction;" | |
bind "z" "buy flashbang; slot7" | |
bind "x" "buy smokegrenade; slot8" | |
bind "c" "buy hegrenade; slot6" | |
bind "v" "buy molotov; buy incgrenade; slot10" | |
rate 1000000 |
def write_batch_file(file_name, headers, part, lines): | |
with open(str(file_name) + "-part-" + str(part) + ".csv", "w", newline="") as batch_file: | |
batch_file.write(headers) | |
batch_file.writelines(lines) | |
def process_csv(csv_path, batch_size): | |
with open(csv_path, newline="") as csv_file: | |
file_name = str(csv_file.name).replace(".csv", "") | |
headers = csv_file.readline() | |
count = 0 |
<m-frame | |
src="https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/19000385" | |
sx="2" | |
sy="3" | |
rx="-45" | |
ry="45" | |
></m-frame> |
<m-model x="-2" collide="true" src="https://iolson-development.s3.amazonaws.com/QmZH8C1b2pKJQig6NUpQwMSd5F538YaXnb8HMWCJuDTPSD.obj" z="-2" y="1.2" sx="0.5" sy="0.5" sz="0.5"></m-model> |
<m-video | |
src="https://maroon-governing-sturgeon-156.mypinata.cloud/ipfs/QmZYY8WiEGszsge9yw1GNBJRdipdUix1CPJ1kiBEXfcWqa" | |
y="6" | |
z="-1" | |
width="15" | |
start-time="0" | |
loop="true" | |
> |
<m-model x="-2" collide="true" src="https://iolson-development.s3.amazonaws.com/QmZH8C1b2pKJQig6NUpQwMSd5F538YaXnb8HMWCJuDTPSD.glb" z="-2" y="1.2" sx="0.5" sy="0.5" sz="0.5"></m-model> |
/* | |
* Click `Run` to execute the snippet below! | |
*/ | |
import java.io.*; | |
import java.util.*; | |
/** | |
* Design a calculator with the following features: | |
* |
node_modules/.bin/gulp --production | |
[06:17:39] Using gulpfile ~/<project_name>/gulpfile.js | |
[06:17:39] Starting 'default'... | |
[06:17:39] Starting 'sass'... | |
[06:17:39] 'sass' errored after 15 ms | |
[06:17:39] Error: ENOENT: no such file or directory, scandir '/home/ubuntu/<project_name>/node_modules/node-sass/vendor' | |
at Error (native) | |
at Object.fs.readdirSync (fs.js:808:18) | |
at Object.getInstalledBinaries (/home/ubuntu/<project_name>/node_modules/node-sass/lib/extensions.js:119:13) | |
at foundBinariesList (/home/ubuntu/<project_name>/node_modules/node-sass/lib/errors.js:20:15) |
alias zshconfig="atom ~/.zshrc" | |
alias gs="git status" | |
alias ga-this="git add --all ." | |
alias ga-tree="git add --all :/" | |
alias gc="git commit -am" | |
alias gpush="git push" | |
alias gpull="git pull" | |
alias gco="git checkout" | |
alias gnu="git checkout -b" |