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
| 2023-05-02T21:30:52+05:30 [Genymotion Player:159871] [debug] ==== STARTING PLAYER ==== | |
| 2023-05-02T21:30:52+05:30 [Genymotion Player:159871] [debug] Player version: "3.3.3" 20230301-8f94f87b97 | |
| 2023-05-02T21:30:52+05:30 [Genymotion Player:159871] [debug] args: ("/opt/genymotion/player", "--vm-name", "07706b39-b5d5-437a-aa36-a71663de9778") | |
| 2023-05-02T21:30:52+05:30 [Genymotion Player:159871] [debug] "Local socket created at path: /tmp/dcd0d36bfe6c40ac5b8d66e9efb9b069" | |
| 2023-05-02T21:30:52+05:30 [Genymotion Player:159871] [debug] No proxy set | |
| 2023-05-02T21:30:52+05:30 [Genymotion Player:159871] [debug] Host date and time: "02 May 2023 21:30:52 +0530" | |
| 2023-05-02T21:30:52+05:30 [Genymotion Player:159871] [debug] "Notifying launchpad of status change: 07706b39-b5d5-437a-aa36-a71663de9778 BOOTING" | |
| 2023-05-02T21:30:52+05:30 [Genymotion Player:159871] [debug] Progress dialog is visible. devicePixelRatio: 1 | |
| 2023-05-02T21:30:52+05:30 [Genymotion Player:159871] [debug] Device is up to date | |
| 2023-05-02T21:30:52+05:30 [Genymo |
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
| Jan 04 20:03:42 blackHat systemd-coredump[16912]: [🡕] Process 16904 (wireshark) of user 1000 dumped core. | |
| Stack trace of thread 16904: | |
| #0 0x00007ff4c08ba64c n/a (libc.so.6 + 0x8864c) | |
| #1 0x00007ff4c086a958 raise (libc.so.6 + 0x38958) | |
| #2 0x00007ff4c085453d abort (libc.so.6 + 0x2253d) | |
| #3 0x00007ff4c1aea03c n/a (libwsutil.so.14 + 0xc03c) | |
| #4 0x00007ff4c1afb02a ws_log (libwsutil.so.14 + 0x1d02a) | |
| #5 0x0000564a86f04a63 n/a (wireshark + 0x249a63) | |
| #6 0x00007ff4c0e38ab8 n/a (libQt5Core.so.5 + 0xe0ab8) |
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
| def get_data_from_file(file_path): | |
| # Read File | |
| with open(file_path, 'r') as file: | |
| data = file.read() | |
| return data | |
| def check_paranthesis(data: str): | |
| """ Check if the string contains valid opening/closing tag """ | |
| stack = [] |
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.8 | |
| import types | |
| import requests | |
| from sys import argv | |
| from re import match | |
| from bs4 import BeautifulSoup | |
| from pynput import keyboard | |
| from functools import partial | |
| from colorama import Fore, Style |
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
| # Implementation of split method | |
| def split(string: str, separator: str, max_split=-1): | |
| if separator.__len__() == 0 or string.__len__() == 0: | |
| raise ValueError | |
| result = [] | |
| temp = '' | |
| i = 0 | |
| s_index = 0 | |
| full_match = False |
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
| Finding tests in NoName | |
| Trying: | |
| main('My December') | |
| Expecting: | |
| /home/hi-man/Music/LinkinPark/Linkin Park - My December. Live Projekt Revolution 2002 Las Vegas._480p.mp4 | |
| /home/hi-man/Music/LinkinPark/my_december.mp4 | |
| ok | |
| Trying: | |
| main('turn-the page-metallica') | |
| Expecting: |
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
| #! /bin/bash | |
| # notify the user | |
| notify-send -u low -t 8000 "checkRAWSWAP" "Monitoring Starts" | |
| ### getthe memory and swap int. | |
| var=0 | |
| while true; do | |
| mem=$(free -m | grep -P 'Mem.*' --line-buffered | sed -r 's/(\s)+/_/g' | cut -d '_' -f 3) | |
| # g flag in sed command means "globally", change should affect other matched parts too. |
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
| ## Convert a normal string into a zig-zag form | |
| import numpy as np | |
| class Solution: | |
| def convert(self, string:str, numRows:int) -> tuple: | |
| if numRows < 1: | |
| return string | |
| numCol = round(len(string)/numRows)+1 | |
| if numCol < 1: |
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
| # set modifier | |
| set $super Mod4 | |
| set $alt Mod1 | |
| # set font | |
| font pango: Cantarell Bold 11 | |
| # Use Mouse+$super to drag floating windows to their wanted position | |
| floating_modifier Ctrl |
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
| """ Implementation of | |
| -> LinkedList | |
| -> Singly Linked List | |
| """ | |
| class Node: | |
| def __init__(self, data, next=None): | |
| self.data = data | |
| self.next = next |