I hereby claim:
- I am not7cd on github.
- I am not7cd (https://keybase.io/not7cd) on keybase.
- I have a public key whose fingerprint is 75DE 3E75 8EBE CB90 B6E7 EE6A 8D7D AE55 FF05 5D98
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
from lxml import etree | |
import mtranslate | |
import copy | |
def copy_element(element): | |
"""Copies element usin deepcopy, returns it""" | |
result = copy.deepcopy(element) | |
return result |
const WIDTH: usize = 60; | |
fn get_bit(byte: u8, pos: u8) -> u8 { | |
return (byte >> pos) & 1; | |
} | |
fn print_row(row: [u8; WIDTH]) { | |
for x in row.iter() { | |
match x { | |
&0 => print!(" "), |
from icalendar import Calendar, Event | |
file_path = 'fizyka_techniczna.ics' | |
g = open(file_path,'rb') | |
cal = Calendar.from_ical(g.read()) | |
for component in cal.walk(): | |
if component.name == "VEVENT": | |
component['uid'] = '%s%s' % (component['uid'], component['dtstart']) |
#include <iostream> | |
using namespace std; | |
int main(int argc, char const *argv[]) | |
{ | |
char str1[] = "All work and no play makes Jack a dull boy"; | |
char str2[] = "All work and no play\0 makes Jack a dull boy"; | |
char str3[] = "All work"; |
import os | |
import json | |
import requests | |
import dateutil.parser as dparser | |
from urllib.parse import urlparse | |
from bs4 import BeautifulSoup as bs | |
def get_soup(url): | |
response = requests.get(url) |
#include <stdio.h> | |
#include <stdlib.h> | |
int main() | |
{ | |
int a, b, c, d, sum; | |
float avr; | |
printf("Give first number: "); | |
scanf("%i", &a); | |
printf("Give second number: "); |
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
int main() | |
{ | |
char my_uni[80]; | |
char pg[] = "politechnika"; | |
char ug[] = "uniwersytet"; |
#include <stdio.h> | |
int main() | |
{ | |
float cel, fah; | |
float low_b = 0., up_b = 300., step = 20.; | |
printf("Provide lower bound:"); | |
scanf("%f", &low_b); |