delete file or folder based on date on linux CLI
List directories before delete find . -type d -ctime +60 -ls List files before delete find . -type f -ctime +60 -ls Delete directories in current directory find . -type…
Danang Setya Pramana - Working Memory
This is my working memory when i forgot some command and some code for my work
List directories before delete find . -type d -ctime +60 -ls List files before delete find . -type f -ctime +60 -ls Delete directories in current directory find . -type…
mysql.exe -u root set global net_buffer_length=1000000; set global max_allowed_packet=1000000000; SET foreign_key_checks = 0; SET UNIQUE_CHECKS = 0; SET AUTOCOMMIT = 0; source /home/user/dbdump150113.sql after restore remember to return default setting…
== Adb Server adb kill-server adb start-server == Adb Reboot adb reboot adb reboot recovery adb reboot-bootloader == Shell adb shell // Open or run commands in a terminal on…
### For Single File POST http://localhost:8080/upload Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW ------WebKitFormBoundary7MA4YWxkTrZu0gW Content-Disposition: form-data; name="file"; filename="file.jpeg" Content-Type: image/jpeg < C:/Users/user/Pictures/file.jpeg ------WebKitFormBoundary7MA4YWxkTrZu0gW-- ### For Multiple FIle POST http://localhost:8080/upload Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW ------WebKitFormBoundary7MA4YWxkTrZu0gW Content-Disposition:…
ALTER TABLE table_name DROP COLUMN column_name;
just try to use this npm install @types/node --save-dev
npx prisma generate --schema .\prisma\schema.prisma
ALTER table_name ADD nama_field type_field; DONE
ALTER TABLE table_name MODIFY field DATATYPE; ALTER TABLE table_name ALTER field SET DEFAULT CURRENT_TIMESTAMP();
CREATE TABLE new_tbl SELECT * FROM orig_tbl;