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 / 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 / GitCommitEmoji.md
Created September 19, 2018 18:38 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji

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 / 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\}')
G1 Z30
G28 X Y
G0 X100.0 Y100.0 F3000
G28 Z
G28 X Y
@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;