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
the best way (I've found) to completely uninstall node + npm is to do the following: | |
go to /usr/local/lib and delete any node and node_modules | |
go to /usr/local/include and delete any node and node_modules directory | |
if you installed with brew install node, then run brew uninstall node in your terminal | |
check your Home directory for any local or lib or include folders, and delete any node or node_modules from there | |
go to /usr/local/bin and delete any node executable | |
You may need to do the additional instructions as well: | |
sudo rm /usr/local/bin/npm |
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
TTS/Crossword | |
https://github.com/kebernet/shortyz | |
Quran | |
https://github.com/quran/quran_android | |
Manga | |
https://github.com/inorichi/tachiyomi | |
Wallpaper |
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\Models; | |
use App\Exceptions\CheckoutNotAllowed; | |
use App\Http\Traits\UniqueSerialTrait; | |
use App\Http\Traits\UniqueUndeletedTrait; | |
use App\Models\Traits\Searchable; | |
use App\Presenters\Presentable; | |
use AssetPresenter; | |
use Auth; |