Skip to content

Instantly share code, notes, and snippets.

View ComradeCat24's full-sized avatar

Sym ComradeCat24

View GitHub Profile
@ComradeCat24
ComradeCat24 / gpu_fan_control.sh
Last active March 19, 2024 06:32
gpu fan control
#!/bin/bash
# Check if GPUTargetFanSpeed parameter is provided
if [ -z "$1" ]
then
echo "Usage: $0 <GPUTargetFanSpeed>"
exit 1
fi
GPUTargetFanSpeed=$1
{"name":"25102023","settings":"{\"settings\":\"{\\n\\t\\\"tabnine.experimentalAutoImports\\\": true,\\n\\t\\\"files.exclude\\\": {\\n\\t\\t\\\"**/.classpath\\\": true,\\n\\t\\t\\\"**/.project\\\": true,\\n\\t\\t\\\"**/.settings\\\": true,\\n\\t\\t\\\"**/.factorypath\\\": true\\n\\t},\\n\\t\\\"[javascript]\\\": {\\n\\t\\t\\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n\\t},\\n\\t\\\"[json]\\\": {\\n\\t\\t\\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n\\t},\\n\\t\\\"workbench.colorCustomizations\\\": {\\n\\t\\t\\\"activityBarBadge.background\\\": \\\"#84FFFF\\\",\\n\\t\\t\\\"activityBar.activeBorder\\\": \\\"#84FFFF\\\",\\n\\t\\t\\\"list.activeSelectionForeground\\\": \\\"#84FFFF\\\",\\n\\t\\t\\\"list.inactiveSelectionForeground\\\": \\\"#84FFFF\\\",\\n\\t\\t\\\"list.highlightForeground\\\": \\\"#84FFFF\\\",\\n\\t\\t\\\"scrollbarSlider.activeBackground\\\": \\\"#84FFFF50\\\",\\n\\t\\t\\\"editorSuggestWidget.highlightForeground\\\": \\\"#84FFFF\\\",\\n\\t\\t\\\"textLink.foreg
@ComradeCat24
ComradeCat24 / gist:a66b660efd71d0226fda7560211a7fb9
Created September 24, 2023 17:25
okular_uses_atril_shortcut
[Shortcuts]
add_digital_signature=none
annotationToolBar=none
annotation_arrow=Alt+9
annotation_bookmark=Ctrl+Shift+B
annotation_constrain_ratio_angle=none
annotation_ellipse=none
annotation_freehand_line=Alt+8
annotation_highlighter=Alt+1
annotation_inline_note=Alt+6
@ComradeCat24
ComradeCat24 / volume.sh
Created November 30, 2022 15:24
Script To Manage Speaker Volume For Archcraft.
#!/bin/bash
## Copyright (C) 2020-2022 Aditya Shakya <adi1090x@gmail.com>
## Everyone is permitted to copy and distribute copies of this file under GNU-GPL3
## Script To Manage Speaker Volume For Archcraft.
# icons
iDIR='/usr/share/archcraft/icons/dunst'

Part 2: SDE Work Simulation and Workstyles Assessments

Leadership Principles

We use our Leadership Principles every day, whether we're discussing ideas for new projects or deciding on the best approach to solving a problem. It is just one of the things that makes Amazon peculiar.

The Amazon Leadership Principles are a way for the company to find the candidates that best fit within the company culture. And let’s face it, they’re a great way to self-reflect on your own leadership skills even if you aren’t planning on applying for a role at Amazon. If you are preparing for an interview with the company, we suggest preparing a handful of your best stories that are broad enough to fit a wide range of potential questions and scenarios. Of course, above all, be genuine in your responses. Amazon continues to test for these leadership principles on the job as well, so you’ll want to make sure you truly are a good fit for the company.


{
"$schema": "vscode://schemas/color-theme",
"type": "dark",
"colors": {
"activityBar.activeBorder": "#84ffff",
"activityBar.background": "#1f2023",
"activityBar.border": "#1f2023",
"activityBar.foreground": "#bcb28d",
"activityBarBadge.background": "#84ffff",
"breadcrumb.activeSelectionForeground": "#84ffff",
@ComradeCat24
ComradeCat24 / extensions.txt
Last active December 26, 2021 09:30
vscode settings
aaron-bond.better-comments
aaronpowell.vscode-profile-switcher
adpyke.codesnap
AndrsDC.base16-themes
andys8.jest-snippets
arcticicestudio.nord-visual-studio-code
be5invis.vscode-icontheme-nomo-dark
bradlc.vscode-tailwindcss
christian-kohler.path-intellisense
CoenraadS.bracket-pair-colorizer
@ComradeCat24
ComradeCat24 / pdf_combiner.py
Last active September 9, 2021 18:07
combine multiple pdf into a single pdf
import sys
from PyPDF2 import PdfFileMerger
inputs = sys.argv[1:]
def pdf_combiner(pdf_list):
merger = PdfFileMerger()
for pdf in pdf_list:
print(pdf)