Checkout the new free font from JetBrains created just for developers. Â Im using it in Xcode. https://www.jetbrains.com/lp/mono/ Â Â
blog
Ad block – AlbeBlocksAnnoyances
[UPDATED TO SUPPORT iOS] I quit using Facebook well over a year ago, yet anytime my browser takes me there it shows me logged in. Â I DO connect to FB on my oculus – no choice. Â I don’t know how, but it sure seems using the oculus somehow communicates with my Mac and logs me… Continue reading Ad block – AlbeBlocksAnnoyances
How to Create a Safari Content Blocker Extension in Swift – iOS-Blog
Created my first safari content blocker today — incredibly easy and powerful.  This is a great intro to follow if you’re interested. How to Create a Safari Content Blocker Extension in Swift – iOS-Blog:
Fold code for functions you don’t mutate
Something I’ve found very helpful for my busy mind is to fold the code within functions I’ll rarely mutate. Folding/Unfolding code is as easy as tapping option-command-leftarrow to fold and option-command-rightarrow to unfold. So take the following code: Place the cursor anywhere within the function brackets and tap option-command-leftarrow, and this is what you have:… Continue reading Fold code for functions you don’t mutate
WTF Auto Layout?
Deciphering auto layout errors can be a real pain. johnpatrickmorgan created a nifty website to help: WTF Auto Layout?
SwiftUI – NSAttributedString
While it’s true SwiftUI doesn’t currently provide easy access to NSAttributedString, you can concatenate string literals assigning attributes to each literal individually: Text(“Regular, “) + Text(“Italic, “).italic() + Text(“Bold, “).bold() + Text(“Blue”).foreground(.blue) Not pretty, but it works
Static frameworks for pods
Excellent tool from leavez for enabling static frameworks for all your pods. Kudos to @mfcollins3 for the link: https://github.com/leavez/cocoapods-static-swift-framework
ABControls updated for swift 5.
https://github.com/albebaubles/ABControls
ABControls
I wanted to learn more about @IBDesignable and @IBInspectable, so I thought why not throw together a quick Custom UI Control project – contains such things as dropdown boxes, list boxes, barcode scanner, creater. https://github.com/albebaubles/ABControls
Xcode & Terminal
While I’d really like Xcode to provide an internal window for terminal, this is a nice piece of work from Damjan Dimovski on an integration shortcut that fires up terminal (of your choice) in the project folder: https://medium.com/@damjandimovski/open-terminal-from-xcode-9e4c10f7ace1