TypeScript 6.0 is a transition release bridging 5.9 and the forthcoming 7.0 (a native Go port). Most changes are new defaults and deprecations preparing for 7.0. Here is what you need to do:
Most projects need these tsconfig changes:
TypeScript 6.0 is a transition release bridging 5.9 and the forthcoming 7.0 (a native Go port). Most changes are new defaults and deprecations preparing for 7.0. Here is what you need to do:
Most projects need these tsconfig changes:
This instructions provides a solution for installing HP LaserJet P1102 drivers on macOS Sequoia (15.0+). The official HP drivers don't install on the latest macOS versions, but with a simple modification to bypass the operating system version check, you can get your printer working again.
| #!/bin/bash | |
| if [ -z "${DELETE_PATTERN}" ] | |
| then | |
| echo "please set DELETE_PATTERN environment variable with pattern to delete" | |
| exit | |
| fi | |
| if [ -z "${AWS_PROFILE}" ] | |
| then |
| import AWS from 'aws-sdk'; | |
| import stream from 'stream' | |
| import axios from 'axios'; | |
| export default async (url, filename, callback) => { | |
| const s3 = new AWS.S3({ params: { Bucket: process.env.STATIC_MAPS_BUCKET }}); | |
| let contentType = 'application/octet-stream' | |
| let promise = null | |
| const uploadStream = () => { |
| <div class="slider-nav"> | |
| <div data-toggle="modal" data-target="#myModal"><img src="http://placehold.it/390x245&text=1" alt=""></div> | |
| <div data-toggle="modal" data-target="#myModal"><img src="http://placehold.it/390x245&text=2" alt=""></div> | |
| <div data-toggle="modal" data-target="#myModal"><img src="http://placehold.it/390x245&text=3" alt=""></div> | |
| <div data-toggle="modal" data-target="#myModal"><img src="http://placehold.it/390x245&text=4" alt=""></div> | |
| <div data-toggle="modal" data-target="#myModal"><img src="http://placehold.it/390x245&text=5" alt=""></div> | |
| <div data-toggle="modal" data-target="#myModal"><img src="http://placehold.it/390x245&text=6" alt=""></div> | |
| <div data-toggle="modal" data-target="#myModal"><img src="http://placehold.it/390x245&text=7" alt=""></div> | |
| </div> |
Check if you have existing keys by opening the terminal and entering:
ssh-add -l OR ls -al ~/.ssh and check for any file called (usually) id_rsa or similar
Identify the host you're using your current key for. You probably added this key to, for example your github or gitlab account. We will use this later on.
If you don't have a config file on ~/.ssh folder, you will need to create one. We'll get back to this later.
| function loadScript(src) { | |
| return new Promise(function(resolve, reject) { | |
| let script = document.createElement('script'); | |
| script.src = src; | |
| script.onload = () => resolve(script); | |
| script.onerror = () => reject(new Error("Script load error: " + src)); | |
| document.head.append(script); | |
| }); |
| version: '2' | |
| services: | |
| api: | |
| volumes: | |
| - "nfsmount:${CONTAINER_DIR}" | |
| volumes: | |
| nfsmount: | |
| driver: local | |
| driver_opts: |
| /* -------------------------------------------------------------------------- */ | |
| // All Bootstrap 4 Sass Mixins [Cheat sheet] | |
| // Updated to Bootstrap v4.5.x | |
| // @author https://anschaef.de | |
| // @see https://github.com/twbs/bootstrap/tree/master/scss/mixins | |
| /* -------------------------------------------------------------------------- */ | |
| /* | |
| // ########################################################################## */ | |
| // New cheat sheet for Bootstrap 5: |
{ "compilerOptions": { "types": ["node"], // @types are no longer auto-discovered (see §1.6)