Beep-Boop!
Ciao come stai oggi? :P
| gh-models-call () | |
| { | |
| model_name="$1" | |
| token="$2" | |
| max_tokens="${3:-1000}" | |
| temp="${4:-1}" | |
| if [[ -z "$model_name" || -z "$token" ]]; then | |
| echo "Usage: $0 <model_name> <token>" >&2 | |
| echo "Example: echo 'Hello!' | $0 gpt-4o \$GITHUB_TOKEN" >&2 |
Beep-Boop!
Ciao come stai oggi? :P
| #!/bin/bash | |
| refresh-aws-keys () { | |
| if [[ "$1" == "-h" || "$1" == "--help" || -z $1 ]]; then | |
| echo "usage: refresh-aws-keys <aws_profile>" | |
| echo "" | |
| echo "refreshes AWS SSO credentials for the given profile if expired or missing." | |
| echo "updates ~/.aws/credentials with new keys." | |
| echo "" | |
| return 0 | |
| fi |
A viral capsid protein is a structural protein that forms the capsid, which is the protein shell enclosing and protecting the genetic material (DNA or RNA) of a virus. The capsid plays a critical role in the viral life cycle and is essential for infectivity.
Composition:
Functions:
| remind () | |
| { | |
| if [ $1="-h" ] || [ $1="--help" ]; then | |
| echo "usage: remind <command_prefix>" | |
| return 0 | |
| fi | |
| if [ -z "$1" ]; then | |
| echo "usage: remind <command_prefix>">&2 | |
| return 1 |
| { | |
| "$schema": "https://zed.dev/schema/themes/v0.1.0.json", | |
| "name": "Darkened", | |
| "author": "Roberto Montalti", | |
| "themes": [{ | |
| "name": "Darkened", | |
| "appearance": "dark", | |
| "style": { | |
| "background.appearance": "opaque", |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| typedef bool b8; | |
| typedef unsigned int u32; | |
| struct _None {}; | |
| #define None (_None{}); | |
| template<typename T> | |
| struct Option { |
| #!/bin/bash | |
| git clone https://github.com/cilynx/rtl88x2bu.git | |
| cd rtl88x2bu | |
| VER=$(sed -n 's/\PACKAGE_VERSION="\(.*\)"/\1/p' dkms.conf) | |
| sudo rsync -rvhP ./ /usr/src/rtl88x2bu-${VER} | |
| sudo dkms add -m rtl88x2bu -v ${VER} | |
| sudo dkms build -m rtl88x2bu -v ${VER} | |
| sudo dkms install -m rtl88x2bu -v ${VER} | |
| sudo modprobe 88x2bu |
| /** | |
| * Merges two arrays by concatenating their elements uniquely using `new Set(...)`. | |
| * | |
| * @param {Array} a1 - The first array to merge. | |
| * @param {Array} a2 - The second array to merge. | |
| * @returns {Array} A new array containing elements from both input arrays. | |
| */ | |
| const mergeArray = (a1, a2) => Array.from(new Set([...a1, ...a2])) | |
| /** |