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 datetime | |
import pyaudio | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from celeryapps import ( | |
analyze, | |
display_device_name, | |
kill_screen, | |
) |
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
global _start | |
section .text | |
_start: mov rax, 1 ; system call for write | |
mov rdi, 1 ; file handle 1 is stdout | |
mov rsi, message ; address of string to output | |
mov rdx, 13 ; number of bytes | |
syscall ; invoke operating system to do the write | |
mov rax, 60 ; system call for exit | |
xor rdi, rdi ; exit code 0 |
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 os | |
import requests | |
import xlsxwriter | |
# create a Workbook object by passing | |
# your Excel worksheet filename | |
workbook = xlsxwriter.Workbook('IPADDR.xlsx') | |
worksheet = workbook.add_worksheet() |
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 Node: | |
def __init__(self, name, value): | |
self.name = name | |
self.value = value | |
self.right = None | |
self.left = None | |
""" | |