show dbs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
youtube.com##.ad-container | |
youtube.com###player-ads | |
youtube.com##.ytp-ad-overlay-container | |
youtube.com#@#.overlay-ads | |
youtube.com#@#.ddb | |
youtube.com###feed-pyv-container | |
youtube.com###feedmodule-PRO | |
youtube.com###homepage-chrome-side-promo | |
youtube.com###merch-shelf | |
youtube.com###pla-shelf |
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
yay -S python-validity-git | |
sudo validity-sensors-firmware | |
sudo systemctl start python3-validity | |
fprintd-enroll |
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
// Program to input an array of processes with their arrival times & burst times, and schedule them using to Shortest Job First CPU Scheduling | |
#include <stdio.h> | |
#include <limits.h> | |
typedef struct | |
{ | |
int id; | |
int arrivalTime; | |
int burstTime; | |
int completionTime; |
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<stdio.h> | |
#include<stdlib.h> | |
struct rrs { | |
int pid, atime, btime, tempb, ctime, tatime, wtime; | |
short isTraversed; | |
}; | |
void main () { | |