| Name | Type | License | Tech |
|---|---|---|---|
| apostello | SMS communication | MIT | Python |
| Bible Helper | reference | MIT | Javascript |
| BVCMS | ChMS | GPLv2 | C♯ (.NET) |
| Cedar | media projection | MIT | JavaScript (Meteor) |
| ChurchCRM | ChMS | MIT | PHP |
| ChurchInfo | ChMS | GPLv2 | PHP |
| Jethro Pastoral Ministry Manager | ChMS | GPLv3 | PHP |
| OneBody | member portal | AGPLv3 | Ruby on Rails |
| /* debug.css | MIT License | zaydek.github.com/debug.css */ if (!("is_debugging" in window)) { is_debugging = false; var debug_el = document.createElement("style"); debug_el.append(document.createTextNode(`*:not(g):not(path) { color: hsla(210, 100%, 100%, 0.9) !important; background: hsla(210, 100%, 50%, 0.5) !important; outline: solid 0.25rem hsla(210, 100%, 100%, 0.5) !important; box-shadow: none !important; filter: none !important; }`)); } function enable_debugger() { if (!is_debugging) { document.head.appendChild(debug_el); is_debugging = true; } } function disable_debugger() { if (is_debugging) { document.head.removeChild(debug_el); is_debugging = false; } } !is_debugging ? enable_debugger() : disable_debugger(); |
As of XAMPP 5.5.30 and 5.6.14, XAMPP ships MariaDB instead of MySQL. MariaDB is not 100% compatible with MySQL and can be replaced with the "orginal" MySQL server.
- Windows
- XAMPP for Windows
- Administrator privileges to restart Windows services
| <?php | |
| class Search_model extends CI_Model | |
| { | |
| protected $tables = array( | |
| 'users' => array( 'name', 'email' ) | |
| ); | |
| public function run($search) | |
| { |
Every developer, when working on a project, start at some point wandering about the performances of his application. In the Laravel world, the most frequent question you may have is "are my sql queries fast enough ?". If Eloquent is doing a great job optimizing your queries, sometines it's not enough.
If you want to analyze the SQL queries of your application, behind Eloquent, you then need some tool to log all the executed queries. Laravel Debugbar is a great tool for that and it will help you lat.
For some projects however, you don't especially want to setup the Laravel Debugbar package. In this case, how can you log SQL queries ?
There is a simple snippet that you can add in the AppServiceProvider that will help you quite a lot.
Tired of always having to type your login and password when executing git pull on your server? So do I.
Here's an helper command that will remember your credentials so you don't have to type anything than your pull command.
This is particularly helpful when you are using a deployment pipeline that will ssh onto your server and execute a git pull command.
Here's the magic helper:
git config credential.helper store
Translations: Korean (by Yongwoo Lee)
Laravel has a powerful Inversion of Control (IoC) / Dependency Injection (DI) Container. Unfortunately the official documentation doesn't cover all of the available functionality, so I decided to experiment with it and document it for myself. The following is based on Laravel 5.4.26 - other versions may vary.
I won't attempt to explain the principles behind DI / IoC here - if you're not familiar with them you might want to read What is Dependency Injection? by Fabien Potencier (creator of the Symfony framework).