- BBEdit: https://www.barebones.com/products/bbedit/
- Monodraw: https://monodraw.helftone.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
| # M-VAVE TANK-G | |
| # USB | |
| VID:4C4A | |
| PID:C755 |
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
| - 4 Buttons | |
| - 1 Power Switch | |
| - USB-C | |
| - 2x 7 Segment LED | |
| - PAN159CY 2.4GHz Chip | |
| - |
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
| # USB | |
| VID:1FC9 (NXP Semiconductors) | |
| PID:8260 | |
| +-o NUX NGS-6@02222100 <class IOUSBHostDevice, id 0x1000278d2, registered, matched, active, busy 0 (23 ms), retain 25> | |
| { | |
| "sessionID" = 567227310417 | |
| "USBSpeed" = 3 | |
| "idProduct" = 33376 |
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
| // This uses https://github.com/steipete/InterposeKit.git | |
| // I added this code to func application(_, didFinishLaunchingWithOptions:) -> Bool | |
| if let clazz = NSClassFromString("NSTouchBarView") { | |
| do { | |
| let _ = try Interpose(clazz) { | |
| try $0.hook("layout", | |
| methodSignature: (@convention(c) (AnyObject, Selector) -> Void).self, | |
| hookSignature: (@convention(block) (AnyObject) -> Void).self) { | |
| store in { `self` in } |
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
| [ | |
| { | |
| "title": "Template 1", | |
| "fileName": "template1" | |
| }, | |
| { | |
| "title": "Template 2", | |
| "fileName": "template2" | |
| } | |
| ] |
- Add "LCSC" Field in Schematic containing SMD Part Number "C...."
- Parts can be found here: https://jlcpcb.com/parts/componentSearch
- Generate BOM: Tools -> Generate Bill of Materials (any plugin will work)
- Generate POS: File -> Fabrication Outputs -> Footprint Position (.pos) File’.
- CSV format, mm unit, ‘single file for board’
- Plot Gerbers: File -> Plot
- All copper layers, front mask, back mask, front silk, back silk, Edge.Cuts
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
| func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { | |
| SwizzlePDFDocumentView() | |
| ... | |
| } |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>method</key> | |
| <string>app-store</string> | |
| <key>teamID</key> | |
| <string>YOUR_TEAM_ID</string> | |
| <key>destination</key> | |
| <string>upload</string> |
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
| @interface MSLogger () | |
| + (void)setCurrentLogLevel:(MSLogLevel)currentLogLevel; | |
| @end | |
| [MSLogger setCurrentLogLevel:MSLogLevelVerbose]; |
NewerOlder