Notes, summaries, assignments, exams, and problems for Other courses

Sort by
Subject
Level

Carlitos gennav

Classified in Language

Written on in English with a size of 39.5 KB

  • A departing aircraft experiencing radio communication failure on an IFR flight under radar vectors has to: SQUAK 7600 AND THEREAFTER RETURN TO THE ROUTE INDICATED BY THE CURRENT FLIGHT PLAN IN THE MOST DIRECT MANER
  • A message concerning aircraft parts and material urgently required is: A FLIGHT REGULARITY MESSAGE
  • A message concerning an aircraft being threatened by grave and imminent danger, requiring immediate assistance is called: DISTRESS MESSAGE
  • A message preceded by the phrase "Transmitting blind due receiver failure" shall be transmitted: ON THE FREQUENCY PRESENTLY IN USE
  • A radiotelephony distress message should start with the following signal: MAYDAY, MAYDAY, MAYDAY
  • A read back is not needed for the following message: WIND VELOCOTY
  • Air traffic
... Continue reading "Carlitos gennav" »

Nmap, Netcat, and Metasploit Commands Cheat Sheet

Classified in Computers

Written on in English with a size of 7.67 KB

Nmap Options

-PE: Quickly check if host is up.

-sn: Disable port scanning (host discovery).

-n: Disables DNS resolution (checks IP online without looking up hostnames).

-O: OS detection.

-A: OS detection, Version detection, Script scanning, traceroute.

-sV: Service detection (banner info, version).

-vV: Provides verbose output.

-sC: Scan with default scripts for additional info gathering.

--min-rate=5000: Ensures scan sends at least 5k packets per second.

nmap --script smb-enum-shares.nse -p 445 (ip): List shares and their properties.


To see scripts starting with X: ls /path/X

To execute script with script tracing: sudo nmap -script=smb-os-discovery -script-trace target_ip

To enumerate the SMB share files: sudo nmap -script=smb-enum-shares target_ip

Vulnerability... Continue reading "Nmap, Netcat, and Metasploit Commands Cheat Sheet" »

CUDA Matrix Multiplication: Shared Memory

Classified in Computers

Written on in English with a size of 3.23 KB

CUDA Matrix Multiplication Using Shared Memory

This code demonstrates matrix multiplication in CUDA, leveraging shared memory for optimization. It includes two examples: a kernel using shared memory and a host-side implementation using the Thrust library.

CUDA Kernel with Shared Memory

The following CUDA kernel performs matrix multiplication using shared memory to optimize data access:


