Skip to content

Instantly share code, notes, and snippets.

View jasyuiop's full-sized avatar
🚴‍♂️

M.Emre Nefesli jasyuiop

🚴‍♂️
  • Turkey
View GitHub Profile
@PurpleVibe32
PurpleVibe32 / vmwk17key-5000keys-unchecked.txt
Last active November 1, 2024 10:32
5000k+ vmware workstation pro 17 (untested)
Unavailable - VMWare took down my VMWare Workstation Pro 17 keys gist, so, to prevent legal issues i'll be taking this down too.
You can find evidence at https://gist.github.com/PurpleVibe32/30a802c3c8ec902e1487024cdea26251/forks
@santaklouse
santaklouse / CrossOver.sh
Last active November 18, 2024 21:41
unlimited CrossOver trial (MacOS)
#!/usr/bin/env bash
# checck if pidof exists
PIDOF="$(which pidof)"
# and if not - install it
(test "${PIDOF}" && test -f "${PIDOF}") || brew install pidof
# find app in default paths
CO_PWD=~/Applications/CrossOver.app/Contents/MacOS
test -d "${CO_PWD}" || CO_PWD=/Applications/CrossOver.app/Contents/MacOS
@adog1314
adog1314 / PortForwardOverWireGuard.md
Last active November 12, 2024 07:34
Port forward over wireguard to VPS with static IP

Port forward over wireguard to VPS with static IP

This is write up is on how to port forward over wireguard. I am going to be port forwarding a mail server running MailCow on my local server, but really any service can be port forwared with some modifications to the IPTables commands in the wireguard file.

I am using a cheap Vultr VPS as my proxy server, if your intrested heres a referral link https://www.vultr.com/?ref=9019507 where I get $10 or if you plan to spend more then $35 on your account you will get $100 and I will get $35 https://www.vultr.com/?ref=9019508-8H

My Setup

  • Debain 10 Buster
  • Tunnel subnet: 10.1.1.0
  • Proxy-VPS Tunnel IP: 10.1.1.1
@RobinFrcd
RobinFrcd / dismiss_topics.js
Created February 19, 2022 11:14
Dismiss all twitter topics
// Dismiss all topics listed on https://twitter.com/YOUR_USERNAME/topics
var timer=100;document.querySelectorAll("[aria-label^='Dismiss'").forEach((interest) => {setTimeout(function(){interest.click()},timer);timer+=2000;});
@gdavis
gdavis / xcode-vim.markdown
Last active November 1, 2024 23:31
Notes for working with Xcode VIM mode

Xcode VIM

Learning VIM in Xcode comes with its own set of challenges and limitations, but there is enough there for you to give your mousing hand a break and master the keyboard.

A limited set of commands are available in Xcode, and this document attempts help ease the learning curve of using VIM in Xcode by providing a handy reference as well as what I find works for me in practice.

NOTE: Commands are case-sensitive. A command of N means pressing shift + n on the keyboard.

This document is a work in progress! Leave a comment if you would like to see a change.

@naveenkrdy
naveenkrdy / AdobeAMDFix.md
Last active November 14, 2024 10:53
To fix adobe products crashes on AMD hackintosh

Adobe Crash Fix XLNC

Instructions

  1. Install needed adobe apps from adobe creative cloud.

  2. Open Terminal.

  3. Copy-paste the below command to your terminal and run it (enter password when asked).

@justincy
justincy / README.md
Last active April 5, 2024 22:19
Configure Storybook to work with Next.js, TypeScript, and CSS Modules

In addition to the Storybook for React setup, you'll also need to install these packages:

npm i -D @babel/core babel-loader css-loader style-loader
@eviltester
eviltester / gist:11093f0e4c501a41990e227393184eda
Last active November 19, 2024 16:11
uncheck twitter interests
var timer=100;document.querySelectorAll("div > input[type='checkbox']:checked").forEach((interest) => {setTimeout(function(){interest.click()},timer);timer+=2000;});
@FilipaBarros
FilipaBarros / Sysadmin_Interview_Questions.md
Last active July 11, 2024 08:27
Sysadmin Interview Questions

Top Questions for Sysadmin Interview:

Disclaimer: These questions and answers aren't at all mine. These were scavanged around in the web. I hope it helps.

Basic:
  1. What is Linux and also explain the basic components of Linux?

    Answer: Linux is the most commonly used operating system that is open source and free. For any computer, the operating system acts as the backbone, and it is most important software that is required for any computer.

@seanh
seanh / vimgrep.md
Last active August 19, 2024 17:45
vimgrep cheatsheet

vimgrep

  • Vimcasts on vimgrep

  • Uses native vim regexes (which are slightly different from the regexes used by grep, ack, ag, etc) so the patterns are the same as with vim's within-file search patterns.

You can do a normal within-file search first, then re-use the same pattern to