Fully responsive multi-step form grader with validation pre-submit and pop up model.
Using math to calculate a grade between 0 and 400 based on the data you enter.
If you have a conda environment, create a new environement using
conda create --name myenv
activate myenv
Install pytorch in the environment. if you have cuda: check commandline corresponding to your version.
conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch
| [DEFAULT] | |
| # A boolean to indicate whether or not to check for package updates. | |
| check_for_updates=True | |
| # Object to kind mappings | |
| comment_kind=t1 | |
| message_kind=t4 | |
| redditor_kind=t2 | |
| submission_kind=t3 | |
| subreddit_kind=t5 |
| ## importing all the required libraries | |
| import praw | |
| import os | |
| import re | |
| ## initialising praw | |
| reddit = praw.Reddit('brevity_bot') | |
| subreddit = reddit.subreddit("botjungle") |
| fn main() { | |
| let color = std::env::args().nth(1).expect("Please provide a color"); | |
| let animal = std::env::args().nth(2).expect("Please provide an animal"); | |
| let friend = std::env::args().nth(3).expect("Please provide a friend's name"); | |
| println!("Roses can be {}, {} could be blue, {} is open minded and so should be you.", color, animal, friend); | |
| } |
| import os | |
| import hashlib | |
| import sys | |
| import pandas as pd | |
| import numpy as np | |
| all_files = [] | |
| all_files_without_path = [] | |
| all_hashes = [] |
| # PYTHON Example | |
| from selenium import webdriver | |
| from selenium.webdriver.chrome.options import Options | |
| from selenium.webdriver.common.by import By | |
| from selenium.webdriver import ActionChains | |
| from selenium.common.exceptions import NoSuchElementException | |
| from selenium.webdriver.common.keys import Keys | |
| import time |
| # from https://medium.com/@wiiz4rd/hackthebox-rlotto-challenge-68f4b01006ba | |
| # connect to rlotto using nc or telnet | |
| # get the first sequence of numbers | |
| # input into this program | |
| import time | |
| import random | |
| seed = int(input("Enter the timestamp (enter 0 if not aware) :")) |
| function Invoke-Mimikatz | |
| { | |
| [CmdletBinding(DefaultParameterSetName="DumpCreds")] | |
| Param( | |
| [Parameter(Position = 0)] | |
| [String[]] | |
| $ComputerName, | |
| [Parameter(ParameterSetName = "DumpCreds", Position = 1)] | |
| [Switch] |