Skip to content

Instantly share code, notes, and snippets.

View alessandrorubio's full-sized avatar
🧍
A jira a day keeps the doctor away

Alessandro Rubio alessandrorubio

🧍
A jira a day keeps the doctor away
  • Barcelona
  • 14:21 (UTC +02:00)
View GitHub Profile
@Degenhours
Degenhours / LogReview.md
Last active April 8, 2024 17:23
How to review your Fire Mage logs for dummies
@macournoyer
macournoyer / Output
Last active January 9, 2023 15:12
A Neural Network framework in 25 LOC
$ python xor.py
Training:
Epoch 0 MSE: 1.765
Epoch 100 MSE: 0.015
Epoch 200 MSE: 0.005
* Target MSE reached *
Evaluating:
1 XOR 0 = 1 ( 0.904) Error: 0.096
0 XOR 1 = 1 ( 0.908) Error: 0.092
1 XOR 1 = 0 (-0.008) Error: 0.008
anonymous
anonymous / Hangman.c
Created January 8, 2014 16:50
#include <stdio.h>
#include <time.h>
#include <string.h>
#define MAX_WORD_LEN 20
#define MAX_TRIES 6
char* GetWordFromFile();
int HideWord(char* randomWordfromFile);
void PlayAgain();
@samqiu
samqiu / railscasts.rb
Last active December 9, 2022 03:49
Download free Railscast video
#!/usr/bin/ruby
require 'rss'
# Usage
# $ ./railscasts.rb http://railscasts.com/subscriptions/YOURRAILSCASTRSS/\/
# episodes.rss
# OR
# $ ./railscasts.rb
p 'Downloading rss index'