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
3d_rotation; e84d | |
ac_unit; eb3b | |
access_alarm; e190 | |
access_alarms; e191 | |
access_time; e192 | |
accessibility; e84e | |
accessible; e914 | |
account_balance; e84f | |
account_balance_wallet; e850 | |
account_box; e851 |
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
"@babel/plugin-syntax-dynamic-import": "^7.2.0", | |
"@fortawesome/fontawesome-free": "^5.9.0", | |
"@mdi/font": "^3.6.95", | |
"@mdi/js": "^3.6.95", | |
"axios": "^0.19", | |
"bootstrap": "^4.1.0", | |
"cross-env": "^5.1", | |
"css-loader": "^2.1.1", | |
"inertia-vue": "github:inertiajs/inertia-vue", | |
"laravel-mix": "^4.0.7", |
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 Nadar\PhpComposerReader\ComposerReader; | |
use Nadar\PhpComposerReader\RequireSection; | |
// Instantiate ComposerReader | |
$reader = new ComposerReader(base_path('composer.json')); | |
// Instantiate RequireSection | |
$section = new RequireSection($reader); | |
// get current content of require section in composer.json | |
$packages = $reader->contentSection('require',$section) |
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
diff --git a/composer.json b/composer.json | |
index 8e2b2d7..38f96b4 100644 | |
--- a/composer.json | |
+++ b/composer.json | |
@@ -15,9 +15,6 @@ | |
}, | |
"require-dev": { | |
"beyondcode/laravel-dump-server": "^1.0", | |
- "filp/whoops": "^2.0", | |
- "fzaninotto/faker": "^1.4", |
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
diff --git a/config/app.php b/config/app.php | |
index c9960cd..29a3a1c 100644 | |
--- a/config/app.php | |
+++ b/config/app.php | |
@@ -171,7 +171,7 @@ return [ | |
*/ | |
App\Providers\AppServiceProvider::class, | |
App\Providers\AuthServiceProvider::class, | |
- // App\Providers\BroadcastServiceProvider::class, | |
+ App\Providers\BroadcastServiceProvider::class, |
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\Providers; | |
use Illuminate\Support\Facades\View; | |
use Illuminate\Support\ServiceProvider; | |
use Illuminate\View\Factory as ViewFactory; | |
class AppServiceProvider extends ServiceProvider | |
{ |
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
[Settings] | |
gtk-theme-name=Flat-Remix-GTK-Dark | |
gtk-icon-theme-name=Paper-Mono-Dark | |
gtk-font-name="Operator Mono Lig 9" | |
gtk-cursor-theme-size=32 | |
gtk-toolbar-style=GTK_TOOLBAR_TEXT | |
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR | |
gtk-button-images=0 | |
gtk-menu-images=1 | |
gtk-enable-event-sounds=1 |
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
{ | |
"journals": { | |
"default": { | |
"journal": "~/MEGAsync/journals/reminder.txt", | |
"encrypt": false | |
}, | |
"rfn": { | |
"journal": "~/MEGAsync/journals/royalflush.txt", | |
"encrypt": false | |
}, |
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
#!/usr/bin/bash | |
# System Maintainence | |
# alias mw="~/.config/mutt/mutt-wizard.sh" | |
# alias muttwizard="~/.config/mutt/mutt-wizard.sh" | |
# alias sdn="sudo shutdown now" | |
alias refgpg="gpg-connect-agent RELOADAGENT /bye" # Refresh gpg | |
# Some aliases | |
alias p="sudo pacman" | |
# remove all orphans recurssively |
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
#!/bin/sh | |
# CREATE NEW EMULATOR DEVICE | |
echo "Set A Name For Your Android Device" | |
read -r device | |
if [ -f "$device" ] ; then | |
echo "Opps! You Need to Name Your Device" | |
return; | |
fi | |
avdmanager list | grep id: |