Skip to content

Instantly share code, notes, and snippets.

View KhalidSaifullahFuad's full-sized avatar
🏠
Working from home

Khalid Saifullah Fuad KhalidSaifullahFuad

🏠
Working from home
View GitHub Profile
@codeSTACKr
codeSTACKr / mongodb_cheat_sheet_2022.md
Created January 10, 2022 22:54
MongoDB Cheat Sheet 2022
@balvinder294
balvinder294 / fetch-file-from-url-spring-boot.java
Last active July 17, 2024 15:33
Fetch Image from URL and save locally in Spring Boot(Java)
Url imageUrl = new Url("https://site.com/image.jpeg"); // Sample url, replace with yours
String destinationFile = "sample.jpg";
/*******************Multipart Upload Method*********************************
** To resources like minio or DB
***************************************************************************/
/********
* Step 1
@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active July 23, 2024 08:15 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy
@ddeveloperr
ddeveloperr / ssh_authentication.txt
Last active May 17, 2024 04:53
Test your ssh terminal connection with github account, (ssh authentication)
1. You mast have a public key from your mashine stored on github as SSH key here:
https://github.com/settings/ssh
How to create ssh key on unix/mac os x:
- Open terminal, go to the root typing: $ cd ~ (recommended)
- Type: ssh-keygen -t rsa -C "your@email.address"
- To secure your ssh key ststem will ask you for passphrase (recommended) but you can skip it also
- That's you have the ssh key
- Check it with: $ ls -al ~/.ssh