I hereby claim:
- I am harshitruwali on github.
- I am harshitruwali (https://keybase.io/harshitruwali) on keybase.
- I have a public key ASAsBnh00hcwkv58fIeytFKQ5K6mkX_FzExHPJgsYNTnpAo
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import sys | |
| from datetime import datetime | |
| import requests | |
| from tqdm import tqdm | |
| import re | |
| def download(): |
| import re | |
| import requests | |
| # from __future__ import print_functions | |
| def open_resources(file_path): | |
| return [item.replace("\n", "") for item in open(file_path).readlines()] | |
| host = 'http://10.10.10.191' | |
| login_url = host + '/admin/login' |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| if [ "$1" == "-h" ] || [ -z "$1" ] | |
| then | |
| echo "$(basename "$0") [-h] [-f file] [-a algo] [-c hash] -- script to calculate and verify the shasums of the passed file | |
| where: | |
| -h show this help text | |
| -f pass the file name | |
| -a pass the algorithm to perform eg, 1 or 256 or 512 |
The issue with digispark attiny85 was that it was detectig(the light was on) with usb adapter but I was not able to upload the programs in it, IDE was not at all detecting the hardware. And the boarb was working fine in the windows environment.
So the following commands worked for me:
cd ~/Library/Arduino15/packages/digistump/tools/micronucleus/2.0a4/
chmod a+wx launcher
chmod a+wx micronucleusInstall tor via HomeBrew and start the tor serivce.
brew install tor && brew services start tor
And to use obsf4 proxy we need to install its library/ Use HomeBrew for installation of the library.
brew install obfs4proxy
Firstly use obsidian-export to export the Obsidian Vault/Notes to regular markdown files.
Once after exporting in the regular markdown format use the following script to convert the markdown to docx. This will require Pandoc.
pandoc md-file.md \
-o out-docx-file.docx \
--from markdown+yaml_metadata_block+raw_html \
--top-level-division=chapter| import socket | |
| ip = "" | |
| port = | |
| prefix = "" | |
| offset = 634 | |
| overflow = "A" * offset + "B"*4 | |
| retn = "" | |
| padding = "" |
| #!/bin/bash | |
| if [ "$1" == "-h" ] || [ -z "$1" ] | |
| then | |
| echo " Set the brightness of the primary display i.e. laptop's one. | |
| Usage: $(basename "$0") [-h] [-b brightness_value] | |
| where: | |
| -h show this help text |