Skip to content

Instantly share code, notes, and snippets.

@mix86
mix86 / spiflashtest.ino
Created October 2, 2017 10:00
SPI Flash Test
#include <SPIFlash.h>
#define BAUD_RATE 9600
#define WP 8
#define HOLD 9
#define LED 2
SPIFlash flash;
uint16_t page = 1;
uint8_t offset = 5;
@mix86
mix86 / developer.rb
Last active September 24, 2015 11:18
Задачка
class Developer
# Put your code here
end
class RocketBank
def find_developer(platform: :ruby, region: :moscow)
all_developers(platform, region).select do |you|
you.are.crasy
.and { your.skill_level is :high }
.and { you.are.not :tinkoff }