Mirkenan Kazımzade - 17155960
This file contains 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 django import forms | |
from django.contrib import admin | |
from django.db import models | |
from django.contrib.admin import widgets | |
from django.contrib.auth.forms import ReadOnlyPasswordHashField | |
from django.utils.translation import gettext as _ | |
class CustomUserForm(forms.ModelForm): | |
company_structures = forms.ModelMultipleChoiceField( | |
queryset=CompanyStructure.objects.all(), |
This file contains 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 cProfile | |
import pstats | |
import io | |
import traceback | |
import time | |
import logging | |
from django.conf import settings | |
from django.db import connection, reset_queries | |
from django.utils.deprecation import MiddlewareMixin |
This file contains 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
��# }�(�metadata�}�(�title�� Test (Energy Performance Report)�� workspace��Test��source��DEADBEEF�� cur_start��datetime��datetime���C | |
� ���R��cur_end�hC | |
� ���R�� | |
created_at�� mock.mock��_ANY���)��� ref_start�J3�gb�ref_end�hC | |
� | |
97 ���R�u�summary�}�� active_energy�}�(�consumption�}�(�v��numpy.core.multiarray��scalar����numpy��dtype����f8�����R�(K�<�NNNJ����J����K t�bC33333�F@���R��units��kWh��percent_change��0 %��trend_arrow��!TODO_trend_arrow_calculation_here��other��Price per kWh: 0.5 EUR�u� | |
total_cost�}�(h$h'h-C33333�6@���R�h3�EUR�h5h6h7h8h9�Price per kWh: 0.5 EUR�u� footprint�}�(h$h'h-CX9���-@���R�h3� | |
tones CO2e�h5h6h7h8h9�Conversion factor k = 0.33�uus�voltage_max�}�(�V1r�}�(h$h'h*�i8�����R�(Kh.NNNJ����J����K t�bC� ���R��t�GAؙ�?� u�V2r�}�(h$h'hOC� ���R�hTGAؙ�? u�V3r�}�(h$h'hOC� ���R�hTGAؙ�?� u�unit��V�u�voltage_min�}�(hK}�(h$h'hOC� ���R�hTGAؙ�>� uhU}�(h$h'hOC� ���R�hTGAؙ�>� uhZ}�(h$h'hOC� |
This file contains 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
<div class="blog"> | |
<div class="blog-part is-menu"> | |
<a href="#" class="blog-menu"> | |
Work | |
<svg fill="none" stroke="currentColor" stroke-width=".7" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-up-right" viewBox="0 0 24 24"> | |
<path d="M7 17L17 7M7 7h10v10" /> | |
</svg> | |
</a> | |
<a href="#" class="blog-menu">Studio</a> | |
<a href="#" class="blog-menu">Blog</a> |
This file contains 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
function find-and-kill() { | |
# find the process id given port number | |
# $1 is the port number | |
# get the process id | |
pid=$(sudo lsof -i :$1 -t) | |
echo "Killing process id -> $pid" | |
sudo kill -9 $pid | |
echo "Done ✔️" | |
} |
This file contains 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 xml.etree.ElementTree as ET | |
from datetime import date | |
import requests | |
from logzero import logger | |
''' | |
value = CurrencyCbar().get_one_try() | |
''' |
Mirkenan Kazımzade - 17155960
This file contains 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 xmlrpc.client | |
with xmlrpc.client.ServerProxy("http://localhost:5080/") as proxy: | |
print("sum of 1 and 1 is: %s" % str(proxy.add(1, 1))) | |
print("subtraction of 2 from 5 is: %s" % str(proxy.sub(5, 2))) |
This file contains 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
# backend dockerfile | |
FROM python:3.8.0-alpine | |
ENV PYTHONDONTWRITEBYTECODE 1 | |
ENV PYTHONUNBUFFERED 1 | |
RUN mkdir /app | |
WORKDIR /app | |
# install psycopg2 dependencies |