Skip to content

Instantly share code, notes, and snippets.

View setbap's full-sized avatar
🎯
Focusing

Sina setbap

🎯
Focusing
View GitHub Profile

Smart Contract Weakness Classification and Test Cases : Overview · Smart Contract Weakness Classification and Test Cases (swcregistry.io)

The Encyclopedia of Smart Contract Attacks and Vulnerabilities : The Encyclopedia of Smart Contract Attacks and Vulnerabilities | by Kaden Zipfel | Better Programming

Most common smart contract bugs of 2020 : Most common smart contract bugs of 2020 | by Manoj P R | Solidified | Medium

The offensive security playground for decentralized finances (learn offensive security of DeFi smart contracts) :

@setbap
setbap / tabbar.dart
Last active August 31, 2021 11:49
flutter tabBar example
import 'dart:math';
import 'package:flutter/material.dart';
const height = 80.0;
const gradientBreakPoint = .9;
const tabBarLen = 10;
void main() {
runApp(const MyApp());
}
@setbap
setbap / install virtualenv ubuntu 16.04.md
Created June 27, 2019 11:02 — forked from frfahim/install virtualenv ubuntu 16.04.md
How to install virtual environment on ubuntu 16.04

How to install virtualenv:

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

sudo pip3 install virtualenv