Skip to content

Instantly share code, notes, and snippets.

View kiritodeveloper's full-sized avatar
🏠
Working from home

Ricardo Rojas Cruz kiritodeveloper

🏠
Working from home
View GitHub Profile
@kiritodeveloper
kiritodeveloper / pt_guide.md
Created January 31, 2023 15:41 — forked from GusGA/pt_guide.md
Guía de configuración de equipos en packet tracer

Script de comandos de packet tracer

Equipo Switch

Entrar en modo EXEC privilegiado

Ejecutar el comando enable

Switch> enable
@kiritodeveloper
kiritodeveloper / files.txt
Created September 9, 2022 11:21 — forked from troyhunt/files.txt
Alleged TikTok Data Breach
Length Name
------ ----
184 app_info_202209032248.csv
145 app_server_info_202209032248.csv
410 cookie_202209032248.csv
537 oauth_client_details_202209032247.csv
501 oauth_client_extend_202209032247.csv
55 open_sms_phone_202209032247.csv
76 open_sms_temp_202209032247.csv
106 record_add_order_202209032247.csv
@kiritodeveloper
kiritodeveloper / index.html
Created July 5, 2022 19:05
Tetris Game JS & Canvas
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Tetris / JS Game by JEND</title>
<meta name="description" content="Tetris Game">
<meta content='width=device-width, initial-scale=1.0' name='viewport' />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<div class="container">
<div class="screen">
<div class="screen__content">
<form class="login">
<div class="login__field">
<i class="login__icon fas fa-user"></i>
<input type="text" class="login__input" placeholder="User name / Email">
</div>
<div class="login__field">
<i class="login__icon fas fa-lock"></i>
<div id="login-button">
<img src="https://dqcgrsy5v35b9.cloudfront.net/cruiseplanner/assets/img/icons/login-w-icon.png">
</img>
</div>
<div id="container">
<h1>Log In</h1>
<span class="close-btn">
<img src="https://cdn4.iconfinder.com/data/icons/miu/22/circle_close_delete_-128.png"></img>
</span>
@kiritodeveloper
kiritodeveloper / adobe-embed-api-showing-2-files-side-by-side.markdown
Created April 12, 2021 22:40
Adobe Embed API showing 2 files side by side

Adobe Embed API showing 2 files side by side

This Pen uses the free Adobe Embed API to display a PDF file in an HTML page.

The Adobe Embed API delivers JavaScript-based interfaces designed to help developers harness the power of integrated PDF in their web content. With the ability to natively display PDF in an environment you control, you no longer need to rely on Reader download buttons, 3rd party apps, and PDF viewers that care little for PDF standards.

Get the Adobe Embed API here: https://www.adobe.io/apis/documentcloud/dcsdk/pdf-embed.html

A Pen by Joel Geraci on CodePen.

@kiritodeveloper
kiritodeveloper / adobe-pdf-embed-api-using-base64-string-of-the-pdf.markdown
Created April 12, 2021 22:39
Adobe PDF Embed API using base64 string of the PDF

Adobe PDF Embed API using base64 string of the PDF

This Pen uses the free Adobe Embed API to display a PDF file in an HTML page.

The Adobe Embed API delivers JavaScript-based interfaces designed to help developers harness the power of integrated PDF in their web content. With the ability to natively display PDF in an environment you control, you no longer need to rely on Reader download buttons, 3rd party apps, and PDF viewers that care little for PDF standards.

Get the Adobe Embed API here: https://www.adobe.io/apis/documentcloud/dcsdk/pdf-embed.html

A Pen by Joel Geraci on CodePen.

3D CSS Tardis

Just falling in love with Dr Who and so I thought I'd make a 3d tardis in pure css and html. Learned a lot about translations and css animation here. Cheers.

A Pen by Gerwin van Royen on CodePen.

License.

@kiritodeveloper
kiritodeveloper / index.html
Created November 29, 2020 14:42
Prueba Práctica IV
<div id="aplicacion">
<ul id="menu">
<li v-for="(tab, clave ) in tabs"><a href="javascript:void(0)" class="tablinks" v-bind:class="{ activo: tab.seleccionado }" v-on:click="seleccionaTab( clave )">{{ tab.titulo }}</a></li>
</ul>
<div v-if="tabs[0].seleccionado" class="contenedor">
<div><div class="zonaIzquierda"><select v-bind:style="{ background : colorActividadSeleccionada }" v-on:change="seleccionaActividad($event)" v-model="actividadSeleccionada"><option v-for="actividad in actividades":value="actividad.Codigo" v-bind:style="{ background : actividad.color }">{{ actividad.Denominacion }}</option></select><br><br>
<div id="listaDeProfesores"><ul><li v-for="profesor, indice in profesores" v-on:click="seleccionaProfesor( indice )" v-bind:class="{ seleccionado : seleccionados[indice] }">{{ profesor.Nombre | Capitaliza }}, {{ profesor.Apellido1 | Capitaliza }} {{ profesor.Apellido2 | Capitaliza}}</li></ul>
</div>
</div>
<div class="zonaDerecha">