bluetoothctl paired-devices
bluetoothctl remove [UUID]
| #include<stdio.h> | |
| #include<assert.h> | |
| /** | |
| Accumulate into res | | |
| 1) Shift 8*i bits right, fill left in with 0xFF | |
| ( val >> (i * 8) | |
| 2) Shifts the isolated val left 8*i bits into res. | |
| << (size - i) * 8 | |
| 3) Uses bitwise OR operation to accumulate the flipped bytes into res. |
| const fetch = require('node-fetch'); | |
| var testString1 = "137/erc721:0xa90a110c81e9f2aacd08ffc6d24871908612be6f/8774"; | |
| var testString2 = "1/erc721:0xa90a110c81e9f2aacd08ffc6d24871908612be6f/8774"; | |
| var testString3 = "137/erc1155:0xa90a110c81e9f2aacd08ffc6d24871908612be6f/8774" | |
| var testString4 = "1/erc1155:0xa90a110c81e9f2aacd08ffc6d24871908612be6f/8774" | |
| var badStringH = "137/erc721:0x723e481aef940fc7454850a83c54ca1ee770209c/291"; | |
| var badStringJ = "137/erc721:0xa6d6d5fbeb58cd8c1006fff02fd73ac8b0a9c0f2/16"; | |
| /** Returns void or the ipfs location of nft image. | |
| * Modifies the following DBM vars: |
| var https = require('https'); | |
| var resolveNFTUri = function (self, str, store, cache, actions, channel) { | |
| log = function (msg) { console.log("getNFT: \n", msg); }; | |
| log('Finding nft uri for: ', str); | |
| str = str[0]; | |
| var getChainId = function (str) { |
| from datetime import date | |
| from math import floor | |
| def max_ttd(birth_year): | |
| this_year = date.today().year | |
| age = this_year - birth_year | |
| max_year = (100-age) + this_year | |
| return max_year # agv age is 75, but 100 is safe |
| package sortingArrays; | |
| import java.util.Random; | |
| import java.util.Scanner; | |
| /** | |
| <b>Part 1: Sorting Arrays</b> | |
| <p>Develop a program that asks the user to enter a capital for a U.S. state. | |
| Upon receiving the user input,the program reports whether the user input is correct. | |
| <p>For this application, the 50 states and their capitals are stored in |
| version: "3.7" | |
| services: | |
| plex: | |
| image: plexinc/pms-docker | |
| container_name: plex | |
| restart: unless-stopped | |
| environment: | |
| - TZ=America/New_York | |
| devices: |
| /** | |
| * Performs coordinate rotation math in order to abstract away positional discrepancies resulting from a | |
| * rotated page. | |
| * See: https://www.khanacademy.org/computing/pixar/sets/rotation/v/sets-8 | |
| * @param {PDFPage} page - The page that may be rotated | |
| * @param {number} x - The desired *relative* x-coordinate of the object | |
| * @param {number} y - The desired *relative* y-coordinate of the object | |
| */ | |
| public compensateRotation(page, x, y): {newX: number, newY: number} { | |
| var dimensions = page.getSize(); |
I hereby claim:
To claim this, I am signing this object:
| Pet Check-In | |
| To update our current processes, we outline our current manual check-in process below, which involves | |
| multiple steps and verifications. | |
| First, we determine whether the pet is a dog or a cat. Next, we determine if boarding space is available | |
| for the pet. There are currently 30 spaces for dogs and 12 spaces for cats. We would like the ability to | |
| update these settings as needed. If boarding space is available, we identify whether the pet is a new or | |
| returning visitor. If the pet has stayed with us before, we are seeking the ability to update information | |
| as needed. If the pet is a new visitor, we would like the opportunity to collect all the appropriate | |
| information. | |
| Additionally, we would like the ability to gather information on the length of stay for each pet and if |