list history command prompt windows
jika menggunakan powershell history jika menggunakan command prompt windows biasa doskey /history
Danang Setya Pramana - Working Memory
This is my working memory when i forgot some command and some code for my work
jika menggunakan powershell history jika menggunakan command prompt windows biasa doskey /history
list container docker ps list all status container docker ps --all docker rm CONTAINER Name, shorthand Default Description --force , -f Force the removal of a running container (uses SIGKILL) --link , -l Remove…
// gin framework go get -u github.com/gin-gonic/gin // ORM library go get -u github.com/jinzhu/gorm // package that we will be used to authenticate and generate our JWT go get -u…
git restore di gunakan untuk mengembalikan status perubahan, jika ingin mengembalikan status perubahan yg sudah masuk ke stagging area bisa menggunakan tambahan perintah --stage di git restore menjadi git restore…
install phpunit via composer composer require --dev phpunit/phpunit on root folder tambahkan file phpunit.xml.dist <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="system/Test/bootstrap.php" backupGlobals="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> <coverage includeUncoveredFiles="true" processUncoveredFiles="true">…
radix-ui https://ui.shadcn.com/
composer installation composer create-project codeigniter4/appstarter project-root
cara membuat branch/cabang di git git branch namaCabang cara merubah nama git yg aktif git branch -M namaBaru cara menghapus cabang git branch --delete namaCabang cara pindah cabang git branch…
Php Unit Test CLI untuk codeigniter //untuk menjalankan semua unit test .\vendor\bin\phpunit .\core\tests\app\libraries\FunctionName.php //untuk menjalankan 1 unit test .\vendor\bin\phpunit --filter testSpecifiedMethod .\core\tests\app\libraries\FunctionName.php