I hereby claim:
- I am kovkor on github.
- I am kovkor (https://keybase.io/kovkor) on keybase.
- I have a public key ASBnMngIyaveo-cqCDIs1uv-ZjFo0tpgVeOBJYB7O08LvQo
To claim this, I am signing this object:
| #!/bin/bash | |
| # crontab for daily backup | |
| # 0 3 * * * /home/user/envbackup.sh >> /home/user/backup/backup.log 2>&1 | |
| # Backup destination | |
| BACKUP_DIR="/home/user/backup" | |
| # Work directory |
| <?php | |
| use Illuminate\Database\Seeder; | |
| class TelepulesekSeeder extends Seeder | |
| { | |
| public function run() | |
| { | |
| DB::table('telepulesek')->insert([ | |
| ['telepules' => 'Abádszalók', 'megye' => 'Jász-Nagykun-Szolnok'], |
| <?php | |
| function removeEmoji($string) { | |
| return mb_ereg_replace('[^\p{L}\p{N}\p{P}\p{Z}\r\n\<\>]','',$string); | |
| } | |
| ?> |
I hereby claim:
To claim this, I am signing this object:
| CREATE TABLE `countries` ( | |
| `id` int(11) NOT NULL auto_increment, | |
| `country_code` varchar(2) NOT NULL default '', | |
| `country_name` varchar(100) NOT NULL default '', | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM DEFAULT CHARSET=utf8; | |
| INSERT INTO `countries` VALUES (null, 'AF', 'Afghanistan'); | |
| INSERT INTO `countries` VALUES (null, 'AL', 'Albania'); | |
| INSERT INTO `countries` VALUES (null, 'DZ', 'Algeria'); | |
| INSERT INTO `countries` VALUES (null, 'DS', 'American Samoa'); |
| var keresoszavak = ['kategoria','helyiseg']; | |
| function prepareSearch() { | |
| let searchwords = []; | |
| let uri = window.location.pathname; | |
| let uritemp = uri.split('/'); | |
| let db = uritemp.length; | |
| for (i=1;i<db;i++) { | |
| if (uritemp[i]) { | |
| if ($.inArray(uritemp[i],keresoszavak)>-1) { |
| <?php | |
| namespace App\Providers; | |
| use Illuminate\Support\ServiceProvider; | |
| use Illuminate\Support\Facades\Schema; | |
| class AppServiceProvider extends ServiceProvider | |
| { | |
| /** |
I hereby claim:
To claim this, I am signing this object: