Skip to content

Instantly share code, notes, and snippets.

View jzetina's full-sized avatar

Jorge Zetina jzetina

View GitHub Profile
@jzetina
jzetina / manifest.json
Created October 19, 2025 01:54
Xtremio Manifest
{"behaviorHints":{"configurable":true,"configurationRequired":false},"catalogs":[{"extra":[{"name":"genre","options":["Box Office Hits","Sports Replays","4K English Movies","4K Hindi Movies","Multi Audio Movies","English Movies 2025","English Movies 2024","English Movies 2023","English Movies 2022","English Movies 2021","English Movies 2019-2020","English Movies 2017-2018","English Movies 2000 - 2016","English Movies 90s","English Movies 80s","Hindi Movies 2025","Hindi Movies 2024","Hindi Movies 2023","Hindi Movies 2022","Hindi Movies 2021","Hindi Movies 2020","Hindi Movies 2010-2019","Hindi Movies 2000-2009","Hindi Movies 90s","Hindi Movies 80s","Hindi Movies Classic","South African Movies","Pakistani Movies","Pakistani Telefilms","QURAN MAJEED","Kids Movies","Punjabi Movies","Marathi Movies","Gujrati Movies","Malayalam Movies","Kannada Movies","Tamil Movies","Telugu Movies","Bangla Movies","3D Documentary and Imax Collection","Tom & Jerry Series","Horror Movies","Sushant Singh Rajput Collection","The Legend
@jzetina
jzetina / index.html
Created April 6, 2022 17:17
Basic ThreeJS scene
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>03 - Basic Scene</title>
</head>
<body>
<canvas class="webgl"></canvas>
<script src="./three.min.js"></script>
@jzetina
jzetina / app.js
Last active March 30, 2022 18:51
Navigation
/* MENU */
(function($) { "use strict";
$(function() {
var header = $(".start-style");
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 10) {
header.removeClass('start-style').addClass("scroll-on");
@jzetina
jzetina / wp-disable-plugin-update.php
Last active March 14, 2022 17:48
WP - Disable Plugin Updates
<?php
// have to add that opening tag to get syntax highlighting... ¯\_(ツ)_/¯
/**
* Prevent update notification for plugin
* http://www.thecreativedev.com/disable-updates-for-specific-plugin-in-wordpress/
* Place in theme functions.php or at bottom of wp-config.php
*/
function disable_plugin_updates( $value ) {
@jzetina
jzetina / heart.html
Last active March 11, 2022 00:02
CSS Heart with animation
<div class="heart"></div>
@jzetina
jzetina / redirection.html
Last active August 9, 2018 17:15
Redirect to another page from select option
<select id="redirectUrl">
<option value="">Select an option</option>
<option value="https://google.com.mx/">Google</option>
<option value="https://facebook.com/">Facebook</option>
</select>