Skip to content

Instantly share code, notes, and snippets.

View bystefu's full-sized avatar
💭
Just quarantined... 🤦‍♂️

Stefu Catalin bystefu

💭
Just quarantined... 🤦‍♂️
View GitHub Profile
usort( $array, function( $a, $b ) {
if( $a['key'] === $b['key'] ) {
return 0;
}
return ( $a['key'] < $b['key'] ) ? 1 : -1;
@BackFront
BackFront / HTML5_player.html
Last active May 27, 2023 16:04
Pseudo Streaming MP4’s with PHP
<video controls="" width="400">
<source src="http://66.128.61.175/reel/1cc976948e74aa62f7a7fde16e64fb6b/360p" type="video/mp4">
Your browser does not support HTML5 video.
</video>