# Install compiler and dependencies
sudo apt-get install -y git gcc make liblzma-dev
# Grab the source code
git clone https://github.com/ipxe/ipxe.git
cd ipxe/src
# Enable NFS support
Discover gists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Claude Code is a Beta product per Anthropic's Commercial Terms of Service. | |
// By using Claude Code, you agree that all code acceptance or rejection decisions you make, | |
// and the associated conversations in context, constitute Feedback under Anthropic's Commercial Terms, | |
// and may be used to improve Anthropic's products, including training models. | |
// You are responsible for reviewing any code suggestions before use. | |
// (c) Anthropic PBC. All rights reserved. Use is subject to Anthropic's Commercial Terms of Service (https://www.anthropic.com/legal/commercial-terms). | |
// Version: 0.2.9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select first_name,email from employees; | |
CREATE DATABASE company; | |
USE company; | |
CREATE TABLE employees ( | |
id INT AUTO_INCREMENT PRIMARY KEY, | |
first_name VARCHAR(50), | |
last_name VARCHAR(50), | |
department VARCHAR(50), |
- Create a folder at the root of your user home folder
(Example:
C:/Users/username/
) called.ssh
.
You can run something like:mkdir -p ~/.ssh
- Create the following files if they do not already exist (paths begin from the root of your user home folder):
- Open Automator.app
- Create new Quick Action
- Select Run AppleScript
- Add this:
set inputVolume to input volume of (get volume settings)
if inputVolume = 0 then
set inputVolume to 100
display notification "Volume set to 100" with title "✅ Microphone is on"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
Name: HybridFishingCraftAndSubmitv2.0 | |
Author: SubaruYashiro | |
Modified: Hitoooooo & Minnu | |
Version: 2.0.0 | |
IMPORTANT NOTES: Most likely need ICE v0.0.33 if you want stability, not tested on latest ICE version | |
Requirements: | |
-> SomethingNeedDoing v12.38 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create EKS Cluster | |
eksctl create cluster --name=observability \ | |
--region=us-east-1 \ | |
--zones=us-east-1a,us-east-1b \ | |
--without-nodegroup | |
eksctl utils associate-iam-oidc-provider \ | |
--region us-east-1 \ | |
--cluster observability \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
NewerOlder