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
Last active September 2, 2025 20:01
Setup auto suggestions in terminal with oh my zsh

⚡ Oh My Zsh Setup Guide

Oh My Zsh

Boost your terminal experience with Oh My Zsh 🚀
Follow the steps below to install and configure it with useful plugins.


@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',