Skip to content

Instantly share code, notes, and snippets.

View bradleySuira's full-sized avatar

Bradley Suira bradleySuira

  • Panamá, Panamá
View GitHub Profile
@bradleySuira
bradleySuira / index.html
Created March 17, 2023 16:45
Liquality SDK sample using Vanilla js
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Liquality SDK</title>
</head>
<body>
</body>
</html>
@bradleySuira
bradleySuira / external-initiator-config.json
Created October 28, 2020 17:26
ChainLink Assesstment
{
"initiators": [
{
"type": "external",
"params": {
"name": "link-transfers",
}
}
],
@bradleySuira
bradleySuira / HUB_PRs.md
Last active October 31, 2018 16:56
Example of create and merge PR's for games platform-frontend using github hub

CREATE PR

git submodule foreach hub pull-request -m "YOUR DESCRIPTION" -r user_handle_for_review -b develop

MERGE PR's

git submodule foreach git checkout develop && 
git submodule foreach --quiet hub pr list -h fix_remove_validation_of_vtho -f "%U," | awk -F, '{for (i=1;i&lt;=NF;i++)hub merge $i}' &amp;&amp; #get all PR's and use hub merge to merge in local 
@bradleySuira
bradleySuira / gist:8416281808b69519a974a9fd19c30409
Created December 6, 2017 16:55 — forked from fabiofl/gist:5873100
Clear Mac OS X's icon cache.
sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \;