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/env python3 | |
""" | |
Binary Section Analyzer and Compressor with Final Binary Generator for AARCH64 | |
This script analyzes an ELF file, extracts its sections, compresses them with | |
various algorithms, and creates a final compressed binary with metadata for decompression. | |
Specifically configured for AARCH64 architecture. | |
""" | |
import os |
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
\documentclass[10pt]{beamer} | |
\usetheme{metropolis} % Use metropolis theme | |
% \usecolortheme{seahorse} | |
\usepackage{array} | |
\usepackage{float} | |
\usepackage{wrapfig} | |
\usepackage{graphicx} | |
\usepackage{blindtext} | |
\usepackage{lipsum} |
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
sudo mkdir -p /etc/X11/xorg.conf.d && sudo tee <<'EOF' /etc/X11/xorg.conf.d/90-touchpad.conf 1> /dev/null | |
Section "InputClass" | |
Identifier "touchpad" | |
MatchIsTouchpad "on" | |
Driver "libinput" | |
Option "Tapping" "on" | |
EndSection | |
EOF |
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 | |
for i in $(ls -d */); do | |
cd $i | |
echo $i | |
for j in $(ls Trans*.csv);do | |
sed -e '1,119d' < $j | cut -d ',' -f 2- > tmp.csv | |
mv tmp.csv $j | |
done | |
cd .. | |
done |
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
.TH Application_ka_naam 1 "Februaury 23, 2019" | |
.SH NAME | |
Meri_Application \- sasti, khaas aur chamakdaar | |
.SH SYNOPSIS | |
.B Meri_Application | |
[\fIOPTIONS\fR] | |
[\fIFILES\fR|\fIFOLDERS\fR]... | |
.SH DESCRIPTION | |
Kuch toh raddi sa description jo kisi kaam ka kabhi nhi par fir bhi chtiyon ke liye likhdo | |
.SH OPTIONS |
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 | |
lsmod | awk '{print $1 }' | tail -n +2 | xargs -I {} ./print_description {} |
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 | |
if [ -e words.dict ] | |
then | |
echo -e "Deleting the old dict file...\n" | |
rm ./words.dict | |
echo -e "Creating a new dict file...\n" | |
for f in $(ls *.md);do tail -n +2 $f | sed 's|[,.:-\;]||g' | sed 's|\s\s| |g' | tr ' ' '\n' | grep -v -e '^$' | uniq >> words.dict; done | |
echo -e "Done creating a new dict file...\n" | |
else |