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
Install macOS via Internet Recovery | |
Once in macOS, use Disk Utility to shrink the primary partition to 50GB, and create a second dummy partition. | |
Boot the Arch install ISO. Use fdisk to wipe the dummy partition. Create two partitions: | |
- 1GB (for /boot) | |
- The remainder for your root partition | |
Partition type should be Linux data. No need to format them yet. |
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
// Codependence Program | |
// Define the Codependence object | |
let Codependence = { | |
selfEsteem: 0.5, // Initial self-esteem level | |
partner: null, // Reference to the codependent partner | |
patterns: [], // Store patterns of codependent behavior | |
// Function to establish a codependent relationship | |
establishRelationship: function(partner) { |
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
// Cognitive Behavioral Therapy (CBT) Program | |
// Define the CBT object | |
let CBT = { | |
thoughts: [], // Store thoughts and beliefs | |
emotions: [], // Store associated emotions | |
behaviors: [], // Store behaviors and actions | |
patterns: [], // Store patterns of thought-behavior-emotion interactions | |
// Function to identify and record thoughts |
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
// Mindfulness Meditation Program | |
// Define the MindfulnessMeditation object | |
let MindfulnessMeditation = { | |
thoughts: [], // Store thoughts during meditation | |
focus: null, // Current point of focus during meditation | |
timer: null, // Timer to track meditation duration | |
isMeditating: false, // Flag to indicate if meditation is in progress | |
// Function to start meditation |
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
// PTSD Program | |
// Define the PTSD object | |
let PTSD = { | |
triggers: [], // List of triggers that activate the PTSD response | |
memory: [], // Store traumatic memories | |
symptoms: [], // List of symptoms experienced during a PTSD episode | |
isActivated: false, // Flag to indicate if PTSD is currently activated | |
threshold: 0.7, // Threshold level for activation | |
currentTrigger: null, // The trigger currently activating the PTSD response |
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
board_name MAMBAF405US | |
# name: DIATONE ROMA | |
# feature | |
feature -AIRMODE | |
feature GPS | |
# beacon | |
beacon RX_LOST |
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
/etc/init.d/dnsmasq stop | |
/etc/init.d/firewall stop | |
/etc/init.d/sysntpd stop | |
/etc/init.d/dnsmasq disable | |
/etc/init.d/firewall disable | |
/etc/init.d/sysntpd disable | |
/etc/init.d/dropbear enable | |
cat > /etc/config/network <<\EOF | |
config interface 'loopback' |