This is inspired by A half-hour to learn Rust and Zig in 30 minutes.
Your first Go program as a classical "Hello World" is pretty simple:
First we create a workspace for our project:
This is inspired by A half-hour to learn Rust and Zig in 30 minutes.
Your first Go program as a classical "Hello World" is pretty simple:
First we create a workspace for our project:
| #!/bin/bash | |
| mkdir -p ~/.ssh | |
| # generate new personal ed25519 ssh keys | |
| ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "rob thijssen <[email protected]>" | |
| ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_robtn -C "rob thijssen <[email protected]>" | |
| # generate new host cert authority (host_ca) ed25519 ssh key | |
| # used for signing host keys and creating host certs |
| var express = require("express"), | |
| app = express.createServer(express.logger()); | |
| port = process.env.PORT || 3000; | |
| app.configure(function(){ | |
| app.use(express.methodOverride()); | |
| app.use(express.bodyParser()); | |
| app.use(express.static(__dirname + '/')); | |
| app.use(express.errorHandler({ | |
| dumpExceptions: true, |
| ## rails runner script/generate_source_tracker_link.rb | |
| #eg: version_number: 20130116-1-1 #data-1(早)/2(晚)-1(article_number) | |
| class GeneraterSourceTracker | |
| #include ActionView::Helpers | |
| #include ActionView::Helpers::UrlHelper | |
| include Rails.application.routes.url_helpers | |
| delegate :url_helpers, to: 'Rails.application.routes' | |
| delegate :helpers, to: 'ActionController::Base' | |
| def tracker_url(source_tracker) |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"