__global__ void matMulShared(int *A, int *B, int *C, int rowsA, int colsA, int colsB) {
    __shared__ int tile_A[TILE_SIZE][TILE_SIZE], tile_B[TILE_SIZE][TILE_SIZE];
    int row = blockIdx.y * TILE_SIZE + threadIdx.y, col = blockIdx.x * TILE_SIZE + threadIdx.x, temp = 0;
    for (int i = 0; i < (colsA + TILE_SIZE - 1) / TILE_SIZE; ++i) {
        if (row <
... Continue reading "CUDA Matrix Multiplication: Shared Memory" »

Understanding Equity, WACC, and Discount Rates in Finance

Classified in Economy

Written on in English with a size of 4.22 KB

Equity and Financial Concepts

Free Cash Flow (FCF)

FCFt = EBIT + DEP - CAPEX - ΔWC - TAX

ΔWC = Δreceivables + Δinventories - Δpayables + Δother items

TAX = (EBIT-Yt)*T = EBIT*T - YtT

FCFE = FCFt - Yt - PRINCt

FCFtu = FCFt - YtT

Y = kdD0 (interest paid is cost of debt*value of debt)

Standard WACC

ks=(1-L)ke + Lkd(1-T) | Use Standard WACC with FCFu | ITS is not included in both FCFu & ks | Need Constant Target Leverage Ratio (L)

ke = reflects operating and financial risk faced by investors | ku = unlevered cost of equity (if firm had no debt), reflects operating risk

V0 = U0 + I0 (Enterprise Value = value of operations + value of ITS) | Leave space for Standard WACC equation if kits = kd OR kits = ku

Standard WACC model implicitly assumes kits... Continue reading "Understanding Equity, WACC, and Discount Rates in Finance" »

Essential English Vocabulary and Grammar

Classified in Medicine & Health

Written on in English with a size of 5.75 KB

Vocabulary

  • Being admired by the people around you
  • Being part of a loving family
  • Doing really well in your studies or work
  • Having enough money to live well
  • Having friends
  • Having a lot of time to spend on the things I love doing
  • Living in a nice neighborhood

Achieve, Carry Out, and Devote

  • Achieve: *conseguir/lograr* (It helped her to achieve her aim of improving her family's happiness)
  • Carry out: *llevar a cabo* (Susan's concerns prompted her to carry out her own research)
  • Devote: *dedicar* (We know devoting more time...)

Stay, Spend, and Pass

  • Stay: *permanecer, estar tiempo* (I stayed 2 hours listening to the radio)
  • Spend: *pasar/gastar* (I have spent my life studying)
  • Pass: *pasar tiempo*

Make, Cause, and Have

  • Make: *hizo que* (The bad sound made the film difficult
... Continue reading "Essential English Vocabulary and Grammar" »

Metabolic Pathways and Liposome Drug Delivery

Classified in Biology

Written on in English with a size of 5.27 KB

Metabolic and Biochemical Processes

BMI Calculation: BMI = Kg/M2. Interpretation: <25 = Normal, 25-30 = Overweight, >30 = Obese. Ethanolamine (Ethan-NH3), Choline = N(CH3)3

Leptin and Adipose Tissue

Leptin is released from adipose tissue when mass is high. It travels through the blood to the arcuate nucleus, binds to neuronal cells, and activates the JAK-STAT pathway. This increases gene expression of POMC, which produces alpha-MSH (a neurotransmitter). Alpha-MSH reaches neurons connected to adipose tissue, releasing norepinephrine. Norepinephrine binds to beta-adrenergic receptors on adipose tissue, promoting an increase (via the G-protein coupled receptor pathway and activation of PKA). This leads to upregulation of UCP1 expression and... Continue reading "Metabolic Pathways and Liposome Drug Delivery" »

Features characters Chronicles of a Death Foretold and literary devices

Classified in Other subjects

Written on in English with a size of 10.05 KB

Personality characteristics of a Death Foretold Chronicles: Santiago Nasar - 21 year old male who has dropped out of school after the death of his father to direct "The Holy Face", an estate that his father bequeathed him. He is a dreamer, happy and not get into trouble, who is killed by the Vicario brothers after being identified by their sister as he took his virginity. And is loved by the people. Ángela Vicario - Woman of Bayardo San Román, who was returned to her wedding night by not a virgin at marriage, she blames Santiago Nasar. Ibrahim Nasar - Arabic late father of Santiago Nasar. It is noted that he spoke in Arabic with his son and he answered well and remarked as a strange fact as it was not normal from the third generation (which... Continue reading "Features characters Chronicles of a Death Foretold and literary devices" »

BPSK and QPSK Modulation Techniques with Python

Classified in Computers

Written on in English with a size of 4.97 KB

BPSK Signal Generation

This section demonstrates the generation of a Binary Phase Shift Keying (BPSK) signal using Python.

import numpy as np
import matplotlib.pyplot as plt

def bpsk_detect(modulated_signal, carrier):
    return np.sign(modulated_signal * carrier)

message_frequency = 10
carrier_frequency = 20
sampling_frequency = 30 * carrier_frequency
t = np.arange(0, 4/carrier_frequency, 1/sampling_frequency)
message = np.sign(np.cos(2 * np.pi * message_frequency * t) + np.random.normal(scale = 0.01, size = len(t)))
carrier = np.cos(2 * np.pi * sampling_frequency/carrier_frequency * t)
modulated_signal = carrier * message
detected_message = bpsk_detect(modulated_signal, carrier)

plt.figure(figsize=(12, 8))
plt.subplot(4, 1, 1)
plt.plot(t,
... Continue reading "BPSK and QPSK Modulation Techniques with Python" »

Common Benign Oral Pathologies and Their Features

Classified in Biology

Written on in English with a size of 9.96 KB

Common Oral Benign Lesions and Tumors

6. Peripheral Giant Cell Granuloma (PGCG)

Reactive lesion.

Key Features:

  • Prevalence: More common in females and older individuals.
  • Site: Exclusively on the gingiva or alveolar mucosa.
  • Etiology: Local irritation or trauma.

Clinical Characteristics:

  • Color: Dark red.
  • Surface: Often hemorrhagic and may be ulcerated.
  • Appearance: Sessile or pedunculated mass.

Radiographic Features (X-ray):

  • May show superficial bone resorption, sometimes described as "saucerization" or a "cupping effect".
  • Can appear as an ill-defined radiolucent (RL) area if bone is involved.

Histopathology:

Characterized by three zones:

  1. Zone of Hyperplastic Stratified Squamous Epithelium: Often shows acanthosis and hyperkeratosis.
  2. Giant Cell-Free Zone: A band
... Continue reading "Common Benign Oral Pathologies and Their Features" »

Indifference Curves and Consumer Preferences in Economics

Classified in Economy

Written on in English with a size of 3.42 KB

Representation of Preferences by Indifference Curves

An indifference curve shows the consumption baskets that yield the same level of satisfaction to the consumer. The consumer is indifferent between various combinations within the indifference curve. The slope at any point on an indifference curve is equal to the rate at which consumers are willing to substitute one good for another. This relationship is called the marginal rate of substitution (MRS). The rate at which a consumer is willing to trade Pepsi for pizza depends on who has more hunger or thirst, which depends in turn on how much pizza and Pepsi they have.

As a consumer prefers a larger quantity of goods, they prefer higher indifference curves to lower ones.

Four Properties of Indifference

... Continue reading "Indifference Curves and Consumer Preferences in Economics" »