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
image list -f | |
shell dotnet-symbol /home/div0/.dotnet/shared/Microsoft.NETCore.App/9.0.0/libcoreclr.so | |
target symbols add /home/div0/.dotnet/shared/Microsoft.NETCore.App/9.0.0/libcoreclr.so.dbg |
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
#!/usr/bin/env python | |
from typing import List, Dict, Tuple | |
import json | |
from itertools import batched | |
import tempfile | |
from shutil import move | |
import subprocess | |
import time | |
import os |
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>Roman Numerals Quiz</title> | |
<style> | |
body { | |
display: flex; | |
flex-direction: column; |
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
using System.Diagnostics; | |
internal class Program | |
{ | |
static long[] counters; | |
const int timeLimit = 20 * 1000; | |
static void Count(int index) | |
{ | |
Stopwatch sw = Stopwatch.StartNew(); | |
while(sw.ElapsedMilliseconds < timeLimit) |
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
code: | |
org 0x100 | |
mov dx, msg | |
mov ah, 9 | |
int 0x21 | |
;get int2f dos handler | |
mov ax, 0x352f | |
int 0x21 |
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 asciichartpy | |
import colorama | |
import subprocess | |
import time | |
import re | |
r = re.compile("(\d+\.?\d*)") | |
def get_temp(): |
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; | |
import kha.System; | |
import haxe.ds.Vector; | |
class Main { | |
public static function main() { | |
var v:Vector<Int>; | |
for (i in 0...8192){ |
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 Proslji | |
// @version 1 | |
// @grant none | |
// @include https://*.slack.com/* | |
// ==/UserScript== | |
var fixit = {"proslji" : "prošli", | |
"prosljeg":"prošlog", | |
"prosljem":"prošlom", |
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 Better Blic! | |
// @version 1 | |
// @grant none | |
// @include https://*.blic.rs/* | |
// @include https://blic.rs/* | |
// ==/UserScript== | |
blacklist = ["kij.?", "kijin", "kijom", "anabel.?", "lun.?", "lunin"] | |
re = new RegExp("\\b(" + blacklist.join("|") + ")\\b", "i"); |
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
# -*- coding: utf-8 -*- | |
import requests | |
import bs4 | |
import re | |
import datetime | |
from matplotlib import pyplot | |
replacements = str.maketrans({ | |
'а':'a', | |
'е':'e', |