Skip to content

Instantly share code, notes, and snippets.

View andrizan's full-sized avatar
🌐
Working

Riski Andriyanto andrizan

🌐
Working
View GitHub Profile
@andrizan
andrizan / README-Template.md
Created July 26, 2019 07:57 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@andrizan
andrizan / index.html
Last active December 17, 2019 03:58
Shopping cart JS
<!-- Nav -->
<nav class="navbar navbar-inverse bg-inverse fixed-top bg-faded">
<div class="row">
<div class="col">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#cart">Cart (<span class="total-count"></span>)</button><button class="clear-cart btn btn-danger">Clear Cart</button></div>
</div>
</nav>
<!-- Main -->
@andrizan
andrizan / keyPhpStrom.md
Last active January 15, 2020 03:08 — forked from gopalindians/code.md
Jetbrains IntelliJ IDEA 2019.2.4 Activation code

Please make fork of this, as this can be removed by Github.com sooner or later.

CATF44LT7C-eyJsaWNlbnNlSWQiOiJDQVRGNDRMVDdDIiwibGljZW5zZWVOYW1lIjoiVmxhZGlzbGF2IEtvdmFsZW5rbyIsImFzc2lnbmVlTmFtZSI6IiIsImFzc2lnbmVlRW1haWwiOiIiLCJsaWNlbnNlUmVzdHJpY3Rpb24iOiJGb3IgZWR1Y2F0aW9uYWwgdXNlIG9ubHkiLCJjaGVja0NvbmN1cnJlbnRVc2UiOmZhbHNlLCJwcm9kdWN0cyI6W3siY29kZSI6IklJIiwicGFpZFVwVG8iOiIyMDIwLTAxLTA4In0seyJjb2RlIjoiQUMiLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJEUE4iLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJQUyIsInBhaWRVcFRvIjoiMjAyMC0wMS0wOCJ9LHsiY29kZSI6IkdPIiwicGFpZFVwVG8iOiIyMDIwLTAxLTA4In0seyJjb2RlIjoiRE0iLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJDTCIsInBhaWRVcFRvIjoiMjAyMC0wMS0wOCJ9LHsiY29kZSI6IlJTMCIsInBhaWRVcFRvIjoiMjAyMC0wMS0wOCJ9LHsiY29kZSI6IlJDIiwicGFpZFVwVG8iOiIyMDIwLTAxLTA4In0seyJjb2RlIjoiUkQiLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJQQyIsInBhaWRVcFRvIjoiMjAyMC0wMS0wOCJ9LHsiY29kZSI6IlJNIiwicGFpZFVwVG8iOiIyMDIwLTAxLTA4In0seyJjb2RlIjoiV1MiLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJEQiIsI

@andrizan
andrizan / seoUrl
Last active February 10, 2020 13:37
function seoUrl($string) {
//Lower case everything
$string = strtolower($string);
//Make alphanumeric (removes all other characters)
$string = preg_replace("/[^a-z0-9_\s-]/", "", $string);
//Clean up multiple dashes or whitespaces
$string = preg_replace("/[\s-]+/", " ", $string);
//Convert whitespaces and underscore to dash
$string = preg_replace("/[\s_]/", "-", $string);
return $string;
application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/pdf

Hi 👋, I'm Riski

A passionate Software Engineer from Indonesia

andrizan

  • 🌱 I’m currently learning Vue.js, Next.js, Docker, Java, Typescript, Go Lang, Phython

  • 📝 I regulary write articles on andrizan.my.id

  • 💬 Ask me about PHP and PHP Framework

ADGuard Filters

https://cdn.jsdelivr.net/gh/AdguardTeam/AdguardFilters@master/EnglishFilter/sections/antiadblock.txt

Nano Defender

  1. Get Nano Defender for Firefox on AMO (Recommend, ONLY for Firefox 60 or above)

Extra installation steps for uBlock Origin

  • Subscribe Nano Defender Integrationhttps://cdn.jsdelivr.net/gh/andrizan/NanoFilters@master/NanoMirror/NanoDefender.txt
  • Go to uBlock Origin dashboard, select Settings tab, check I am an advanced user, click the gears icon that shows up, replace unset after userResourcesLocation by
@andrizan
andrizan / windows-run-cmds.md
Created December 1, 2021 07:20 — forked from jayrgee/windows-run-cmds.md
Windows Run Commands

WINDOWS RUN COMMANDS:

Administrative Tools

Description Command
Administrative Tools control admintools
Authorization Manager azman.msc
Component Services dcomcnfg
Certificate Manager certmgr.msc
@andrizan
andrizan / SourceCodeSearchEngines.md
Created December 1, 2021 07:21 — forked from phillipalexander/SourceCodeSearchEngines.md
Source Code Search Engines You Can Use For Programming Projects

Source Code Search Engines

NOTE: This list is almost entirely copy/pasted from THIS awesome article. I've made my own personal edits (adding some additional content) which is why I keep it here.

Every day meanpath crawls over 200 million websites capturing the visible text, HTML source code, CSS and Javascript. This information is used by many companies to monitor the growth of web facing technology.

@andrizan
andrizan / sequentialNumberImage.js
Last active February 3, 2022 10:04
Image Renamer CLI
const { readdirSync, rename } = require('fs');
const { resolve } = require('path');
let arg = process.argv
// Get path to image directory
var path = arg[2]
if (!path) {
console.log("\x1b[31m", 'err: Enter directory address. Exp: D:\\imag\\chp\\');