Skip to content

Instantly share code, notes, and snippets.

View NahianAhmed's full-sized avatar
:octocat:
❤️ 👨‍💻 ☕

Nahian Ahmed NahianAhmed

:octocat:
❤️ 👨‍💻 ☕
View GitHub Profile
@NahianAhmed
NahianAhmed / Oh my ZSH with zsh-autosuggestions.md
Created October 17, 2023 15:26
Setup auto suggestions in terminal with oh my zsh

Oh my zsh.

Oh My Zsh

Install CURL.

sudo apt install curl

Install Oh my ZSH.

@as3eem
as3eem / Codeigniter smtp email server
Last active July 5, 2022 15:13
email from localhost via smtp server on codeigniter
//Load email library
$this->load->library('email');
//SMTP & mail configuration
$config = array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
'smtp_user' => '[email protected]',
'smtp_pass' => 'gmail_password',