A collection of write-ups and solutions for Cyber FastTrack Spring 2021

Cyber-FastTrack-Spring-2021 Cyber FastTrack Spring 2021 / National Cyber Scholarship Competition – Spring 2021 Mon 5th April 17:00 BST – Wed 7th April 17:00 BST The CD Skids are back and playing for fun! This CTF was run for both Cyber FastTrack and National Cyber Scholarship at the same time. Although these writeups were primarily made for Cyber FastTrack, they should also be valid for the National Cyber Scholarship competition. This repository is the only one to be officially endorsed by […]

Read more

How to setup a multi-client ethereum Eth1-Eth2 merge testnet with python

Mergenet tutorial How to setup a multi-client ethereum Eth1-Eth2 merge testnet with python Preparing the setup environment In this tutorial, we use a series of scripts to generate configurationfiles, and these scripts have dependencies that we need toinstall. You can either install these dependencies on your host or youcan run those scripts inside a docker container. We call thisenvironment setupenv. Preparing the setup environment on your host: apt-get install python3-dev python3-pip python3-venv golang # Check that you have Go 1.16+ […]

Read more

Learning to Compare: Relation Network for Few-Shot Learning

Pytorch Implementation for Paper: Learning to Compare: Relation Network for Few-Shot Learning download mini-imagenet and make it looks like: mini-imagenet/ ├── images ├── n0210891500001298.jpg ├── n0287152500001298.jpg … ├── test.csv ├── val.csv └── train.csv LearningToCompare-Pytorch/ ├── compare.py ├── MiniImagenet.py ├── Readme.md ├── repnet.py ├── train.py └── utils.py python train.py current code support multi-gpus on single machine training, to disable it and train on single machine,just set device_ids=[0] and downsize batch size according to your gpu memory capacity.make sure ckpt directory exists, […]

Read more
1 2