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
| version: "3.7" | |
| services: | |
| msearch: | |
| image: getmeili/meilisearch:v0.27.2 | |
| container_name: meilisearch | |
| ports: | |
| - "7700:7700" | |
| environment: | |
| - MEILI_MASTER_KEY=yourkey | |
| - MEILI_NO_ANALYTICS=true |
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 | |
| /** | |
| * Template for Biblio List | |
| * name of memberID text field must be: memberID | |
| * name of institution text field must be: institution | |
| * | |
| * Copyright (C) 2015 Arie Nugraha (dicarve@gmail.com) | |
| * Create by Eddy Subratha (eddy.subratha@slims.web.id) | |
| * | |
| * Slims 8 (Akasia) |
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
| 'use strict' | |
| class routeGroup | |
| { | |
| constructor(routerInstance) | |
| { | |
| this.routerInstance = routerInstance | |
| } | |
| set(arrayMethod) |
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 | |
| /** | |
| * | |
| * Copyright (C) 2007,2008 Arie Nugraha (dicarve@yahoo.com) | |
| * Modified for Excel output (C) 2010 by Wardiyono (wynerst@gmail.com) | |
| * | |
| * This program is free software; you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation; either version 2 of the License, or | |
| * (at your option) any later version. |
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
| version: "3.9" | |
| services: | |
| web: | |
| image: drajathasan/debian-php5-mssql | |
| container_name: 'app1' | |
| volumes: | |
| - ./app:/var/www/html/ | |
| ports: | |
| - "8000:80" |
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 | |
| /** | |
| * Recursively empty and delete a directory | |
| * | |
| * @param string $path | |
| * @ref https://gist.github.com/jmwebservices/986d9b975eb4deafcb5e2415665f8877 | |
| */ | |
| function rrmdir( string $path ) : void | |
| { |
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
| // open your terminal | |
| 1. Download source from official website | |
| 2. Extract it into some folder | |
| 3. Do this command | |
| cd source_of_postgres_dir | |
| ./configure | |
| make | |
| su | |
| make install | |
| adduser postgres |
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
| # Search string before string ":" | |
| .+?(?=:) | |
| # Search string only some range character e.g: a to z | |
| ^[a-z]*$ | |
| # Search bracket | |
| {+\w+} |
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 | |
| /** | |
| * @author Drajat Hasan | |
| * @email drajathasan20@gmail.com | |
| * @create date 2020-08-15 08:39:32 | |
| * @modify date 2021-06-18 08:39:32 | |
| * @license GPL v3 | |
| */ | |
| // Source https://subinsb.com/php-download-extract-zip-archives/ |
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 | |
| /** | |
| * @Created by : Waris Agung Widodo (ido.alit@gmail.com) | |
| * @Date : 06/11/20 00.56 | |
| * @File name : index.php | |
| */ | |
| defined('INDEX_AUTH') OR die('Direct access not allowed!'); | |
| // IP based access limitation |