- Application
- Request Handling
- Authorization
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
kglobalaccel-5.76.0-bin | |
-> glibc-2.32 | |
-> kglobalaccel-5.76.0 | |
-> qtbase-5.15.0 | |
-> kconfig-5.76.0 | |
-> kcoreaddons-5.76.0 | |
-> kwindowsystem-5.76.0 | |
-> kcrash-5.76.0 | |
-> kdbusaddons-5.76.0 | |
-> qtx11extras-5.15.0 |
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
# Author: Andreas Krohn | |
# Intended to help understanding dependencies by looking at (verbose) nix build outputs | |
import sys | |
import getopt | |
import re | |
def analyze(logfile): | |
hashNames = dict() | |
references = dict() |
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 java.util.Scanner; | |
public class Evaluate{ | |
public static void main(String[] args){ | |
String[] samples = new String[]{ | |
" 5 + 6 * 7 /2", | |
"5/2", | |
"500/(3+2)", | |
"5^2/4" | |
}; |