Skip to content

Instantly share code, notes, and snippets.

@czombos
czombos / smb.conf
Last active December 26, 2023 16:45
Configure Samba to Work Better with Mac OS X
[global]
use sendfile = yes
allow insecure wide links = yes
min protocol = SMB2
vfs objects = catia fruit streams_xattr
fruit:aapl = yes
fruit:nfs_aces = no
fruit:model = Xserve
fruit:resource = stream
fruit:metadata = stream
@czombos
czombos / vmware-onthehub-downloads.yml
Created February 27, 2020 22:26 — forked from rohan-molloy/vmware-onthehub-downloads.yml
Public Downloads for Various VMWare Products from OnTheHub.Com. License keys are requied
vmware:
-
name: 'VMware NSX for vSphere'
serial: null
url:
- 'http://software.onthehub.com/shared/publisher/VMware/VMware-NSX-Manager-6.2.0-2986609.ova'
-
name: 'VMware vRealize Suite 7 Enterprise'
serial: null
url:
@czombos
czombos / console.js
Last active September 24, 2023 11:49
keydrop free case batte
// https://key-drop.com/case-battle/list
// open browser console and run this
const targets = ['x1'];
(async () => {
while (true) {
await new Promise(r => setTimeout(r, 100));
try {
const casePrices = [...document.querySelectorAll('div.w-fit')].splice(0, 5).map(e => e.textContent);
const targetIndex = casePrices.findIndex(price => targets.includes(price));