Skip to content

Instantly share code, notes, and snippets.

View HighBreedTech's full-sized avatar
💭
Available for Hire

High Breed Technology HighBreedTech

💭
Available for Hire
View GitHub Profile
@HighBreedTech
HighBreedTech / variousCountryListFormats.js
Created June 28, 2022 22:40 — forked from incredimike/variousCountryListFormats.js
List of Countries in various Javascript data structures: Alphabetical country lists & Country data objects.
// Lists of countries with ISO 3166 codes, presented in various formats.
// Last Updated: July 30, 2020
// If you're using PHP, I suggest checking out:
// https://github.com/thephpleague/iso3166
// or Laravel: https://github.com/squirephp/squire
//
// JS developers can check out:
// https://www.npmjs.com/package/iso3166-2-db
//
@HighBreedTech
HighBreedTech / CountryCodes.json
Created June 28, 2022 22:34 — forked from anubhavshrimal/CountryCodes.json
Country and Dial or Phone codes in JSON format
[
{
"name": "Afghanistan",
"dial_code": "+93",
"code": "AF"
},
{
"name": "Aland Islands",
"dial_code": "+358",
"code": "AX"

Disable HTML Form Input Autocomplete and Autofill

  1. Add autocomplete="off" onto <form> element;
  2. Add hidden <input> with autocomplete="false" as a first children element of the form.
<form autocomplete="off" method="post" action="">
    <input autocomplete="false" name="hidden" type="text" style="display:none;">
    ...
@HighBreedTech
HighBreedTech / .htaccess
Created April 28, 2022 05:29 — forked from irazasyed/.htaccess
htaccess: Disable URL indexing by crawlers (FOR DEVELOPMENT/STAGE)
# -----------------------------------------------------------------------------------------
# Disable URL indexing by crawlers (FOR DEVELOPMENT/STAGE)
# -----------------------------------------------------------------------------------------
# Avoid search engines (Google, Yahoo, etc) indexing website's content
# http://yoast.com/prevent-site-being-indexed/
# http://code.google.com/web/controlcrawlindex/docs/robots_meta_tag.html
# Matt Cutt (from Google Webmaster Central) on this topic:
# http://www.youtube.com/watch?v=KBdEwpRQRD0
@HighBreedTech
HighBreedTech / gist:7dda837f62a55705bcdc14201e0562f9
Created December 12, 2021 20:25
[Fixed] Keyboard get disabled on Android Studio on Mac
Keyboard get disabled on Android Studio on MacOs
This problem Happened to my Macbook Pro MacOs Monterey after Android Studio installation.
My solution was to disable IdeaVim Plugin and it works perfectly, this worked for me 100%, so i decided to share in case anyone else face related issue now or in future!
@HighBreedTech
HighBreedTech / countries.json
Created November 27, 2021 03:01 — forked from keeguon/countries.json
A list of countries in JSON
[
{name: 'Afghanistan', code: 'AF'},
{name: 'Åland Islands', code: 'AX'},
{name: 'Albania', code: 'AL'},
{name: 'Algeria', code: 'DZ'},
{name: 'American Samoa', code: 'AS'},
{name: 'AndorrA', code: 'AD'},
{name: 'Angola', code: 'AO'},
{name: 'Anguilla', code: 'AI'},
{name: 'Antarctica', code: 'AQ'},
@HighBreedTech
HighBreedTech / custom-social-share.html
Created October 30, 2021 15:52 — forked from mrtonyhuynh/custom-social-share.html
Custom Social Share Button with Callback
<html>
<head>
<title>Social Share</title>
</head>
<body>
<h2>Custom Social Share Button with Callback</h2>
<button id="share-facebook">Share on Facebook</button>
<button id="share-twitter">Share on Twitter</button>
@HighBreedTech
HighBreedTech / HdWallet.php
Created February 3, 2021 12:15 — forked from daftspunk/HdWallet.php
PHP library for generating addresses from an XPUB
<?php
use BitWasp\Bitcoin\Bitcoin;
use BitWasp\Bitcoin\Key\Deterministic\HierarchicalKeyFactory;
use BitWasp\Bitcoin\Key\Deterministic\HierarchicalKeySequence;
use BitWasp\Bitcoin\Key\Deterministic\MultisigHD;
use BitWasp\Bitcoin\Network\NetworkFactory;
use Exception;
/*