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 / 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 / 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 / gitstats_automata
Last active December 21, 2015 07:49
This is a little shell script for update, join and run gitstats on several repositories in order to see only one gitstats project
#!/bin/sh
echo --------
allrepos='';
c=0;
for D in ~/repos/*;do
if [ -d "${D}" ];
then
cd "${D}";
pwd;
#Can't exist a repository with the name 'www'"
@Quantium
Quantium / gist:5543602
Last active December 17, 2015 03:29
What distro you are using.
echo 'To know what linux distro you are using.'
lsb_release -a
echo 'or'
cat /etc/issue
@Quantium
Quantium / SSH VirtualBox VM Cloning
Created January 24, 2013 19:08
Debian VirtualBox Virtual Machine Cloning with ssh
vboxmanage createvm --name skydev --ostype Debian --basefolder VirtualBox\ VMs/skydev --register
vboxmanage storagectl skydev --name LsiLogic --add scsi --controller LsiLogic
VBoxManage storageattach "skydev" --storagectl LsiLogic --port 0 --device 0 --type hdd --medium sky.vdi
vboxmanage startvm skydev --type headless
vboxmanage controlvm skydev poweroff