-
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:
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 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 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 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 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 is for the Commodore 64 and requires KickAssembler | |
// Written by Cecil Meeks (cbmeeks) in 2023 | |
// NOTE, this prints whatever is in A to the screen. So load A first. | |
// First, create a simple macro: | |
.macro DebugText_A_Hex(X, Y) { | |
sta ModA + 1 // save A below | |
stx ModX + 1 // save X below | |
sty ModY + 1 // save Y below |
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
/** | |
* 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 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 com.company; | |
public class Main { | |
public static void main(String[] args) { | |
// write your code here | |
String badNumber = "ABC123"; | |
String goodNumber = "423-867-5309"; |
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 com.company; | |
public class Main { | |
public static void main(String[] args) { | |
String badNumber = "ABC123"; | |
String goodNumber = "423-867-5309"; | |
System.out.println("Testing Number " + badNumber); | |
System.out.println("\t" + isValidNumber(badNumber)); |
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
/* | |
This is working for NTSC. However, by my calculations, we're at 68 cycles instead of the required 65. | |
That can't be right. Yet, it works. I assume I am making a false assumption on some of the timings. | |
*/ | |
BasicUpstart2(Entry) | |
Entry: |
NewerOlder