This file contains 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
{ | |
"language_models": { | |
"ollama": {} | |
}, | |
"collaboration_panel": { | |
"enabled": false, | |
"assistant": false, | |
"chat": false | |
}, | |
"auto_update": true, |
This file has been truncated, but you can view the full file.
This file contains 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 data = [ | |
["The quick brown fox jumps", ""], | |
["", "The quick brown box jumps"], | |
["The quick brown fox jumps", " "], | |
[" ", "The quick brown box jumps"], | |
["The quick brown fox jumps", " "], | |
[" ", "The quick brown box jumps"], | |
["The quick brown fox jumps", "The quick brown box jumps"], | |
["The quick brown fox jumps", "The fast brown dog jumps"], | |
["The red car drives fast", "The blue car drives slow"], |
This file contains 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
# https://askubuntu.com/a/597071 | |
xinput set-button-map 9 1 0 3 | |
xinput set-button-map 10 1 0 3 |
This file contains 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
/* | |
* Useful links: | |
* | |
* https://help.adblockplus.org/hc/en-us/articles/360062859913-Add-a-custom-filter | |
* https://help.adblockplus.org/hc/en-us/articles/360062733293-How-to-write-filters#elemhide-emulation | |
*/ | |
/* Grid view */ | |
youtube.com#?#ytd-rich-item-renderer:-abp-has(a#thumbnail[href^="/shorts/"]) |
This file contains 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
export class Left<T> { | |
constructor(public value: T) {} | |
public isLeft(): this is Left<T> { | |
return true; | |
} | |
public isRight(): this is Right<never> { | |
return false; | |
} |
This file contains 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
#!/bin/bash | |
#adb shell pm list packages | awk -F":" '{print $2}' | |
apps="com.android.chrome | |
com.google.android.apps.docs | |
com.google.android.apps.maps | |
com.google.android.apps.photos | |
com.google.android.calendar | |
com.google.android.feedback |
This file contains 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
javascript: (function() { var elements = document.body.getElementsByTagName('*'); var items = []; for (var i = 0; i < elements.length; i++) { if (elements[i].innerHTML.indexOf('* { background:#000!important;color:#0f0!important;outline:solid #f00 1px!important; background-color: rgba(255,0,0,.2) !important; }') != -1) { items.push(elements[i]); } } if (items.length > 0) { for (var i = 0; i < items.length; i++) { items[i].innerHTML = ''; } } else { document.body.innerHTML += '<style>* { background:#000!important;color:#0f0!important;outline:solid #f00 1px!important; background-color: rgba(255,0,0,.2) !important; }\ * * { background-color: rgba(0,255,0,.2) !important; }\ * * * { background-color: rgba(0,0,255,.2) !important; }\ * * * * { background-color: rgba(255,0,255,.2) !important; }\ * * * * * { background-color: rgba(0,255,255,.2) !important; }\ * * * * * * { background-color: rgba(255,255,0,.2) !important; }\ * * * * * * * { backgrou |
This file contains 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
<?php | |
if ($_SERVER['REQUEST_METHOD'] === 'POST') { | |
$filePath = __DIR__ . '/out.tmp'; | |
$input = fopen('php://input', 'r'); | |
$output = fopen($filePath, 'w+'); | |
stream_copy_to_stream($input, $output); |
This file contains 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
; hello_world.asm | |
; | |
; Author: Gustavo Novaes | |
; Date: 2019-10-14 | |
; nasm -f elf32 -o hello.o hello_world.asm | |
; ld -m elf_i386 -o hello hello.o | |
global _start |
NewerOlder