Add this to your root +layout.svelte in your already working PWA
<script>
let deferredPrompt;
let installButtonVisible = false;
let output = '';
onMount(() => {
#!/bin/bash | |
# Source the utility functions | |
source ./utils.sh | |
# Database connection and file path details | |
hostname="localhost" | |
port="54322" | |
dbname="postgres" | |
user="postgres" |
{ | |
// NORMAL SETTINGS | |
// =============== | |
"editor.quickSuggestions": { | |
"comments": "on", | |
"strings": "on", | |
"other": "on" | |
}, | |
"editor.suggestOnTriggerCharacters": true, | |
"editor.wordBasedSuggestions": true, |
Also see the original Pieter Noordhuis's guide
You need:
If you are like me you find yourself cloning a repo, making some proposed changes and then deciding to later contributing back using the GitHub Flow convention. Below is a set of instructions I've developed for myself on how to deal with this scenario and an explanation of why it matters based on jagregory's gist.
To follow GitHub flow you should really have created a fork initially as a public representation of the forked repository and the clone that instead. My understanding is that the typical setup would have your local repository pointing to your fork as origin and the original forked repository as upstream so that you can use these keywords in other git commands.
Clone some repo (you've probably already done this step).
git clone [email protected]
; | |
; START Elliot Custom | |
; | |
M155 S5 ; turn on auto temp reporting | |
G21 ;metric values | |
M117 Setting Temps to [extruder0_temperature]/[bed1_temperature]... | |
M104 S[extruder0_temperature] T0; Setting Extruder Temp | |
M145 B[bed1_temperature] H[extruder0_temperature] ; send temps to LCD | |
M117 Waiting for Tip and Bed Temps... | |
M190 S[bed1_temperature]; Wait for bed |
<?php | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Facades\Auth; | |
use Illuminate\Support\Facades\Cookie; | |
use Illuminate\Support\Facades\Mail; | |
use Illuminate\Support\Facades\Session; | |
use Ratchet\WebSocket\Version\RFC6455\Connection; |