Skip to content

Instantly share code, notes, and snippets.

@wartoz
wartoz / Fixing_Microsoft_Store_on_Win10.txt
Last active February 13, 2021 15:20 — forked from kurtis318/Fixing_Microsoft_Store_on_Win10.txt
Fixing Microsoft Store on Win10
My Windows 10 VM had a broken Microsoft Store link in the Start menu. The link was renamed to ms-resource:StoreTitle
instead of Microsoft Store.
I found the following reddit post that fixed the icon.
https://www.reddit.com/r/Windows10/comments/82h48u/announcing_windows_10_insider_preview_build_17115/
Summary is as follows:
Open a powershell console as admin user. Run the commands:
@wartoz
wartoz / node_nginx_ssl.md
Created August 4, 2020 12:36 — forked from bradtraversy/node_nginx_ssl.md
Node app deploy with nginx & SSL

Node.js Deployment

Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt

1. Sign up for Digital Ocean

If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a

2. Create a droplet and log in via ssh

I will be using the root user, but would suggest creating a new user

@wartoz
wartoz / Windows
Created July 10, 2019 19:54 — forked from JerryLokjianming/Crack Sublime Text Windows and Linux.md
Crack Sublime Text 3.2.1 with Hex Editor
How to Crack Sublime Text 3 with Hex Editor
1. Download & Install sublime text 3.2.1 Build 3207
2. Visit Hexed.it
3. Open file sublime_text.exe
4. Search address 97 94 0D
5. Change to 00 00 00
6. Export File
7. Backup sublime_text.exe file (just rename)
8. Copy sublime_text.exe modified to directory Sublime Text 3
@wartoz
wartoz / realmd_ubuntu1404.md
Created June 25, 2019 14:16 — forked from troyfontaine/realmd_ubuntu1404.md
Steps to join an Ubuntu 14.04 Server to Active Directory using realmd

Steps to join an Ubuntu 14.04 Server to Active Directory using realmd

Step 1: Perform updates

apt-get update

Step 2: Install realmd

apt-get install -y realmd
@wartoz
wartoz / README.md
Created June 24, 2019 12:15 — forked from lightrush/README.md
X11vnc Systemd Unit File

X11vnc Systemd Unit File

This Systemd unit file starts X11VNC on boot

  1. Set VNC password: sudo x11vnc -storepasswd [YOUR VNC PASSWORD] /etc/x11vnc.passwd
  2. Install Systemd Unit File
sudo cp [path to]/vnc.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable vnc.service