- Ejecutar en powershell
Set-ExecutionPolicy Unrestricted -Scope Process
- Descargar removeedge.ps1
- Ejecutar el script
./removeedge.ps1
- Ejecutar en powershell
Set-ExecutionPolicy Restricted -Scope Process
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Title</title> | |
<meta charset="utf-8"> | |
<style> | |
@font-face { | |
font-family: 'IBM Plex Sans'; | |
src: url('IBM_Plex_Sans/IBMPlexSans-VariableFont_wdth\,wght.ttf') format('truetype'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Ramos con DataTables | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-12-09 | |
// @description try to take over the world! | |
// @author You | |
// @match https://intranet7.ucsc.cl/aplicaciones/dyssae/dara/solicitud_inscripcion/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=ucsc.cl | |
// @require https://code.jquery.com/jquery-3.7.1.min.js | |
// @require https://cdn.datatables.net/2.1.8/js/dataTables.min.js |
Hice este script porque el sistema de notificaciones de la aplicacion movil está mal hecha, y un calendario que hace bien esta tarea son Google Calendar, Outlook o cualquier otro calendario. La otra razon es porque puedes organizar mejor tu horario agregando otros eventos aparte de las clases, y asi teniendo una mejor vision de lo que vas hacer durante el dia.
- Descargar Tampermonkey
- Ir a https://portal.ucsc.cl/alumno#/horario
- Hacer click en la extension y seleccionar la opcion 'Create a new script...'
- Pegar el contenido del archivo script.js y guardar (Ctrl + s)
- Recargar la pagina
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef LISTSTACK_HPP | |
#define LISTSTACK_HPP | |
#include "StackADT.hpp" | |
#include "Node.hpp" | |
template <typename T> | |
class ListStack : public StackADT<T> | |
{ | |
public: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os from "node:os"; | |
export const OSExtension = os.platform() === "win32" ? ".exe" : ""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Node { | |
constructor(value) { | |
this.value = value | |
this.next = null | |
} | |
add(value) { | |
this.next = new Node(value) | |
return this.next | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <vector> | |
#include <algorithm> | |
template <typename T> | |
void print(const T t) | |
{ | |
std::cout << t << std::endl; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const axios = require("axios"); | |
const got = require("got"); | |
const port = 8080; | |
const url = `http://localhost:${port}`; | |
const randomNumber = (min, max) => | |
Math.floor(Math.random() * (max - min)) + min; | |
setInterval(() => { | |
axios.post(url + "/ingreso", { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { createTransport } = require("nodemailer"); | |
const yargs = require("yargs"); | |
function cli(argv = process.argv) { | |
return yargs(argv.slice(2)) | |
.options({ | |
mail: { | |
alias: "m", | |
demandOption: true, | |
type: "string", |
NewerOlder