Daniel Marczinmarczin.hashnode.dev·May 3, 2024How I ended up using Colima for Docker on Apple SiliconThis year I got the chance to work with an Apple Silicon-based MacBook Pro, and what neat machines they are! Compared to my Dell XPS 9500, the difference is night and day. These ARM based devices are fast and cool (both literally and figuratively), w...Discuss·10 likesDocker
Dany ParedesProdanywalls.com·Feb 9, 2022How to show the git branch in the terminalI'm a git Kraken lover but sometimes surf into my projects. I love to know in which branch I'm working. Edit the .bash_profile and paste the following lines. parse_git_branch() { git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' ...Discuss·1 like·3.7K readshow-toosx
Dany ParedesProdanywalls.com·Feb 9, 2022How to hide computer name in OSX terminalI love to have a clean terminal, the name of the computer is a piece of information not relevant to read every single time. I'm still using the bash shell. echo "export PS1='$ '" >> ~/.bash_profile . ~/.bash_profile For zsh users add the following ...Discuss·417 readshow-toosx
Tomasz Węgrzanowskitaw.hashnode.dev·Dec 27, 2021100 Languages Speedrun: Episode 36: AppleScriptAppleScript is a small language Apple included in OSX to automate some tasks. It's almost unknown, even though knowing a few things about it could be quite useful for a lot of OSX users. AppleScript uses atrocious "natural language" like syntax. How ...Discuss·31 reads100 Languages SpeedrunApple
Tomasz Węgrzanowskitaw.hashnode.dev·Nov 9, 2021Electron Adventures: Episode 92: Dock Drag and DropI wanted to be able to drag and drop CSV files from Finder onto the dock icon for the app to open them. The first issue this runs into is that such integrations only work if we tell OSX about them through Info.plist, and that's only possible for pack...Discuss·227 readsElectron AdventuresElectron
Tomasz Węgrzanowskitaw.hashnode.dev·Nov 9, 2021Electron Adventures: Episode 90: Dock MenuElectron apps by default are basically web pages with minimal wrapper, but it's possible to extend them with a lot of OS-specific functionality. Let's add OSX Dock menu to our app. I'll also finally stop quitting the app when the last window is close...Discuss·188 readsElectron AdventuresElectron
Andya-ndy.dev·Jan 16, 2015Create USB Installer OSX Yosemite 10.10Open terminal and type: $ sudo \[installer location\]/Contents/Resources/createinstallmedia --volume \[usb location\] --applicationpath \[installer location\] --nointeraction or, mine like this: sudo ~/Desktop/Install OS X Yosemite.app/Contents/Resou...Discuss·27 readsosx
Ben Hammondblog.benhammond.tech·Apr 11, 2021MacBook Emojis! 😀<^ CTRL> + <⌘ CMD> + <SPACE BAR> loads the MacOS emoji menu Emojis are exciting; honestly one of the most reliable to ways to convey emotional content in the written word. They might not be viewed as professional, but I honestly feel that moderate u...Discuss·189 readsemoji
Arunvel Sriramarunvelsriram.dev·Jan 2, 2021Preventing Firefox From Entering Safe ModeRecently I started using yabai + skhd for window management in OS X. I have set up Caps Lock as a Hyper key using Karabiner elements and dedicated it for yabai + skhd. Hyper key simply produces the effect of Shift + Alt + Command + Control. Basical...Discuss·517 readsFirefox
Fiko Borizqyfiko.me·Dec 29, 2019Docker - How To Access Docker MobyLinux VM on Windows or MacActually you can not access your hypervisor, but you can have another way to access it by creating a container that syncing to hyper-v. Just follow this step by run this command on your windows powershell or your osx terminal : docker run --net=host ...Discuss·84 readsDocker