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

Keybase proof

I hereby claim:

  • I am BinaryKorra on github.
  • I am binaryswap (https://keybase.io/binaryswap) on keybase.
  • I have a public key whose fingerprint is 963B 049D 5CE8 56B3 C18F 0C5F AB50 F9A6 1FD3 0EAF

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am binarykorra on github.
  • I am digitalwolf (https://keybase.io/digitalwolf) on keybase.
  • I have a public key whose fingerprint is E5EB 7553 70FE 46ED 2305 0541 FF53 49F2 B884 B743

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am binarykorra on github.
  • I am md5central (https://keybase.io/md5central) on keybase.
  • I have a public key ASChuhsmWMFTjKmJ-c7qWPLMhdHnpq7XQ1tqQqydWAngtwo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am binarykorra on github.
  • I am drophash (https://keybase.io/drophash) on keybase.
  • I have a public key ASBYiD5dqRi4zD2S5UfZ73lMIY-EDg7_mcADX3FoRsk_sQo

To claim this, I am signing this object:

About Me

  • I am Snowflakes, A PHP Developer. Security Researcher, Internet Entrepreneur and a suitable build for creating Mesh and WISP Networks, for which I am about to create a Huge Project somewhere in the Philippines for that Project. I called Pyxida.
  • I was born on May 7, 1997 and is Highly dedicated for an Internet Startup, I've designed several School Projects before like Thermo Sensors and stuff, like a Sprinkler with Automated Time Stamp of when to Sprinkle to a Garden due to I am an Electronics Graduate.
  • I also am a Security Researcher at both sides who prefer Unix over MSDoS and other things I've tend to focused on, I also Plan to cultivate my Beliefs on Hinduism although I may be a Half Chinese / Filipino in the Philippines as for my Spiritual needs.

( C ) - Binary Mako, 09225205353

@binarykore
binarykore / webkit-pseudo-elements.md
Created December 17, 2020 16:30 — forked from leostratus/webkit-pseudo-elements.md
Webkit Pseudo-Element Selectors (Shadow DOM Elements)

An ongoing project to catalogue all of these sneaky, hidden, bleeding edge selectors as I prepare my JSConf EU 2012 talk.

Everything is broken up by tag, but within each the selectors aren't particularly ordered.

I have not tested/verified all of these. Have I missed some or got it wrong? Let me know. - A

A friendly reminder that you may need to set this property on your target/selected element to get the styling results you want:

-webkit-appearance:none;

@binarykore
binarykore / htmltesda.md
Created February 5, 2021 11:46
W3C / HTML5 / HTML4 Gist

HTML5 Elements

Structural Elements:

Element => Description

  • < article > Defines an independent section of writing
  • < aside > Defines info separate from main content
  • < footer > Defines bottom information of page or article
  • < header > Defines a headline
@binarykore
binarykore / every_number_of_days.php
Last active March 3, 2022 15:43
Update Database every 3 Days..
<?php
$_updateday = 3;
$_endofdays = 31;
$_monthsend = 12;
$_days = date("d");
$_months = date("m");
$_nowday;
$_nowmonth;
$_moddays;
if($_days >= $_endofdays){
<?php
function perMinute(){
$_second = 1;//Double per 60 Seconds..
$_halfmin = 30;//Change to 60 for 1 Minute..
$_minute = $_second * $_halfmin;
sleep($_minute);
$_time = time();
return($_time."\r\n");
}
for($_i = 0;$_i <= 61;$_i++){
@binarykore
binarykore / yearmodulo.php
Created April 25, 2022 05:17
Calculates the Year of given Time from Starting Year to Current Year..
<?php
$_currentyear = date("Y");
$_startingyear = "2016";
$_timespan = abs($_startingyear - $_currentyear);
$_hash = [];
for($_i = 0;$_i <= $_timespan;$_i++){
$_hash[] = ($_startingyear + $_i);
}
echo(join("\r\n",$_hash));
?>