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
{ | |
"partition": null, | |
"name": "llm", | |
"sections": [ | |
{ | |
"id": 0, | |
"start": "0:00:00", | |
"end": "0:02:30.48", | |
"content": "[Video title] llm\n[Visual labels] human face, smile, clothing, person\n[OCR] 178, LARGE LANGUAGE, MODELS, IBM Technology, Martin Keen, Master Inventor, IBM Cloud, LARGE LANGUAGE MODELS, LARGE, LANGUAGE, WHAT 15, AN LLM?, HOW DO, THEY WORK?, BUSINESS, APPLICATIONS, WHAT IS, SUBSCRIBE, LLM, LANGUAGE MODELS, \"THESKYIS..., | |
m.\n[ |
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
{ | |
"partition": null, | |
"description": null, | |
"privacyMode": "Private", | |
"state": "Processed", | |
"accountId": "402e4386-3b48-48ae-81e9-c771f2092209", | |
"id": "irmm29hegm", | |
"name": "llm", | |
"userName": " ", | |
"created": "2024-08-28T06:14:54.25+00:00", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 | |
#### Functions ### | |
display_usage() { | |
echo "This script must be run with Docker capable privileges and you should login to your registry before pushing!" | |
echo -e "\nUsage:\n$0 <saved_image> [--push]\n" | |
echo -e " <saved_image>\t\t\tThe image file to load and push" | |
echo -e " [--push]\t\t\tPush to registry" | |
echo -e "\nExample: $0 /mydir/ubuntu.tar --push " | |
} |
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
[root@ip-11-0-0-239 centos]# firewall-cmd --zone=trusted --add-source=94.204.104.194/32 | |
success | |
[root@ip-11-0-0-239 centos]# firewall-cmd --zone=trusted --add-source=94.206.104.194/32 | |
success | |
[root@ip-11-0-0-239 centos]# firewall-cmd --zone=trusted | |
success | |
[root@ip-11-0-0-239 centos]# firewall-cmd --list-sources | |
You're performing an operation over default zone ('public'), | |
but your connections/interfaces are in zone 'trusted' (see --get-active-zones) | |
You most likely need to use --zone=trusted option. |
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
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"net/http" | |
) | |
type test_struct struct { | |
Test string |
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
--- | |
- hosts: all | |
gather_facts: no | |
vars: | |
string: "string" | |
list: | |
- item1 | |
- item2 | |
dict: | |
key1: value1 |
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
# Pass the env-vars to MYCOMMAND | |
eval $(egrep -v '^#' .env | xargs) MYCOMMAND | |
# … or ... | |
# Export the vars in .env into your shell: | |
export $(egrep -v '^#' .env | xargs) |
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
jobs: | |
- bucky_deploy | |
- android_customer_deploy: | |
requires: | |
- bucky_deploy | |
- ios_customer_deploy: | |
requires: | |
- android_customer_deploy | |
- android_courier_deploy: | |
requires: |
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
Command to run: | |
ssh -L 2222:localhost:8501 [email protected] | |
where 2222 is the local port mapping it can be any number above 1000 | |
where localhost must be set to localhost and refers to your current connection | |
where 8501 is the port you will be opening up on the remote machine | |
where [email protected] is the first hop in your quest for internal access |
NewerOlder