Skip to content

Instantly share code, notes, and snippets.

View binarykore's full-sized avatar
🏠
Living under the Shadows of my Game

Digital Kore binarykore

🏠
Living under the Shadows of my Game
View GitHub Profile
@binarykore
binarykore / binary_to_alphanumeric.php
Created March 25, 2024 12:33
Binary to Alphanumeric Characters..
<?php
//Soon..
?>
@binarykore
binarykore / oriental_pearl.md
Last active March 25, 2024 13:02
Oriental Pearl

Oriental Pearl is a type of Symmetric Cryptography for Message Relay on Forums.. It was established as a Form of Deceit Messaging on Forums as such for NTAS..

Mainly it uses B32 or Base 32 as a Wrapper.. Then, B64 or Base 64 for the Binary Mitigation.. Afterwards GZip Compress it vice versa (Odd or Even) via a +1 or +63 Mobile Number depending on the Shift..

The first Design (1.0) is based on Raw Format..

Meanwhile the 2.0 Revision already has Browser Fingerprinting like Signatures..

@binarykore
binarykore / name_punctual.php
Last active February 15, 2024 07:54
Proper Full Name Pronunciation using Index Keys of Tri..
<?php
$_fullName = ["first_name" => "","middle_name" => "","last_name" => ""];
$_firstAndLast = "";//key() and end() (index keys)
$_punctualName = "";//array_pop middle key, then concat first_name and middle_name, after concat same value to last_name
//EG: Kingfish, John Doe - Larc
//For Social Media Apps like Twitter, Facebook and Instagram especially here in Asia..
?>
@binarykore
binarykore / pageview.php
Last active February 10, 2024 14:43
Page View via HTTP Response Headers and Request Headers..
<?php
//header_request_get_variable = http_headers();
//hrgv
$_hrgv = func();
$_uri = $_hrgv["Hostname"];
$_path = $_hrgv["Path"];
$_data = $_uri;
//Save Data to Database as per Boot Load from CSS Files..
switch($_uri."/".$_path){
case("https://www.google.com/entrypoint"):
@binarykore
binarykore / concise.php
Created November 19, 2023 17:52
Testing PHP Concisiveness Method using PHP, will be adding a new PHP Class soon..
<?php
const guest = "";
const member = "test";
$_res = guest || member;
echo($_res);//Returns True, for Conditional Statements..
if(!empty($_res)){
echo(member);
}//
?>
@binarykore
binarykore / merge.sh
Created October 30, 2023 01:27
Git Branch and Local Repository Merge using Git Flow..
//Soon..
@binarykore
binarykore / branches.sh
Created October 8, 2023 22:52
Create Custom Github or Bitbucket Branch based on the Git Flow Standards Specifications..
git init
git add
git commit -m "0"
git remote add origin https://www.github.com/username/project_name.git
git branch -M branch_name
git push origin branch_name
//Credits to Github Documentations
git add runner.sh
@binarykore
binarykore / PWA.js
Last active October 30, 2023 01:28
PWA Sample for Blogs and other Things..
//Soon..
@media only screen and (max-width: 414px) and (min-width: 360px){
mobile{
//Insert Mobile Stylesheet here..
}
}
@media only screen and (max-width: 1280px) and (min-width: 601px){
tablet{
//Insert Tablet Stylesheet here..
}
}
@binarykore
binarykore / git.sh
Created September 3, 2023 10:03
Git Update Composer Lock and JSON File without Pulling the Vendor Folder or Package from its Repository, This is for Vercel..
php composer.phar require --no-update "vendor/package_name:^1.0.0"
php composer.phar update --no-install
php composer.phar update --no-install "vendor/package_name"
php composer.phar validate
php composer.phar install --dry-run
# This Method is for Git-based File Hosting Systems like Vercel..
# This Pulls Out the Required Information Packages without Pulling Out the Package Data..