UTM's shared directory implementation relies on SPICE WebDAV, which is slow.
Use Samba for faster shared directories. Samba is ~5x faster, see benchmarks at the end.
| const fs = require('fs') | |
| const path = require('path') | |
| const fse = require('fs-extra') | |
| const code = fs.readFileSync('app.code.json', 'utf-8') | |
| const obj = JSON.parse(code) | |
| Object.entries(obj).forEach(([loc, contents]) => { | |
| const absPath = path.resolve('.', 'output', loc) |
| <?php | |
| /** | |
| * Return search array | |
| */ | |
| function loopconf_search_array( $search_hash ) { | |
| // check for existence of unique transient | |
| if ( false === ( $search_array = get_transient( 'loopconf_search_' . $search_hash ) ) ) { | |
| global $wpdb; |
| #!/sbin/sh | |
| # | |
| # SuperSU installer ZIP | |
| # Copyright (c) 2012-2014 - Chainfire | |
| # | |
| # To install SuperSU properly, aside from cleaning old versions and | |
| # other superuser-type apps from the system, the following files need to | |
| # be installed: | |
| # | |
| # API source target chmod chcon required |
Most people are familiar with these three tools:
The first one is more popular among developers because it is style-agnostic. The other two enforce rules of [Crockford Style][4] and [Google Code Style][5] respectively.