Open-source gaming isn't just a trend; it's a game-changer in the gaming industry. Imagine a world where game development isn't shrouded in secrecy but thrives on collaboration and transparency, much like a bustling marketplace where ideas flow freely, and innovation knows no bounds. That's the impact of open-source gaming on the industry – a breath of fresh air that has reshaped the gaming landscape in ways we never thought possible. Think of open-source gaming as a giant potluck party where everyone brings their unique dish to the table. Game developers, enthusiasts, and players alike come together to contribute their skills, ideas, and passion to create a gaming experience that's truly inclusive and diverse. It's like a symphony where each instrument plays its part, harmonizing to create a masterpiece that resonates with gamers of all backgrounds. By embracing open-source principles, the gaming industry has undergone a transforma
I hereby claim:
- I am chinacolt on github.
- I am emrecintay (https://keybase.io/emrecintay) on keybase.
- I have a public key ASACyBQok2TETw0RAdzPcYbvDUEKWaCKFY10pcRaAPq6iQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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; | |
-- ---------------------------- |