I hereby claim:
- I am portnumber53 on github.
- I am ab_motta (https://keybase.io/ab_motta) on keybase.
- I have a public key ASC52DmIKDLXfb2PSO9RLDOT5xr2-YYPjWdhyDXOgsc0JQo
To claim this, I am signing this object:
#!/bin/bash | |
# This is a simple build script and will be executed on your CI system if | |
# available. Otherwise it will execute while your application is stopped | |
# before the deploy step. This script gets executed directly, so it | |
# could be python, php, ruby, etc. | |
#!/bin/bash | |
POSTGRESQL_VERSION="9.2.1" | |
# Installing DB (one-time) |
<?php | |
/** | |
* Create a web friendly URL slug from a string. | |
* | |
* Although supported, transliteration is discouraged because | |
* 1) most web browsers support UTF-8 characters in URLs | |
* 2) transliteration causes a loss of information | |
* | |
* @author Sean Murphy <[email protected]> | |
* @copyright Copyright 2012 Sean Murphy. All rights reserved. |
UPDATE customer SET | |
first_name = CONCAT('f', customer_id), | |
last_name = CONCAT('l', customer_id), | |
home_phone = SUBSTR( CONCAT(customer_id * 95427, customer_id * 3841, customer_id * 7664), 1, 10), | |
fax_phone ='', | |
mobile_phone = SUBSTR( CONCAT(customer_id * 89435, customer_id * 3725, customer_id * 49325), 1, 10), | |
other_phone = '', | |
address1 = CONCAT(customer_id, ' street'), | |
address2 = '', | |
address3 = '', |
#!/bin/sh | |
rc=0 | |
behat=0 | |
phpunit=0 | |
EXEC_BEHAT='docker-compose exec phpfpm sh -c "cd /app && vendor/bin/behat"' | |
script -q --return -c "${EXEC_BEHAT}" /dev/null | |
behat=$? |
function dc() { | |
COMMAND="docker-compose" | |
if [ -e ./docker-compose.yml ]; then | |
COMMAND="${COMMAND} -f docker-compose.yml" | |
fi | |
if [[ -a ./docker-compose.dev.yml ]]; then | |
COMMAND="${COMMAND} -f docker-compose.dev.yml" | |
fi |
I hereby claim:
To claim this, I am signing this object:
Aug 24 12:02:07 devbox kernel: [Hardware Error]: Corrected error, no action required. | |
Aug 24 12:02:07 devbox kernel: [Hardware Error]: CPU:0 (19:44:1) MC15_STATUS[Over|CE|MiscV|AddrV|-|-|SyndV|CECC|-|-|-]: 0xdc204000000c011b | |
Aug 24 12:02:07 devbox kernel: [Hardware Error]: Error Addr: 0x00000000ff901a40 | |
Aug 24 12:02:07 devbox kernel: [Hardware Error]: IPID: 0x0000009600050f00, Syndrome: 0x000001ff0a240700 | |
Aug 24 12:02:07 devbox kernel: [Hardware Error]: Unified Memory Controller Ext. Error Code: 12 | |
Aug 24 12:02:07 devbox kernel: [Hardware Error]: cache level: L3/GEN, tx: GEN, mem-tx: RD | |
Aug 24 12:02:07 devbox kernel: mce: [Hardware Error]: Machine check events logged | |
Aug 24 12:02:07 devbox kernel: [Hardware Error]: Corrected error, no action required. | |
Aug 24 12:02:07 devbox kernel: [Hardware Error]: CPU:0 (19:44:1) MC16_STATUS[Over|CE|MiscV|AddrV|-|-|SyndV|CECC|-|-|-]: 0xdc204000000c011b | |
Aug 24 12:02:07 devbox kernel: [Hardware Error]: Error Addr: 0x00000000ff901a40 |
Refs: | |
1. http://os.archlinuxarm.org/os/ArchLinuxARM-aarch64-latest.tar.gz | |
2. https://dl-cdn.alpinelinux.org/alpine/v3.13/releases/aarch64/alpine-virt-3.13.5-aarch64.iso | |
3. https://wiki.alpinelinux.org/wiki/Replacing_non-Alpine_Linux_with_Alpine_remotely | |
4. https://wiki.archlinux.org/index.php/installation_guide#Configure_the_system | |
5. https://archlinuxarm.org/platforms/armv8/generic | |
Requirement: | |
Console access. | |
import argparse | |
import os | |
from dotenv import load_dotenv | |
from huggingface_hub import snapshot_download | |
load_dotenv() | |
def download_model(repo_id, use_auth_token=True): | |
models_base_folder = os.getenv("MODELS_BASE_FOLDER") | |
models_cache_folder = os.getenv("MODELS_CACHE_FOLDER") |