I hereby claim:
- I am sahilsk on github.
- I am sonu_meena (https://keybase.io/sonu_meena) on keybase.
- I have a public key ASDQ-mnzQ9nQfgZgIRT13-jnnFrk0oOf5tnyDSf9fcJW3Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "os/exec" | |
| "syscall" | |
| ) | |
| func main() { |
##Google Interview Questions: Product Marketing Manager
| import moviepy.editor as mp | |
| import math | |
| from PIL import Image | |
| import numpy | |
| def zoom_in_effect(clip, zoom_ratio=0.04): | |
| def effect(get_frame, t): | |
| img = Image.fromarray(get_frame(t)) | |
| base_size = img.size |
| # _____ _ _____ _ _ | |
| # | _ |_ _| |_ ___| | |_|___ | |
| # | | | | _| . | --| | | . | | |
| # |__|__|___|_| |___|_____|_|_| _| | |
| # |_| | |
| # | |
| # By Abhishta (github.com/abhishtagatya) | |
| # pip install gTTs | |
| # pip install moviepy |
| % Contributors: Jonas Rothfuss and Fabio Ferreira | |
| import math | |
| import os | |
| import moviepy | |
| import subprocess | |
| import random | |
| import glob | |
| import multiprocessing | |
| from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip |
| from moviepy.editor import * | |
| from moviepy.video.fx.all import crop, fadeout | |
| import cv2 | |
| def get_image_clip(): | |
| images_list = ["frame79.jpg"] * 30 | |
| print(images_list) | |
| clip = ImageSequenceClip(images_list, fps=30) | |
| clip = fadeout(clip, 1, final_color=[32, 32, 32]) | |
| return clip |
Tcpdump is a commandline tool that is used to dump traffic on a network. This tool comes in hand when you want to analyse network captures within the command line. Basically it can do most of the wireshark job.
NOTE This guide might not be complete it just serve as a reference to me.