Skip to content

Instantly share code, notes, and snippets.

@wolfsyntax
wolfsyntax / DroidXTools
Created December 20, 2016 05:11
Android Device Tools
#!/bin/bash
################################################################################################################################################
#
# Title: DroidXTools
# Author: Wolf Syntax (Jayson D. Alpe)
# Desription: A tools for modifying MAC Address and DNS, a tool also for viewing WiFi saved password and creating backup of build.prop file
# Instruction:
#
# Download Terminal Emulator and DroidEdit
@wolfsyntax
wolfsyntax / bmi.cpp
Last active October 13, 2017 10:27
A collection of solutions in programming contest
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
/**
ACM - PNPC
- BMI
@wolfsyntax
wolfsyntax / copy_pasta.cpp
Last active December 26, 2017 13:50
ACM Problem Set Solution
#include <iostream>
#include <cstdio>
#include <set>
#include <map>
#include <cmath>
#include <cstdio>
#include <vector>
/**
@wolfsyntax
wolfsyntax / _README.md
Last active August 14, 2023 02:55
HackerEarth Solution
@wolfsyntax
wolfsyntax / _README.md
Created January 26, 2018 04:32
HackerEarth Solution+ Editorial Snippet

Some part of this codes contains codesnippet/algorithm from HackerEarth Editorial

Before you proceed these are the tools needed for investment sites below:
http://bit.ly/getPayeer
http://bit.ly/getAdvCash
http://bit.ly/get50PHP
GET FREE BITCOIN CASH HERE cnhv.co/8pwim
@wolfsyntax
wolfsyntax / git_guide.txt
Last active November 13, 2018 16:58
Senior Project
1. Install https://git-scm.com/download/win
2. Edit Config:
git config --global user.name "Your name"
git config --global user.email <someone@example.com>
Open Github.com > Settings > SSH and GPG Keys > New SSH Key
then paste the content of ~/.ssh/id_rsa.pub
3. Setting Up a new Git Repository
@wolfsyntax
wolfsyntax / python_telegram_bot.txt
Last active November 13, 2018 17:30
Exploring Languages
#Default: Python-Telegram-Bot
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters
from telegram import ReplyKeyboardMarkup
import telegram
#Tables
import pandas as pd
#Database
IPv4 Address
^(0?[0-9]|1[0-9]{1,2}|25[0-5]|2[0-4][0-9])\.(0?[0-9]|1[0-9]{1,2}|25[0-5]|2[0-4][0-9])\.(0?[0-9]|1[0-9]{1,2}|25[0-5]|2[0-4][0-9])\.(0?[0-9]|1[0-9]{1,2}|25[0-5]|2[0-4][0-9])$
Person Name
^([a-zA-Z]{2,}\s*){1,}$
@wolfsyntax
wolfsyntax / 01.txt
Last active June 26, 2019 05:33
Django Framework
#views.py
stats = '-'
if request.method == 'POST':
form = GoatInfoForm(request.POST) #{}
if form.is_valid():
cd = form.cleaned_data #outpur: dictionary
form_clean = GoatInfoForm(cd)
#cd.save()