Skip to content

Instantly share code, notes, and snippets.

View katatsu12's full-sized avatar
🦉
Focusing

Den Zubritskiy katatsu12

🦉
Focusing
View GitHub Profile

Technical Feedback — Medical Supply Chain Blockchain (MSCB)

Prepared by Active Bridge for review of the MSCB documentation set (v1.0, dated 02.10.2026). Covers the three areas requested: (1) architecture & approach, (2) roadmap feasibility, and (3) security — data integrity and ownership-transfer tracking.


Summary

@katatsu12
katatsu12 / Main.java
Created June 15, 2017 23:01
First git program
package com.company;
public class Main {
public static void main(String[] args) {
System.out.println("Привет мир!");
}
}
require "rails_helper"
RSpec.describe Article, :type => :model do
it "Validation Error title" do
article = Article.new(title: '')
article.valid?
article.errors[:title]
end
it "Validation Error lenghr" do
require "rails_helper"
RSpec.describe Article, :type => :model do
it "validates title" do
article = Article.new(title: '')
article.valid?
article.errors[:title]
end
it "validates lenghr" do