Notes - SQL & Sqlite Database

Commands Get unique values SELECT DISTINCT report_date FROM daily; How many records? SELECT count(*) from vanall WHERE Shipped_Date="2021-01-12"; Last Shipped Date -- Current max date in the table SELECT max(Shipped_Date) from vanall; Insert Or Update INSERT or replace INTO daily (date,name_id,testing_hour,sellable,liquidation,quality,concession) VALUES ("2021-02-01",5,1.

Migrating a Website to Netlify

Preparing Website Files In Github Signup or login to Github Create Repository In Github Click Create Repository Repository name: renewalfamily/website > Click Create Repository Github…

X-Talker T51A Setup

T51A Two Way Radio We get these free T51A radio from Uline. It can cover more than 1 mile range for us to communicate within warehouse.

Pray-Reading(祷读)

新店行道会张茂松牧师祷读教导笔记。祷读的精髓是让人享受神的话,神的话是我们的粮食,是可以让我们吃喝快乐的,要去享受。

Notes - Caddy Server

Installation How to install Caddy in Ubunbu? Commands list sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo tee /etc/apt/trusted.gpg.d/caddy-stable.asc curl -1sLf…

祷读经文 - (2020 - 2021 年度)

2020年8月31日开始新一轮读经。这里是每周的祷读经文汇总,方便大家复习参考。经文按照时间先后次序排列。最近一周的祷读经文在上面,以前的经文放在下面。

Notes - Go Programming Language

Tips Regular expression is not a const There are boolean, rune, integer, floating-point, complex, and string constants. Rune, integer, floating-point, and complex constants are collectively…

Website Security With ReCAPTCHA

reCAPTCHA is a free google service that protects your website from spam and abuse. reCAPTCHA uses an advanced risk analysis engine and adaptive challenges to keep automated software from engaging in abusive activities on your site.

Notes - Linux

Linux Notes Common Commands How to show file permission? ls /var/www -al How to add a user? sudo adduser new_username // or sudo useradd new_username How to remove a user?

Notes - Excel

Tips To insert current date: Ctrl+; To insert current time: Ctrl+Shift+; To add today’s date in such a way that it updates when you recalculate or reopen your spreadsheet: =Today() Usage XLOOKUP Customer send asset list asking for status.

Tips - Label Printer

Models What’s the difference between GK420d and GK420t? GK420d = direct thermal (no printer ribbon facility), requires labels to be made from a direct thermal material in order to create print.

Deploying Static Website to Netlify

Netlify is a web developer platform that multiplies productivity. Netlify provides continuous deployment services, global CDN, atomic deploys, instant cache invalidation, one-click SSL, a browser-based interface, and many other features for managing our Hugo website.

Python Study Notes

1. Intro Python Crash Course 2E Study Notes Interpreter C:\Users\Andrew>python Python 3.8.2 (tags/v3.8.2:7b3ab59, Feb 25 2020, 23:03:10) [MSC v.1916 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information.