Skip to content

Instantly share code, notes, and snippets.

View mobeendev's full-sized avatar

Abdul Mobeen mobeendev

View GitHub Profile
@mobeendev
mobeendev / notes.md
Created November 3, 2021 17:54 — forked from vasanthk/notes.md
Julian's Writing Workshop - 11/2/2021 - Notes

Raw Notes

These are my unstructured notes from the workshop. Read with caution (they're biased to my own interpretation).

Notes

1,000,000 Julian.com visitors Part 1: What's your objective for your article? Part 2: pair it with an objective objective + motivation good nonfiction = 70% novelty + 25% story + 5% style

@mobeendev
mobeendev / new_gist_file.js
Created September 22, 2021 11:49 — forked from nmsdvid/new_gist_file.js
Simple JavaScript Debounce Function
// Returns a function, that, as long as it continues to be invoked, will not
// be triggered. The function will be called after it stops being called for
// N milliseconds. If `immediate` is passed, trigger the function on the
// leading edge, instead of the trailing.
function debounce(func, wait, immediate) {
var timeout;
return function() {
var context = this, args = arguments;
clearTimeout(timeout);
@mobeendev
mobeendev / frontendDevlopmentBookmarks.md
Created April 3, 2016 19:39 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
<?php
require_once('DB.php');
class CompanyCharts extends DB {
private $dbServer;
private $dbUser;
private $dbPass;
private $dbName;
private $conn;
@mobeendev
mobeendev / app.js
Created June 2, 2015 11:44
AngularJS Sharing a Service Among Controller Example
//app.js file//
var app = angular.module("MyApp", [])
.controller("MyCtrl", function($scope) {
$scope.value = 1;
$scope.vis = true;
$scope.name = "Show Hide Box";
$scope.incrementValue = function(val) {
@mobeendev
mobeendev / title_plugin.php
Last active August 29, 2015 14:21
Simple Plugin Class to get started
<?php
/*
Plugin Name: Mobeen Plugin
Plugin URL: http://mysite.com/
Description: A simple Example plugin
Version: 1.0
Author: Alexander Mobeen
Author URI: https://www.linkedin.com/in/mobeendev
Contributors: Mobeen_Title_Plugin
*/