Skip to content

Instantly share code, notes, and snippets.

View rajibdpi's full-sized avatar
💻
Always try to discover something new

Rajib Ahmed rajibdpi

💻
Always try to discover something new
View GitHub Profile
@rajibdpi
rajibdpi / kms
Created February 18, 2021 04:51 — forked from vikassaini01/kms
KMS server Windows
Online kms host address:
--------
kms.digiboy.ir
54.223.212.31
kms.cnlic.com
kms.chinancce.com
kms.ddns.net
franklv.ddns.net
k.zpale.com
m.zpale.com
@rajibdpi
rajibdpi / font-awesome-4.7.0.json
Created March 12, 2021 17:14 — forked from zwinnie/font-awesome-4.7.0.json
JSON Of All Font Awesome 4.7.0 Icons
{
"4.7.0": [
"fa-500px",
"fa-address-book",
"fa-address-book-o",
"fa-address-card",
"fa-address-card-o",
"fa-adjust",
"fa-adn",
"fa-align-center",
@rajibdpi
rajibdpi / gist:b31b56a5f17cf2e5832c622d87479d54
Created July 2, 2021 14:51 — forked from vxnick/gist:380904
Array of country codes (ISO 3166-1 alpha-2) and corresponding names
<?php
$countries = array
(
'AF' => 'Afghanistan',
'AX' => 'Aland Islands',
'AL' => 'Albania',
'DZ' => 'Algeria',
'AS' => 'American Samoa',
'AD' => 'Andorra',
@rajibdpi
rajibdpi / VisioPro2019 Retail Key
Created December 3, 2021 07:54 — forked from moonsbtt/VisioPro2019 Retail Key
Microsoft visio pro 2019 retail key
Key: J7VCN-9HKFP-HGHJT-D4HCC-4RJMX
Description: Office19_RTM19_VisioPro2019R_Retail
Key: YNJDD-FGPX4-XRJV8-XKQJT-KTQ4K
Description: Office19_RTM19_VisioPro2019R_Retail
check http://www.waikey.com/ if need cheap web hosting!
@rajibdpi
rajibdpi / Vmware Workstation 15 Serial Key
Created December 3, 2021 08:00 — forked from moonsbtt/Vmware Workstation 15 Serial Key
Vmware Workstation 15 Serial Key
Vmware Workstation 15 Serial Key
Just install and apply the key below:
YG5H2-ANZ0H-M8ERY-TXZZZ-YKRV8
UG5J2-0ME12-M89WY-NPWXX-WQH88
UA5DR-2ZD4H-089FY-6YQ5T-YPRX6
GA590-86Y05-4806Y-X4PEE-ZV8E0
ZF582-0NW5N-H8D2P-0XZEE-Z22VA
NEZ80-3FO65-TJ7NA-8TSG4-35UC2
N0413-2T4FF-AA14P-XB6W4-8QC0P
These keys are for Office Professional Plus 2019
Version: Office19_RTM19_ProPlus2019VL_MAK_AE
BN8D3-W2QKT-M7Q73-Y3JWK-KQC63 (Activation left: 5000+)
PNB29-Y9TKP-BJFD2-RBCXR-DJ4XQ (Activation left: 1500+)
Download Link: ed2k://|file|cn_office_professional_plus_2019_x86_x64_dvd_5e5be643.iso|3775004672|1E4FFA5240F21F60DC027F73F1C62FF4|/
or please download from trusted source!
@rajibdpi
rajibdpi / pk.txt
Created January 10, 2022 17:58 — forked from id4ehsan/pk.txt
Product keys
Product
GVLK
Office 2013 Professional Plus
YC7DK-G2NP3-2QQC3-J6H88-GVGXT
Office 2013 Standard
@rajibdpi
rajibdpi / Convert Numbers to Words - Bangladesh.php
Created January 15, 2022 16:36 — forked from techjewel/Convert Numbers to Words - Bangladesh.php
Convert Numbers to Words - for Bangladeshi counting system
<?php
/**
* Function: convert_number
*
* Description:
* Converts a given integer (in range [0..1T-1], inclusive) into
* alphabetical format ("one", "two", etc.)
*
* @int
*

How to install dlib v19.9 or newer (w/ python bindings) from github on macOS and Ubuntu

Pre-reqs:

  • Have Python 3 installed. On macOS, this could be installed from homebrew or even via standard Python 3.6 downloaded installer from https://www.python.org/download. On Linux, just use your package manager.
  • On macOS:
    • Install XCode from the Mac App Store (or install the XCode command line utils).
    • Have homebrew installed
  • On Linux:
@rajibdpi
rajibdpi / leetcode.json
Created October 1, 2022 05:43 — forked from justaguywhocodes/leetcode.json
LeetCode questions converted to JSON
This file has been truncated, but you can view the full file.
[{
"id": "1",
"title": "Two Sum",
"question": "Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.\nYou may assume that each input would have exactly one solution, and you may not use the same element twice.\nYou can return the answer in any order.",
"examples": [
"Input: nums = [2,7,11,15], target = 9",
"Output: [0,1]",
"Output: Because nums[0] + nums[1] == 9, we return [0, 1].",
"Input: nums = [3,2,4], target = 6",
"Output: [1,2]",