This file contains 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
<!-- Parent Component --> | |
<div x-data="parent"> | |
<div id="child1" x-data="{ childData: 'Hello from child 1' }"> | |
<!-- Child 1 Content --> | |
</div> | |
<div id="child2" x-data="{ childData: 'Hello from child 2' }"> | |
<!-- Child 2 Content --> | |
</div> |
This file contains 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
SELECT LOWER(REGEXP_REPLACE(nama, '['"?:,./\&! ]+', '-')) |
This file contains 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
#!/bin/sh | |
# Create a RAM disk with same perms as mountpoint | |
# Script based on http://itux.idev.pro/2012/04/iservice-speed-up-your-xcode-%D0%BD%D0%B5%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D1%8B%D0%B5-%D1%81%D0%BF%D0%BE%D1%81%D0%BE%D0%B1%D1%8B/ with some additions | |
# Usage: sudo ./xcode_ramdisk.sh start | |
# PREREQUISITE: | |
# mkdir /Users/$USERNAME/Library/Developer/Xcode/DerivedData.shadow | |
## Unless you clear DerivedData folder, you can't mount ramdisk on it | |
# rm -r /Users/$USERNAME/Library/Developer/Xcode/DerivedData/* |