Yosemite logical volumes cannot be read on Windows bootcamp anymore since they are not HFS+ volumes but they are now CoreStorage.

if i look back, i am lost
ojovivo

Origami Around
DEAR READER
dirt enthusiast
todays bird
Cosmic Funnies
tumblr dot com
Show & Tell

titsay
I'd rather be in outer space 🛸
Aqua Utopia|海の底で記憶を紡ぐ

ellievsbear

No title available
Monterey Bay Aquarium
Not today Justin
Three Goblin Art

祝日 / Permanent Vacation

PR's Tumblrdome
RMH

seen from Germany

seen from Türkiye

seen from Finland
seen from Australia

seen from United States
seen from Italy

seen from United States

seen from Chile

seen from Australia
seen from United States

seen from Brazil

seen from United Kingdom

seen from Italy
seen from Spain

seen from Türkiye

seen from United Kingdom
seen from United States

seen from Germany

seen from Germany
seen from Germany
@0x1b
Yosemite logical volumes cannot be read on Windows bootcamp anymore since they are not HFS+ volumes but they are now CoreStorage.
Remove unnecessary Windows 10 entries from rEFInd
rEFInd detects unnecessary entries for Windows 10. This is how I removed them.
rEFInd is now installed under the ESP volume if you choose default installation on OS X 10.10 Yosemite or later. So, mount it first, then edit the conf file next.
mkdir /Volumes/esp sudo mount -t msdos /dev/disk0s1 /Volumes/esp vim /Volumes/esp/EFI/refind/refind.conf
refind.conf should have the commented line like #dont_scan_volumes "Recovery HD", so add an line the below:
#dont_scan_volumes "Recovery HD" dont_scan_volumes "BOOTCAMP","NTFS volume"
Then restart the Mac, you won't see the entries anymore.
(Re)start specific background command
Useful when (re)start specific background command:
PID=$(ps aux | grep '<command>' | awk '{ print $2 }') [ -z "${PID}" ] && kill ${PID} nohup <command> 2>&1 | logger & unset PID
One time job with at despite cron repeats
at is a command to execute one time job despite cron repeats the job.
at 3:30 AM << __JOBS__ whoami > ./whoami.txt __JOBS__
The example above will create whoami.txt in the current directory and put the result of whoami command at 15:30.
atq to check left jobs
atrm to delete a left job
Generate pronounceable password
Generate it with pwgen:
pwgen -01A
Remove conflicted copies of Dropbox
find | grep | xargs rm doesn't cope with file names having spaces, so I choose -name instead.
find . -type f -name '*conflicted copy *' -print0 | xargs -0 rm
iTerm2 is a replacement for Terminal and the successor to iTerm
TotalTerminal dies sadly. iTerm2 has Quake-style visor just like TotalTerminal. This will be my alternative choice.
Webhook service for cross-brower JavaScript testing CI. This seems dead though.
List of icense identifiers
Check log from Android Browser
Connect adb and;
adb logcat browser:V *:S
Sort single line with space delimiter
xargs seems awesome:
echo 'B A C' | xargs -n 1 | sort | xargs
Crop multiple image files at once with GraphicsMagick
Crop multiple images:
gm mogrify -output-directory ./OUTPUT_PATH -crop WxH+X+Y *.EXT
Clear DNS cache on Mac OS X
Run the command below:
sudo killall -HUP mDNSResponder
Note about CFLAGS & LDFLAGS
This may be helpful when you get errors during compiling source codes.
CFLAGS as environment variable sets PATH to include directory
LDFLAGS as environment variable sets PATH to lib directory
For example, adding another openssl from Homebrew to compile something:
CFLAGS="-I$(brew --prefix openssl)/include" LDFLAGS="-L$(brew --prefix openssl)/lib" make
This make you use specified openssl to make
Git: Ignoring specific file from staging
Sometimes I want change some files that I don't want to stage the changes. For example, developing a web app on `localhost` and changing the configuration file temporary should be happens. Now Git supports this use case. If you want to ignore specific file from staging: git update-index --assume-unchanged And when you want to track changes again: git update-index --no-assume-unchanged This is useful when you want to stage everything by `git add -A` or something :D
Concatenate multiple PDFs into a single PDF
Ghostscript will help you:
gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=merged.pdf source1.pdf source2.pdf source3.pdf etc.pdf