Skip to content

Instantly share code, notes, and snippets.

View clouder's full-sized avatar

Gumaro Melendez clouder

View GitHub Profile
@clouder
clouder / Making Apple Developer certificates on Linux
Last active December 5, 2023 00:52 — forked from badsyntax/Making Apple Developer certificates on Linux
Making Apple Developer certificates on Linux
1. Create a new directory;
mkdir Apple\ Enterprise
cd Apple\ Enterprise
2. Generate a certificate signing request
openssl req -nodes -newkey rsa:2048 -keyout ios_enterprise.key -out CertificateSigningRequest.certSigningRequest
3. With the information like so (ensure you give it a password):
Country Name (2 letter code) [AU]:GB
State or Province Name (full name) [Some-State]:London

A Step Forward in Fighting Wrongful Convictions

Being accused and punished for an act you never commited, let alone a crime, is the pinacle of injustice. Mistakes like this in the legal system fall squarely on the shoulders of the District Attorney who went forward with the decision to take the case to court with insufficient evidence and even obtaining false confessions.

We have to remember that the job of the District Attorney is not to rack up as many convictions as possible, but to bring justice swiftly to the wrongdoers and keep wrongful convictions out of our justice system.

The importance of this issue in El Paso County has been noticed by Jason Flom and Jeffrey Deskovic. With their endorsement, they have put their trust and confidence in me to make wrongful convictions something we only remember happening in our past.

Jason Flom is an advocate for those who have been wrongfully convicted. He is the founding board member of the **[Innocence Project](https

@clouder
clouder / Worksheet.md
Last active January 11, 2021 07:38
Dumbbell Program Worksheet derived and inspired by Athlean-X on YouTube
clouder@dillen-vbox:~$ rvm rubygems head --verify-downloads 1
Retrieving rubygems-rubygems-b79ed97
######################################################################## 100.0%
No checksum for downloaded archive, recording checksum in user configuration.
Extracting rubygems-rubygems-b79ed97 ...
Removing old Rubygems files...
/home/clouder/.rvm/scripts/functions/support: line 170: cd: /home/clouder/.rvm/src/rubygems-rubygems-b79ed97: No such file or directory
Installing rubygems-rubygems-b79ed97 for ruby-2.0.0-p0 ...
Error running 'env GEM_PATH=/home/clouder/.rvm/gems/ruby-2.0.0-p0:/home/clouder/.rvm/gems/ruby-2.0.0-p0@global:/home/clouder/.rvm/gems/ruby-2.0.0-p0:/home/clouder/.rvm/gems/ruby-2.0.0-p0@global GEM_HOME=/home/clouder/.rvm/gems/ruby-2.0.0-p0 /home/clouder/.rvm/rubies/ruby-2.0.0-p0/bin/ruby -d /home/clouder/.rvm/src/rubygems-rubygems-b79ed97/setup.rb', please read /home/clouder/.rvm/log/ruby-2.0.0-p0/rubygems.install.log
Installation of rubygems did not complete successfully.
clouder@dillen-vbox:~$ rvm get head; rvm pkg remove; rvm reinstall all --force
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 185 100 185 0 0 240 0 --:--:-- --:--:-- --:--:-- 407
100 11525 100 11525 0 0 9528 0 0:00:01 0:00:01 --:--:-- 2813k
Downloading RVM from wayneeseguin branch master
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 124 100 124 0 0 320 0 --:--:-- --:--:-- --:--:-- 576
100 1619k 100 1619k 0 0 333k 0 0:00:04 0:00:04 --:--:-- 450k
@clouder
clouder / robot.js
Created December 5, 2012 09:52
#HTTR v1
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.rotateCannon(5);
@clouder
clouder / robot.js
Created December 5, 2012 09:49
Zolmeister
var Robot = function(robot){
robot.turnLeft(robot.angle % 90);
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
if (robot.parentId) {
robot.ahead(1);
robot.turnGunRight(1);
}
else {
@clouder
clouder / robot.js
Created December 5, 2012 09:30
#HTTR v1
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.rotateCannon(5);