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
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
Hey, I'm Chinacolt-8400905 and I have contributed to the citrea test 2 MPC Phase2 Trusted Setup ceremony. | |
The following are my contribution signatures: | |
Circuit # 1 (verify_for_guest) | |
Contributor # 1 | |
Contribution Hash: 12085952 a8863ed9 f9c1742c 140c0a64 | |
78b5bc2d 91c4d233 3e31775a 5155352a | |
caf39470 f7b0b568 e6a7c5d6 f26bbc19 | |
5dd86635 abd04f5d 355ad184 1faab4ef |
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; | |
-- ---------------------------- |