Skip to content

Instantly share code, notes, and snippets.

@rosswd
rosswd / macbook.md
Last active September 19, 2019 18:37
Macbooks

Macbook Models

Macbook Pro

First Generation: Metallic Polycarbonate (2006-2008)

  • Early 2006 (Intel Core Duo)
  • Late 2006 (Intel Core 2 Duo)
  • Mid 2007 (Intel Core 2 Duo)
  • Late 2007 (Intel Core 2 Duo)
  • Early 2008 (Intel Core 2 Duo)
@rosswd
rosswd / requirements.txt
Created June 7, 2019 02:39
Headless search using Selenium in Python3
selenium==3.141.0
urllib3==1.25.3
@rosswd
rosswd / reset.md
Created June 4, 2019 22:29
SMC and PRAM reset on non T2-Security chip Intel Macbooks

TLDR

  • Power issues, do an SMC reset. Display resolution, sound or startup disk issues, do a PRAM reset.

SMC Reset

  • Apple Menu > Shut Down
  • Shift + Ctrl + Opt (left side) & Power button at the same time. Hold for 10 seconds.
  • Release all keys
  • Power on your Mac

PRAM Reset

@rosswd
rosswd / shell.sh
Last active April 23, 2024 23:49
Get video titles from a Youtube channel
# get a list of video titles for a channel
youtube-dl -i -e https://youtube.com/channel/CHANNEL_ID
# alternative
youtube-dl --skip-download --ignore-errors https://youtube.com/channel/CHANNEL_ID
@rosswd
rosswd / subnautica.md
Last active May 12, 2019 03:11
Oh Subnautica, how I ❤ thee so!

Subnautica

There be spoilers about, be careful young sailor.

Alien Warp Gates

  • 4 Master Gates
    • Ion Cube Pedestal at Front
    • Master Gates Unlock Slave Gates
  • 4 Slave Gates
@rosswd
rosswd / steamtext.txt
Created April 25, 2019 19:05
Steam forums text formatting
[h1]Header Text[/h1]
[b]Bold Text[/b]
[u]Underlined Text[/u]
[i]Italic Text[/i]
[strike]Strikethrough Text[/strike]
[spoiler]Spoiler Text[/spoiler]
[noparse]Don't parse [b]tags[/b][/noparse]
[url=store.steampowerered]Website link[/url]
[list]
[*]Bulleted List Item
@rosswd
rosswd / tweaks.md
Last active July 12, 2023 18:00
Tips for Vegas Pro 14 Edit

Vegas Pro 14 Tweaks for Windows 10

Turn off GPU Acceleration

  • Options > Preferences > Video > GPU acceleration of video processing: Off
  • Click Apply then OK
  • Restart Vegas

Disable Multi-Core Rendering for Playback

  • Ctrl+Shift + Options > Preferences (gives hidden Internal tab)
  • Click the Internal tab
@rosswd
rosswd / net.sh
Last active August 23, 2022 23:16
Home Network Tools
# test your internet connection
https://testmy.net/
https://www.dslreports.com/speedtest
https://fast.com/
https://www.nperf.com/en/
https://speedof.me/ - not recommended anymore because of lack of privacy options and forcing vpn deals on users
# dns
https://www.grc.com/dns/benchmark.htm
@rosswd
rosswd / qc.bat
Created January 15, 2019 19:32
Batch file to give Quake Champions high priority
:: Give Quake Champions high priority (Quake Champions must be installed using Steam not Bethesda Launcher)
:: Only needs to be run once per installation of Quake Champions
::
:: Essentially a copy from https://www.mikemartin.co/gaming_guides/quake_champions#h.p_ID_608 so credit goes to him
start steam://rungameid/611500
@echo Launching Quake Champions
@echo Setting High Priority in [30 seconds]
timeout /t 30 /nobreak
wmic process where name="QuakeChampions.exe" CALL setpriority "high priority"