Skip to content

Instantly share code, notes, and snippets.

@Chinacolt
Chinacolt / aws-solutions-architect-pro-exam_notes.md
Created May 18, 2026 23:03 — forked from selcukcihan/aws-solutions-architect-pro-exam_notes.md
Cheat sheet for AWS Solutions Architect Professional Exam

AWS Solutions Architect Professional Exam Notes

Data Storage

  • Persistent stores: glacier, RDS

  • Transient stores: SQS, SNS

  • Ephemeral stores: EC2 instance, Memcached

  • IOPS: how fast we can read/write

  • Throughput: how much data can be moved at a time

@Chinacolt
Chinacolt / soyisimler.sql
Created October 17, 2020 15:29 — forked from BedirYilmaz/soyisimler.sql
Türkçe Soyisim Listesi - Sqlleştirildi
CREATE TABLE soyisimler (
id int IDENTITY(1,1) NOT NULL,
soyisim varchar(255) NOT NULL,
PRIMARY KEY (id)
)
INSERT INTO soyisimler VALUES ('ABAT');
INSERT INTO soyisimler VALUES ('ABSEYİ');
INSERT INTO soyisimler VALUES ('ABACIOĞLU');
INSERT INTO soyisimler VALUES ('ACAR');
@Chinacolt
Chinacolt / turkce_isimler.sql
Created October 17, 2020 15:26 — forked from ismailbaskin/turkce_isimler.sql
Türkçe isim veritabanı
-- Turkce isimler sozlugu twitter : http://twitter.com/baskindev
CREATE TABLE `isimler` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`isimler` varchar(255) DEFAULT NULL,
`cinsiyet` varchar(255) DEFAULT NULL COMMENT 'erkek : E , kadın : K , uniseks : U',
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
-- ----------------------------