Verify Permissions
diskutil verifyPermissions /
Repair Permissions
diskutil repairPermissions /
NDJSON is a convenient format for storing or streaming structured data that may be processed one record at a time.
cat test.json | jq -c '.[]' > testNDJSON.json
The guide breaks the process down into three steps, all performed via copying and pasting the code snippets through the terminal window. To launch a terminal window, open the Utilities folder inside the Applications folder and select terminal.
The first step makes a backup of the original IOAHCIBlockStorage file called IOAHCIBlockStorage.original. You will be prompted to enter in your system password when using the "sudo" command, since you are modifying system files. Copy and paste the code into the terminal window, a successful or uneventful response is a new blank terminal line.
sudo cp /System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage /System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage.original
Next the code patches the IOAHCIBlockStorage file, removing the requirements that the SSD be made by Apple. Copy and paste t
| <?xml version="1.0" encoding="UTF-8"?> | |
| <currency source-url="http://themoneyconverter.com"> | |
| <entry code="ARS" feed-location="/rss-feed/ARS/rss.xml"> | |
| <name>Argentine Peso</name> | |
| <unicode> | |
| <decimal>36</decimal> | |
| <hex>24</hex> | |
| </unicode> | |
| </entry> | |
| <entry code="AWG" feed-location="/rss-feed/AWG/rss.xml"> |
sudo -i and type in your Mac Administrator account password. sudo gives you root level or administrator level privileges.dsconfigad -show
| #! /bin/sh | |
| # @author: Claus Witt | |
| # http://clauswitt.com/319.html | |
| # Adding or Removing Items to hosts file | |
| # Use -h flag for help | |
| DEFAULT_IP=127.0.0.1 | |
| IP=${3:-$DEFAULT_IP} |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <books-of-the-bible> | |
| <entry handle="01"> | |
| <name handle="genesis">Genesis</name> | |
| <testament handle="old-testament" abbreviation="OT">Old Testament</testament> | |
| <chapters>50</chapters> | |
| </entry> | |
| <entry handle="02"> | |
| <name handle="exodus">Exodus</name> | |
| <testament handle="old-testament" abbreviation="OT">Old Testament</testament> |
| find . -name "*.ht*" | while read i; do pandoc -f html -t markdown "$i" -o "${i%.*}.md"; done |
We wanted to get away from the Events page with the long stream of reoccurring events and wanted to come up with a more organized way of structuring the events page of the app. Ever since the PocketPlatform team introduced the Lists of Lists feature, this allowed a Dynamic way of organizing our content in PocketPlatform. We focused on this being the way to go.