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 Move controles pra baixo do vídeo | |
// @namespace http://tampermonkey.net/ | |
// @version 2025-02-22 | |
// @description Altera a disposição dos controles do vídeo | |
// @author Weslei Ramos | |
// @match https://www.youtube.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
// @grant none | |
// ==/UserScript== |
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
{ | |
"models": [ | |
{ | |
"title": "Qwen2.5-Coder-7B", | |
"provider": "ollama", | |
"model": "Qwen2.5-Coder-7B-Instruct-Q6_K:latest", | |
"apiBase": "https://your_ollama_server" | |
} | |
], | |
"tabAutocompleteModel": { |
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 Hide Video Playback Controls | |
// @namespace https://github.com/WesleiRamos | |
// @version 2024-11-29 | |
// @description Hide Playback Controls when mouse is not moving on Udemy, based on Rahul's script (https://greasyfork.org/pt-BR/scripts/519179-udemy-hide-video-playback-controls) | |
// @author Weslei Ramos | |
// @match https://www.udemy.com/course/* | |
// @icon https://www.udemy.com/staticx/udemy/images/v7/apple-touch-icon.png | |
// @license MIT | |
// @grant none |
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 HashEntry { | |
constructor(k, v) { | |
this.key = k | |
this.value = v | |
} | |
setValue(v) { | |
this.value = v | |
} | |
} |
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
body { | |
color: rgb(248, 248, 242); | |
background: rgb(44, 44, 39); | |
white-space: pre; | |
font-family: monospace; | |
} | |
a, a:visited { | |
color: rgb(143, 216, 239); | |
} |
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
package utils; | |
import motion.Actuate; | |
import motion.easing.Quad; | |
import openfl.geom.Rectangle; | |
import openfl.display.Sprite; | |
import openfl.Lib; | |
class CameraFollow extends Sprite | |
{ |
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="pt-br"> | |
<head> | |
<meta charset="utf-8"> | |
<title>slide exemplo</title> | |
<style> | |
/* reseta o padding e margin, sempre faço isso **/ | |
* { padding: 0; margin: 0; } | |
/* apenas para deixar os elementos centralizados **/ |
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
extends KinematicBody2D | |
## Gravidade vars | |
var VELOCIDADE = Vector2() | |
const FORCA_GRAVIDADE = Vector2(0, 1000) | |
## Andar vars | |
const VELOCIDADE_ANDAR = 120 | |
## Pular vars |
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 New Userscript | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @include *://mail.google.com/* | |
// @grant none | |
// ==/UserScript== |
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
package main | |
import "fmt" | |
func main() { | |
times := []string{"Corinthians", "Londrina", "Operário", "Leicester"} | |
calendario := [][][]string{} | |
lenTimes := len(times) | |
lenTimes2 := lenTimes / 2 |
NewerOlder