-
Open a terminal.
-
Run:
ssh -v- If it shows a version (e.g., OpenSSH), SSH is installed. If not, install it with:
sudo apt update sudo apt install openssh-client
- If it shows a version (e.g., OpenSSH), SSH is installed. If not, install it with:
This file contains hidden or 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
| ;************************************************************************************ | |
| ;************************************************************************************ | |
| ; This file was included in the Project 64 Repository after all efforts to contact | |
| ; Lee Davison, the original author, were proven unsuccessful. The inclusion is meant | |
| ; to honour his sterling work on providing us with the very best document on every | |
| ; bit of the Commodore 64's firmware content. We want this to remain available to | |
| ; the public and allow other members to benefit from Lee's original, excellent job. | |
| ;************************************************************************************ | |
| ; $VER:C64LD11.S, included on 2014-11-12 | |
| ;************************************************************************************ |
This file contains hidden or 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
| Yacht | |
| (Yet Another Cycle Hunting Table) | |
| ------------------------------------------------------------------------------- | |
| Forewords : | |
| ------------------------------------------------------------------------------- | |
| This document is based on : | |
| - 9th Edition of M68000 8-16-32-bit Microporcessor User's Manual | |
| (Motorola, 1993) (laterly refered as M68000UM) |
This file contains hidden or 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
| =========================== | |
| SID FILE FORMAT DESCRIPTION | |
| =========================== | |
| AUTHORS: | |
| Michael Schwendt (PSID v1 and v2) | |
| Simon White (PSID v2NG, RSID) | |
| Dag Lem (PSID v2NG) | |
| Wilfred Bos (PSID v3, RSID v3, PSID v4, RSID v4) |
NOTE, if you create an empty repo in Bitbucket, it will default to the "main" branch and create a .gitignore file. Normally, this would be OK. However, the .gitignore file will cause a conflict because the newly created repo will not be empty. You will need to pull then push.
This file contains hidden or 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
| # Before running, make sure you set your ~/.aws/credentials and ~/.aws/config properly. | |
| # Just run: aws configure | |
| # Then enter your access key, secret key and region. | |
| import boto3 | |
| client = boto3.client('cognito-idp') | |
| user_pool_id = '<<USER POOL ID>>' # Change to your user pool ID | |
| group_name = 'MY_GROUP' # Change to whatever group you want. Make sure it exists first. |
This file contains hidden or 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
| const autocomplete = (inputId, listId, dimensionCode) => { | |
| const input = document.getElementById(inputId) | |
| const list = document.getElementById(listId) | |
| if (!input || !list) return false | |
| list.innerHTML = '' | |
| let items = [] | |
| let current = -1 | |
| const bg_default = 'bg-white' | |
| const bg_select = 'bg-blue-500' |
This file contains hidden or 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
| import java.text.ParseException; | |
| import java.text.SimpleDateFormat; | |
| import java.time.LocalDateTime; | |
| import java.time.ZoneId; | |
| import java.util.Date; | |
| public class Main { | |
| public static void main(String[] args) throws ParseException { | |
| final String dateTime = "20240310 120600.000"; |
This file contains hidden or 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
| /** | |
| * USB HID Keyboard scan codes as per USB spec 1.11 | |
| * plus some additional codes | |
| * | |
| * Created by MightyPork, 2016 | |
| * Public domain | |
| * | |
| * Adapted from: | |
| * https://source.android.com/devices/input/keyboard-devices.html | |
| */ |
This file contains hidden or 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
| .importonce | |
| //*************************************************************************** | |
| // VIC II | |
| // BANK 0: $0000 - $3FFF | |
| // BANK 1: $4000 - $7FFF | |
| // BANK 2: $8000 - $BFFF | |
| // BANK 3: $C000 - $FFFF | |
| //*************************************************************************** |
NewerOlder