Working with 3rd party repositories
Pull changes from upstream
Steps to pull changes from an upstream repository.
upstream
Git repository
Add git remote add upstream https://github.com/d2s/companies.git
---json | |
{ | |
"permalink": "/feed.json", | |
"eleventyExcludeFromCollections": true | |
} | |
--- | |
{ | |
"version": "https://jsonfeed.org/version/1", | |
"title": "{{ config.name }}", | |
"home_page_url": "{{ config.url }}", |
# ----------------------------------------------------------- | |
# Network configuration metadata | |
# | |
# - https://github.com/drduh/macOS-Security-and-Privacy-Guide#wi-fi | |
# ----------------------------------------------------------- | |
alias macos-wifi-configuration="defaults read /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist" | |
alias macos-wifi-configuration-backup="macos-wifi-configuration > ~/Desktop/macos-wifi-configuration-backup-$(date +%F-%H%M).txt" | |
alias macos-wifi-grep-ssid="macos-wifi-configuration | grep wifi.ssid | tr -d \"[:blank:]\" | sort | uniq" | |
alias macos-wifi-grep-SSIDString="macos-wifi-configuration | grep SSIDString | tr -d \"[:blank:]\" | sort | uniq" | |
alias macos-wifi-network-names="macos-wifi-grep-SSIDString" |
<head> | |
<!-- Plotly.js --> | |
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script> | |
</head> | |
<body> | |
<header> | |
<h1>Heat Map with Plotly.js</h1> | |
</header> | |
#!/usr/bin/env bash | |
# Add `upstream` Git repository | |
# git remote add upstream https://github.com/d2s/companies.git | |
# Merge latest changes from the `upstream` Git repository | |
git fetch upstream | |
git checkout master | |
git merge upstream/master |
Steps to pull changes from an upstream repository.
upstream
Git repositorygit remote add upstream https://github.com/d2s/companies.git
code-spell-checker
VS Code extension.ext install code-spell-checker
to the command promnt and press Enter key.Depending on the used platform, there are different ways to install Hugo.
Good starting point for learning Docker is to read following sections from the official Docker documentation. It is mainly a series of short tutorials, together with related documentation about syntax of commands, etc..
Dockerfile
Those are focusing mainly on how to get existing things from Docker Hub. Next thing to learn would be how to create things for running custom software on top of base Ubuntu Linux system image.
// Place your settings in this file to overwrite the default settings | |
{ | |
// ================================== | |
// PRIVACY SETTINGS | |
// Disable crash reporting | |
// https://code.visualstudio.com/Docs/supporting/faq#_how-to-disable-crash-reporting | |
"telemetry.enableCrashReporter": false, | |
// Disable telemetry reporting | |
// https://code.visualstudio.com/Docs/supporting/faq#_how-to-disable-telemetry-reporting |
Had problem with Ubuntu package cache.
➜ sources.list.d sudo apt-get update
Hit:1 http://fi.archive.ubuntu.com/ubuntu xenial InRelease
Hit:2 http://fi.archive.ubuntu.com/ubuntu xenial-updates InRelease
Hit:3 http://fi.archive.ubuntu.com/ubuntu xenial-backports InRelease
Hit:4 http://security.ubuntu.com/ubuntu xenial-security InRelease