| Name | Type | License | Tech |
|---|---|---|---|
| apostello | SMS communication | MIT | Python |
| Bible API | bible reference | MIT | Ruby |
| Bible Helper | bible reference | MIT | JavaScript |
| Cedar | media projection | MIT | JavaScript (Meteor) |
| Chabaa | service streaming and chat | GPLv3 | PHP |
| CHUMS | ChMS | MIT | TypeScript |
| ChurchCRM | ChMS | MIT | PHP |
| ChurchInfo | ChMS | GPLv2 | PHP |
This file contains hidden or 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
| export const getThumbnail = (id, size = 300) => | |
| `https://drive.google.com/thumbnail?id=${id}&sz=${size}`; | |
| export const getIcon = (mimeType) => | |
| `https://drive-thirdparty.googleusercontent.com/256/type/${mimeType}`; | |
| export const getFile = (id) => `https://drive.google.com/uc?id=${id}`; | |
| const downloadFile = (id) => |
This file contains hidden or 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
| <?php | |
| namespace App\Console\Commands; | |
| use Carbon\Carbon; | |
| use Cron\CronExpression; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Console\Scheduling\CallbackEvent; | |
| use Illuminate\Console\Scheduling\Schedule; |
This file contains hidden or 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
| <?php | |
| namespace App\Listeners; | |
| use TightenCo\Jigsaw\Jigsaw; | |
| use App\Utilities\ResizeImageUtility; | |
| class ResizeImageListener | |
| { | |
| public function handle(Jigsaw $jigsaw) |
This file contains hidden or 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
| <?php | |
| namespace App\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Console\Scheduling\Schedule; | |
| class ScheduleList extends Command | |
| { | |
| /** |
This file contains hidden or 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
| # Source: https://stackoverflow.com/questions/8199231/how-to-setup-mass-dynamic-virtual-hosts-in-nginx | |
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server; | |
| # Match any server name with the format [subdomain.[.subdomain...]].domain.tld.dev | |
| server_name ~^(?<subdomain>([\w-]+\.)*)?(?<domain>[\w-]+\.[\w-]+)\.dev$; | |
| # Map by default to (projects_root_path)/(domain.tld)/www; |
This file contains hidden or 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
| /** | |
| * Lightweight script to detect whether the browser is running in Private mode. | |
| * @returns {Promise<boolean>} | |
| * | |
| * Live demo: | |
| * @see https://output.jsbin.com/tazuwif | |
| * | |
| * This snippet uses Promises. If you want to run it in old browsers, polyfill it: | |
| * @see https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.auto.min.js | |
| * |
This file contains hidden or 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
| function getSql($query) | |
| { | |
| $sql = $query->toSql(); | |
| $bindings = $query->getBindings(); | |
| $count = count($bindings); | |
| while ($count > 0) | |
| { | |
| $count--; | |
| $sql = preg_replace('/\?/', array_shift($bindings), $sql, 1); |
No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.
Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.
- A Russian translation of this article can be found here, contributed by Timur Demin.
- A Turkish translation can be found here, contributed by agyild.
- There's also this article about VPN services, which is honestly better written (and has more cat pictures!) than my article.
NewerOlder