Skip to content

Instantly share code, notes, and snippets.

@Chinacolt
Chinacolt / linux-gaming-breaking-the-barriers-and-embracing-open-source-entertainment.md
Last active February 22, 2024 23:28
Linux Gaming: Breaking the Barriers and Embracing Open Source Entertainment

Linux Gaming: Breaking the Barriers and Embracing Open Source Entertainment

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

Keybase proof

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:

@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;
-- ----------------------------