- Mathematics (Class 11 & 12) - NCERT Relevant Chapters
- Class 11 - Ch 1. Sets
- Class 11 - Ch 2. Relations and Functions
- Class 12 - Ch 1. Relations and Functions
- Class 11 - Ch 6. Permutations and Combinations
Discover gists
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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class MouseMovement : MonoBehaviour | |
{ | |
public float mouseSensitivity = 100f; | |
float xRotation = 0f; |
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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class PlayerMovement : MonoBehaviour | |
{ | |
public CharacterController controller; | |
public float speed = 12f; | |
public float gravity = -9.81f * 2; |
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/sh | |
# Original source: https://github.com/AndrewMohawk/RandomScripts/blob/main/scan_for_deps_qix-2025-08-09.sh | |
# - Enhanced with additional compromised libraries in supply-chain attacks. | |
# - Added some references | |
# - Count vulnerabilities | |
# - Review outputs to the terminal | |
# - Support for libraries scoped with @ | |
echo "------------------------------------------------" |
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 | |
############################################################################### | |
# Author: Abhishek Veeramalla | |
# Version: v0.0.1 | |
# Script to automate the process of listing all the resources in an AWS account | |
# | |
# Below are the services that are supported by this script: | |
# 1. EC2 |
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
# -*- coding: utf-8 -*- | |
""" | |
Данные с адресом, логином, паролем хранятся в конфигурационном файле следующего вида: | |
[Router] | |
ip_addr = 192.168.1.1:8080 | |
login = admin | |
passw = anyPassword |
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
{ | |
"lineWidth": 120, | |
"typescript": { | |
"indentWidth": 2, | |
"quoteStyle": "preferDouble", | |
"quoteProps": "asNeeded", | |
"importDeclaration.sortNamedImports": "caseSensitive", | |
"exportDeclaration.sortNamedExports": "caseSensitive", | |
"module.sortImportDeclarations": "caseSensitive", | |
"module.sortExportDeclarations": "caseSensitive" |
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 bash | |
# ------------------------------------------------------------ | |
# scan_dropbox_conflicts.sh | |
# | |
# Scan a Dropbox folder for conflicted copy files and optionally delete them. | |
# Fast mode uses Spotlight (mdfind) on macOS; fallback uses find with name filters. | |
# | |
# Features: | |
# - Recursive scan of target folder (default: current directory). | |
# - Multi-language patterns ("conflicted copy", "충돌된 사본"; extensible). |
NewerOlder