Skip to content

Instantly share code, notes, and snippets.

View edcote's full-sized avatar
🎯
Googler

Edmond Cote edcote

🎯
Googler
View GitHub Profile
@edcote
edcote / win10_openssh.md
Last active January 19, 2018 22:01
Windows 10 OpenSSH Configuration

Win10 OpenSSH Tips

Don't ask. I dislike Windows.

  • Recursively take ownership administrator group

    TAKEOWN /F "C:\WINDOWS\System32\OpenSSH" /R TAKEOWN /F "C:\WINDOWS\System32\OpenSSH" /A /R

@edcote
edcote / why_throttle.md
Last active February 28, 2023 20:40
Linux CPU throttle and I/O performance tips

CPU performance

My workstation's CPU has been throttling and/or running slow for the past 48 hours. Here are the commands that I used to debug the problem.

First, core temperatues were checked:

$ watch sensors
coretemp-isa-0000
Adapter: ISA adapter
@edcote
edcote / aws.md
Last active December 26, 2017 15:33
AWS
@edcote
edcote / rocketboot.md
Last active January 12, 2018 16:50
Rocket Boot
@edcote
edcote / github.md
Created December 13, 2017 16:43
GitHub Notes

GitHub

Steps to submit a patch to a public repo

1. Fork the repository using GUI
1. Clone your forked repo
1. Create the branch locally, e.g.: `git branch devel-edcote` (should be descriptive name)
1. Push the new branch up to your fork: `git push origin devel-edcote`
1. Switch to your new new: `git checkout devel-edcote`
  1. Do development work, make commits, ...
@edcote
edcote / git.md
Last active September 19, 2018 18:27
GIT Notes

GIT

Getting started

  • Clone repository

    • Upload your public key to Bitbucket/GitHub
    • Clone using command: git clone git@bitbucket.org:<username>/<repo>.git
  • Pull from master branch

  • Use command git pull