Skip to content

Instantly share code, notes, and snippets.

@Vidacs
Vidacs / gist:0bf6e9edf26452c4f17fa666c7755820
Created October 15, 2025 15:09
Tier 2 Normal 3 Cards
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SnacKINGS - Retos del Mes</title>
<!--[if mso]>
<style type="text/css">
table {border-collapse: collapse;}
@Vidacs
Vidacs / gist:d3e639b965f49657f9ff59f2256ef161
Created October 15, 2025 15:08
Tier 2 Normal 2 cards
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SnacKINGS - Retos del Mes</title>
<!--[if mso]>
<style type="text/css">
table {border-collapse: collapse;}
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SnacKINGS - Retos del Mes</title>
<!--[if mso]>
<style type="text/css">
table {border-collapse: collapse;}
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SnacKINGS - Retos del Mes</title>
<!--[if mso]>
<style type="text/css">
table {border-collapse: collapse;}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<meta charset="UTF-8" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta name="x-apple-disable-message-reformatting" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta content="telephone=no" name="format-detection" />
<title>Mondelez</title>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SnacKINGS - Retos del Mes</title>
<!--[if mso]>
<style type="text/css">
table {border-collapse: collapse;}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<meta charset="UTF-8" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta name="x-apple-disable-message-reformatting" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta content="telephone=no" name="format-detection" />
<title>Mondelez</title>
function Random(seed) {
this.seed = Math.random() * Math.pow(2,31);
this.a = 1103515245;
this.c = 12345;
this.m = Math.pow(2, 31);
}
Random.prototype.next = function() {
this.seed = (this.a * this.seed + this.c) % this.m;
return this.seed;
import React from 'react';
import Preloader from "./app/components/Preloader";
import LoggedNavigation from './app/navigations/loggedNavigation';
import GuestNavigation from './app/navigations/guestNavigation';
// Initialize Firebase
import * as firebase from 'firebase';
const firebaseConfig = {
@Vidacs
Vidacs / ble.js
Created February 23, 2018 03:14
BleChifo
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
TouchableHighlight,
NativeAppEventEmitter,
NativeEventEmitter,
NativeModules,