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 numpy as np | |
| import math | |
| from typing import List, Dict | |
| def get_questions_by_level(questions: list[dict], level: str): | |
| return [q for q in questions if q["level"] == level] | |
| # Step 1: Generate 200 dummy questions with labeled difficulty | |
| def generate_questions() -> List[Dict]: |
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
| Data de Emissão: 26 de Outubro de 2023 | |
| Versão: 1.0 | |
| 1. Introdução | |
| A Eventos Lumina é uma empresa especializada em organização e produção de eventos, oferecendo soluções completas para tornar momentos inesquecíveis. Nossa missão é transformar sonhos em realidade, proporcionando experiências memoráveis para nossos clientes e convidados. Com uma equipe experiente e apaixonada por eventos, a Eventos Lumina se destaca pela qualidade dos serviços, criatividade e atendimento personalizado. | |
| 2. Informações da Empresa |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>PayTech Solutions | Payment Development Specialists</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <script> | |
| tailwind.config = { |
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
| /** | |
| * Creates a RegExp from the given string, converting asterisks to .* expressions, | |
| * and escaping all other characters. | |
| */ | |
| function wildcardToRegExp (s) { | |
| return new RegExp('^' + s.split(/\*+/).map(regExpEscape).join('.*') + '$'); | |
| } | |
| /** | |
| * RegExp-escapes all characters in the given string. |
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 Udemy Calc | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://www.udemy.com/course/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=udemy.com | |
| // @grant none | |
| // @require https://code.jquery.com/jquery-3.6.0.min.js |
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
| var data = [ | |
| { | |
| x: 'Ala-04', | |
| y: 1 | |
| }, | |
| { | |
| x: 'Ala-04', | |
| y: 1 | |
| }, | |
| { |
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 Baixar filmes | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://www.baixarfilmetorrent.net/* | |
| // @match https://www.baixafilme.net/* | |
| // @icon https://www.google.com/s2/favicons?domain=baixarfilmetorrent.net | |
| // @require https://unpkg.com/[email protected]/dist/vue.min.js |
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
| ul.encomendas { | |
| margin: 0; | |
| padding: 25px 15px; | |
| position: relative; | |
| } | |
| ul.encomendas li { | |
| display: block; | |
| transition-duration: 0.5s; | |
| position: relative; | |
| color: #fff; |
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
| .jsondiffpatch-delta { | |
| font-family: 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Courier, monospace; | |
| font-size: 12px; | |
| margin: 0; | |
| padding: 0 0 0 12px; | |
| display: inline-block; | |
| } | |
| .jsondiffpatch-delta pre { | |
| font-family: 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Courier, monospace; | |
| font-size: 12px; |
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
| //events - a super-basic Javascript (publish subscribe) pattern | |
| var events = { | |
| events: {}, | |
| on: function (eventName, fn) { | |
| this.events[eventName] = this.events[eventName] || []; | |
| this.events[eventName].push(fn); | |
| }, | |
| off: function(eventName, fn) { | |
| if (this.events[eventName]) { |
NewerOlder