Skip to content

Instantly share code, notes, and snippets.

@NabilNoN
NabilNoN / RouterOS 6 Syntax.xml
Created November 6, 2020 07:18 — forked from RomelSan/RouterOS 6 Syntax.xml
Mikrotik RouterOS Syntax for Notepad++
<NotepadPlus>
<UserLang name="RouterOS" ext="rsc" udlVersion="2.1">
<Settings>
<Global caseIgnored="yes" allowFoldOfComments="no" foldCompact="no" forcePureLC="0" decimalSeparator="0" />
<Prefix Keywords1="no" Keywords2="no" Keywords3="yes" Keywords4="no" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="no" />
</Settings>
<KeywordLists>
<Keywords name="Comments">00# 01 02 03 04</Keywords>
<Keywords name="Numbers, prefix1"></Keywords>
<Keywords name="Numbers, prefix2"></Keywords>
@NabilNoN
NabilNoN / nhash.js
Created June 10, 2020 10:10
nHash Encoder Decoder For Strings in Javascript
/*
* Copyright (c) 2020. FacceApps
*/
let nHash = {
_level: 1,
type: "#",
_key: 1,
_withHex: false,
_enc: null,
_dec: null,
@NabilNoN
NabilNoN / send_firebase_notification.php
Created November 23, 2019 06:47 — forked from pratikbutani/send_firebase_notification.php
Send Firebase Notification to more than 1000 users at a time from PHP
<?php
/**
* Created By : Pratik Butani
* Created Date : 24/10/2018
*/
// Database Connection
include "conn.php";
// Get Records from Table
$sql = "SELECT * from fcm";
@NabilNoN
NabilNoN / MySQL.php
Last active May 24, 2022 10:48 — forked from shak18/MySQL.php
Simple PHP MYSQLi Class
<?php
class Mysql
{
private $link = null;
private $info = array(
'last_query' => null,
'num_rows' => null,
'insert_id' => null
);