Skip to content

Instantly share code, notes, and snippets.

View shakee93's full-sized avatar
👨‍💻
Focus

Shakeeb Sadikeen shakee93

👨‍💻
Focus
View GitHub Profile
@shakee93
shakee93 / .htaccess
Created January 31, 2017 17:45
Laravel Apache hide .env and several security settings via .htaccess
# Disable Directory listing
Options -Indexes
# block files which needs to be hidden // in here specify .example extension of the file
<Files ~ "\.(env|json|config.js|md|gitignore|gitattributes|lock)$">
Order allow,deny
Deny from all
</Files>
# in here specify full file name sperator '|'
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Reporting.WinForms;
using System.Reflection;
using System.Drawing.Printing;
using System.IO;
using System.Drawing.Imaging;
using System.Drawing;

RapidLoad API

What is API?

API is the acronym for Application Programming Interface, which is a software intermediary that allows two applications to talk to each other.

How does API work?

API works through Endpoints, Endpoints are set of codes which runs back and forth in order accomplish a specific task.

@shakee93
shakee93 / node-reel-callback.js
Created August 4, 2018 07:53
node-reel callback example
const reel = require('node-reel')
reel().call(() => {
console.log('my friend is here to remind me')
}).weekends().at('16:00').run()
@shakee93
shakee93 / node-reel-command.js
Created August 4, 2018 07:49
node-reel command example
const reel = require('node-reel')
reel().command('npm run clean_trash').everyThirtyMinutes().run()