Skip to content

Instantly share code, notes, and snippets.

View jnahian's full-sized avatar

Julkar Naen Nahian jnahian

View GitHub Profile
@jnahian
jnahian / README.md
Created September 9, 2025 18:52
Daily Dose Slack Bot - User Guide

Daily Dose Slack Bot - User Guide

Daily Dose is a Slack bot that automates daily standup meetings for teams. It sends reminders, collects responses, and posts formatted standup summaries to team channels.

Features

  • Automated Standup Reminders: Sends DM reminders at configured times
  • Team Management: Create and join teams with custom schedules
  • Leave Management: Set vacation/leave dates to skip standup reminders
  • Work Day Configuration: Customize your working days
@jnahian
jnahian / default
Created September 16, 2019 18:03 — forked from dtomasi/default
Brew Nginx PHP7
server {
listen 80;
server_name localhost;
root /Users/YOUR_USERNAME/Sites;
access_log /Library/Logs/default.access.log main;
location / {
include /usr/local/etc/nginx/conf.d/php-fpm;
}
/**
* Created by jnahian on 6/1/2017.
*/
submit_form = function (t, e) {
var form = $(t).parents('form');
var action = $(form).attr('action');
var method = $(form).attr('method');
var mime = $(form).attr('enctype');
var btn = $(t).html();
var progress = $('.progress');
@jnahian
jnahian / meta-tags.md
Created January 27, 2019 11:16 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@jnahian
jnahian / currency.sql
Created May 30, 2017 08:47 — forked from allanlaal/currency.sql
SQL table of World currencies (even some expired ones) Source: http://bcmoney-mobiletv.com/blog/2008/12/30/currency-codes-dropdown-and-sql-table/ Cleaned up a bit, uses InnoDB and iso currency code as the PRIMARY key
--
-- Table structure for table `currency`
--
CREATE TABLE IF NOT EXISTS `currency` (
`iso` char(3) CHARACTER SET utf8 NOT NULL DEFAULT '',
`name` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`iso`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
@jnahian
jnahian / nameValidation.js
Created July 28, 2015 10:42
Name Validation Jquery
$(function(){
$('.check').first().keyup(function () {
$name = this.value;
validateEmail($name);
});
function validateEmail($name) {
var pattern = /^[A-Za-z]+$/i;
if (pattern.test($name)) {