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
if you see this then you are a sussy baka |
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 cv2 | |
import numpy as np | |
import random | |
import string | |
import os | |
import sys | |
# Number of videos to generate | |
num_videos = 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
let giftsMod={ | |
init:function(){ | |
console.log("Loaded") | |
Game.oldGainBuff=Game.gainBuff | |
Game.gainBuff=function(name,duration){ | |
if(name=="gifted out"){return} | |
return Game.oldGainBuff(name,duration) | |
} | |
}, | |
save:function(){ |
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
/** | |
*Submitted for verification at Etherscan.io on 2019-11-14 | |
*/ | |
// hevm: flattened sources of /nix/store/8xb41r4qd0cjb63wcrxf1qmfg88p0961-dss-6fd7de0/src/dai.sol | |
pragma solidity =0.5.12; | |
////// /nix/store/8xb41r4qd0cjb63wcrxf1qmfg88p0961-dss-6fd7de0/src/lib.sol | |
// This program is free software: you can redistribute it and/or modify | |
// it under the terms of the GNU General Public License as published by |
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 json | |
def parse_jsonl(filename): | |
lines=[] | |
with open(filename,"r") as file: | |
data=file.readlines() | |
for line in data: | |
lines.append(json.loads(line)) | |
return lines |
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 com.jacks0n9 | |
import javax.swing.* | |
fun main(){ | |
val frame = JFrame() | |
frame.isVisible=true | |
frame.setSize(300,300) | |
frame.defaultCloseOperation=JFrame.EXIT_ON_CLOSE | |
} |
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
from urllib.parse import quote | |
from urllib.request import urlopen | |
text=input("Input text you want to synthesize: ") | |
filename=input("What file should I put the audio in: ") | |
url="https://www.google.com/speech-api/v1/synthesize?lang=en&text="+quote(text) | |
data=urlopen(url) | |
audio=data.read() | |
with open(filename,'wb') as file: | |
file.write(audio) |
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
file = File.open("epic.txt",'w') | |
file.writeline("dfsd") |
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
file = File.open("epic.txt",'w') | |
file.writeline("dfsd") |
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
guessed = 0 | |
secret = 44 | |
won = false | |
while guessed < 3 and !won | |
puts "Enter a number" | |
guess=gets.chomp().to_i() | |
if guess < secret | |
puts "Guess higher" | |
elsif guess>secret | |
puts "Guess lower" |
NewerOlder