sudo apt-get install python3-pip
sudo pip3 install virtualenv
| FROM ubuntu:latest | |
| WORKDIR /app | |
| RUN apt-get -y update --fix-missing && apt-get -y install ffmpeg | |
| RUN apt-get install -y imagemagick | |
| RUN apt install -y python3-pip | |
| CMD [ "python3", "-m","http.server","80"] |
| import subprocess | |
| import re | |
| import os | |
| import sys | |
| def scrape_url(value, outpath): | |
| """ | |
| Requires webkit2png to be on the path | |
| """ | |
| subprocess.call(["webkit2png", "-x","1200","900","-o", outpath, "-g", "1000", "1260", | |
| "-t", "30", value]) |
| //implementing stack using arrays in c++ | |
| #include <iostream> | |
| using namespace std; | |
| #define MAX_SIZE 101 | |
| class Stack | |
| { | |
| private: | |
| int A[MAX_SIZE]; | |
| int top; |
I hereby claim:
To claim this, I am signing this object:
| <?xml version="1.0" encoding="utf-8"?> | |
| <mx:Module xmlns:fx="http://ns.adobe.com/mxml/2009" | |
| xmlns:s="library://ns.adobe.com/flex/spark" | |
| xmlns:mx="library://ns.adobe.com/flex/mx" | |
| implements="interfaces.IModule1" | |
| layout="vertical" width="100%" height="100%"> | |
| <fx:Script> | |
| <![CDATA[ | |
| import contexts.Module1Context; | |
| import flash.net.* |
| #!/bin/sh | |
| ####################################### | |
| # Bash script to install an AMP stack and PHPMyAdmin plus tweaks. For Debian based systems. | |
| # Written by @AamnahAkram from http://aamnah.com | |
| # In case of any errors (e.g. MySQL) just re-run the script. Nothing will be re-installed except for the packages with errors. | |
| ####################################### | |
| #COLORS |
| { | |
| "always_prompt_for_file_reload": false, | |
| "always_show_minimap_viewport": false, | |
| "animation_enabled": true, | |
| "atomic_save": false, | |
| "auto_close_tags": true, | |
| "auto_complete": true, | |
| "auto_complete_commit_on_tab": false, | |
| "auto_complete_cycle": false, | |
| "auto_complete_delay": 50, |
| """ | |
| looks for parameter values that are reflected in the response. | |
| Author: maradrianbelen.com | |
| The scan function will be called for request/response made via ZAP, excluding some of the automated tools | |
| Passive scan rules should not make any requests | |
| Note that new passive scripts will initially be disabled | |
| Right click the script in the Scripts tree and select "enable" |
| /** | |
| * Wrapper | |
| */ | |
| .wrapper { | |
| max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2)); | |
| max-width: calc(#{$content-width} - (#{$spacing-unit} * 2)); | |
| margin-right: auto; | |
| margin-left: auto; | |
| padding-right: $spacing-unit; |