Exhaustive list of SPDX (Software Package Data Exchange) licenses: https://spdx.org/licenses/
| I always forget the exacty syntax for copying & moving files, especially when dealing with a remote Linux server. And I had wrote some documentation years ago but lost it (so much for persistent storage!). So here's some notes: | |
| Change into the directory you want to download the files | |
| cd /home/dir_to_dump_file_in | |
| Log onto server using Safe File Transfer Protocol--just like how you would "ssh" into the Linux server | |
| sftp [email protected] | |
| password: ilovemarge | |
| Obtain the files from the Linux server on to your local server |
| """Easily save tf.data.Datasets as tfrecord files, and restore tfrecords as Datasets. | |
| The goal of this module is to create a SIMPLE api to tfrecords that can be used without | |
| learning all of the underlying mechanics. | |
| Users only need to deal with 2 functions: | |
| save(dataset) | |
| dataset = load(tfrecord, header) | |
| To make this work, we create a .header file for each tfrecord which encodes metadata |
Requires PowerShell to be installed on your PC. Will require installing the signtool which is part of Windows SDK. There are 4 major steps.
Go to partner.microsoft.com/en-us/dashboard/apps-and-games > Select your app > click Product Identity > Copy the Package/Identity/Publisher value.
It should be formatted something like CN=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX replacing the Xs with hexadecimal characters.
Use the New-SelfSignedCertificate PowerShell cmdlet.
By Steve Carey - Last updated Sept 9, 2023.
Super basic app example: Github electron-app-store-example
To Do List app example (contains native node modules): github.com/steve981cr/electron-todo-example
Introduction
Step 1) Start with your completed Electron Application
Step 2) Create icons of your logo
Step 3) Create Microsoft Developer Account and app
| // Storing cryptographic password hashes in database or memory | |
| // and comparing with password. | |
| package main | |
| import ( | |
| "log" | |
| "errors" | |
| "strings" | |
| "crypto/subtle" | |
| "encoding/base64" |