All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
Here we write upgrading notes for brands. It's a team effort to make them as
| #!/bin/bash | |
| # | |
| # Fix Wifi of Intel Z83 mini PC on Ubuntu 20.04 | |
| # | |
| # Download these files in the same folder: | |
| # - brcmfmac43455-sdio.txt | |
| # - brcmfmac43455-sdio.clm_blob.base64 | |
| # | |
| # Source: | |
| # https://github.com/Linwood-F/MusicalPi/wiki/Intel-Z83-mini-PC-setup-(still-MusicalPi) |
| import { ObjectType, Field } from "@nestjs/graphql"; | |
| @ObjectType() | |
| export class PageInfo { | |
| @Field({ nullable: true }) | |
| startCursor: string; | |
| @Field({ nullable: true }) | |
| endCursor: string; |
| version: 2 | |
| workflows: | |
| version: 2 | |
| build: | |
| jobs: | |
| - test | |
| jobs: | |
| test: |
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
Here we write upgrading notes for brands. It's a team effort to make them as
| upload(files) { | |
| const config = { | |
| onUploadProgress: function(progressEvent) { | |
| var percentCompleted = Math.round((progressEvent.loaded * 100) / progressEvent.total) | |
| console.log(percentCompleted) | |
| } | |
| } | |
| let data = new FormData() | |
| data.append('file', files[0]) |
type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
The standard names for indexes in PostgreSQL are:
{tablename}_{columnname(s)}_{suffix}
where the suffix is one of the following:
pkeyfor a Primary Key constraint;keyfor a Unique constraint;exclfor an Exclusion constraint;idxfor any other kind of index;