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
[options] | |
mode cover | |
depth 20 | |
[engines] | |
smtbmc yices | |
[script] | |
read -formal top.v | |
prep -top top |
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 sympy import sinh, acosh, sqrt, nsolve, Symbol, Float | |
def calcular_rede(altura_rede, altura_ganchos, distancia_ganchos): | |
H = distancia_ganchos | |
h = altura_ganchos - altura_rede | |
a = Symbol('a') | |
L = Symbol('L') |
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 re | |
import math | |
import itertools | |
import matplotlib.pyplot as plt | |
import matplotlib.dates as mdates | |
import numpy as np | |
from datetime import datetime | |
from collections import defaultdict |
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 python3 | |
import jack | |
import curses | |
import queue | |
from math import sin, pi | |
f = 700 # Hz | |
#duration = 0.240 # seconds | |
duration = 0.080 # seconds | |
latency = 0.020 # seconds |
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 python3 | |
import xml.etree.ElementTree as ET | |
from urllib.parse import urlencode | |
from html import unescape | |
import argparse | |
import requests | |
import locale | |
import time | |
import csv | |
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
#!/usr/bin/env python3 | |
import requests | |
import sys | |
import os | |
import re | |
election_uuid = sys.argv[1] | |
base_url = 'https://votacao.ufscar.br' | |
login_url = '{}/auth/ldap/login'.format(base_url) |
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 python3 | |
from nizkctf.team import Team | |
from nizkctf.acceptedsubmissions import AcceptedSubmissions | |
from nizkctf.settings import Settings | |
from nizkctf.proof import proof_open | |
import os | |
import sys | |
import requests | |
import datetime | |
import pytz |
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
# Maintainer: Jiuyang Liu <[email protected]> | |
# Maintainer: Paulo Matias <[email protected]> | |
pkgname=bluespec-git | |
pkgver=r285.9dfe8f5 | |
pkgrel=1 | |
pkgdesc='Bluespec Compiler (BSC)' | |
arch=('x86_64') | |
url='https://github.com/B-Lang-org/bsc' | |
license=('BSD') |
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/python3 | |
from nizkctf.team import Team, SUBMISSIONS_FILE | |
from nizkctf.acceptedsubmissions import AcceptedSubmissions | |
from nizkctf.subrepo import SubRepo | |
from nizkctf.settings import Settings | |
import os | |
import subprocess | |
import requests | |
import datetime | |
import pytz |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<meal> | |
<course> <!-- #0 --> | |
<!-- jump if there are iterations to do --> | |
<plate><paella>5</paella></plate> <!-- course number --> | |
<plate><paella>1</paella></plate> | |
<plate><불고기/></plate> | |
<plate><æblegrød/></plate> | |
<!-- otherwise print flag and exit --> |
NewerOlder