Skip to content

Instantly share code, notes, and snippets.

View Quantium's full-sized avatar
🧮

Andrés González Aragón Quantium

🧮
View GitHub Profile
@Quantium
Quantium / getRepolist.Bitbucket.js
Last active October 26, 2022 22:56
Crete a Downloable CSV of all the repositories showed un the page of Bitbucket repos
const org = "organization"
const repos = document.querySelectorAll('[href^="/'+organization+'"]','[target="_self"])
const reposh =[]
for (let i = 0; i < repos.length; i++) reposh[i] = repos[i].href
const blob = new Blob([reposh], {type: "text/csv;charset=utf-8"});
const blobUrl = URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = blobUrl;
G1 Z30
G28 X Y
G0 X100.0 Y100.0 F3000
G28 Z
G28 X Y
@Quantium
Quantium / gist:edb8545991b091ae5548ea5cf476612f
Created June 14, 2019 22:34
Shell - Geting the ip from any domain
echo $(ping isotopo.net -oq | grep -o '[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}')

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Pull Request Process

  1. Ensure any install or build dependencies are removed before the end of the layer when doing a
@Quantium
Quantium / GitCommitEmoji.md
Created September 19, 2018 18:38 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji
@Quantium
Quantium / index.html
Created February 1, 2017 01:57
JEpBQp
<div id="output">
</div>
<p id="chimino">
Chimino animal maldito sal de tu ahujerito que vamos a trabajar
</p>
<p id="fundamentos">
Los fundamentos de la psicología de la comunicación son 4. El psicoanálisis, el conductismo, El Gestalt, el cognocitivismo.
</p>
<p id="representantes">
El máximo representante del conductimos es el estadounidense Skiner. El máximo representante del psicoanálisis el Sigmund Freud. Fred Pears del Gestalt y Jean Piaget.
@Quantium
Quantium / AWS CodeDeployPolicy
Last active May 17, 2017 06:02
CodeDeploy necesary IAM Roles
CodeDeploy Trust Role
This Role is attached to CD Deployment Group or to the CD App when is created.
In the Inline Policies of the Role must be added a Policy called CodeDeployPolicy as follows:
{
"Statement": [
{
"Resource": [
@Quantium
Quantium / fuzz.js
Created April 22, 2015 23:10
Fuzzy logic timelapse simulation
var fuzzylogic = require('fuzzylogic'),
colors = require('colors');
function simulate(ttl){
var timelapse = ttl*1000;
var half = timelapse /2;
var qrt = half/2;
//Cuando se guardó el caché
@Quantium
Quantium / gist:e6a493dbe2d89c16830b
Created July 7, 2014 20:08
Find raspberry machines IPs on local network
sudo nmap -sP 192.168.1.0/24 | awk '/^Nmap/{ip=$NF}/B8:27:EB/{print ip}'
@Quantium
Quantium / github_account_regex
Created May 14, 2014 01:15
Github account Regex
var githubAccount = /^(?:https?:\/\/)?(?:www\.)?(?:github\.com\/(\w+))\/?$/