Some notes, tools, and techniques for reverse engineering macOS binaries.
Script copied from original dymoprint page and modified to include LM280 usb device id 0x1005 and ttf paths changed. Also usb device class changed from 0x3 to 0x7.
- Install drivers from this repo by following these instructions.
- Check if Ubuntu detects the LM 280 when connected to computer and powered on.
- Run the script.
- "True" BiS does not exist for bear tanks, as a good tank should be swapping gear sets constantly depending on the required balance between threat and survivability that is needed for a given encounter and raid team. That being said, certain threat vs. survivability tradeoffs are substantially more efficient than others, so the goal of these lists is to provide the user with representative gear sets which balance these two axes as efficiently as possible.
- Stat weights and EHP values are based on the integrated Classic Bear Tank Weights Calculator from the class Discord, and are calculated assuming full buffs, consumables, and boss debuffs unless otherwise specified.
- Gear lists are based on their general effectiveness against all raid bosses as opposed to being tailored for specific bosses. For tank stats in particular, this means that magical resistance is not fa
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
| -- HANDLE SCROLLING WITH MOUSE BUTTON PRESSED | |
| local scrollMouseButton = 3 | |
| local deferred = false | |
| overrideOtherMouseDown = hs.eventtap.new({ hs.eventtap.event.types.otherMouseDown }, function(e) | |
| -- print(hs.eventtap.event.properties['mouseEventButtonNumber']) | |
| local mouseButton = e:getProperty(hs.eventtap.event.properties['mouseEventButtonNumber']) | |
| if mouseButton == scrollMouseButton then | |
| deferred = true | |
| return true |
- Download & Install Sublime Text 3.2.2 Build 3211
- Visit https://hexed.it/
- Open file select sublime_text.exe
- Offset
0x8545: Original84->85 - Offset
0x08FF19: Original75->EB - Offset
0x1932C7: Original75->74(remove UNREGISTERED in title bar, so no need to use a license)
Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex
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
| # Config for GNU GRand Unified Bootloader (GRUB) (2) | |
| # /boot/grub2/grub.cfg | |
| # or | |
| # /boot/grub/grub.cfg | |
| # Mostly only 'legacy' CSM/BIOS boot methods currently. | |
| # Unable to boot loop entries with Secure Boot | |
| # Notes: | |
| # Description: | |
| # This grub.cfg file was created by Lance http://www.pendrivelinux.com |
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
| // pin is 2. | |
| const int multiButton = 2; | |
| void setup() { | |
| // Configure the pin mode as an input. | |
| pinMode(multiButton, INPUT); | |
| // Attach an interrupt to the pin, assign the onChange function as a handler and trigger on changes (LOW or HIGH). | |
| attachInterrupt(multiButton, onChange, CHANGE); | |
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
| # Poker II Firmware disassembly help tool. | |
| original = IO.read("./Poker II original firmware.bin") | |
| extracted = "" | |
| original.each_byte{|b| | |
| m = (((b & 0x0f) << 4) | ((b & 0xf0) >> 4)) ^ 0xff | |
| extracted << m.chr | |
| } | |
| puts extracted |
| Author: | Weisi Dai ([email protected]) |
|---|---|
| Date: | Apr 28, 2014 |
NewerOlder