Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
2 Posted Topics
Re: Maybe this can help, here is a quick snippet to convert CMYK to RGB. If you take it apart and use this logic backwards then you'll get a decent RGB TO CMYK. [code] c = 10; m = 20; y = 100; k = 31; /* rgb result from above … | |
I'm designing a db for a project which has tables: mainAccount, id int(11) auto_inc primary key username, password, country, email, verification users, id int(11) auto_inc primary key `type` tinyint (3) -fk userType.id description nvarchar interests nvarchar website nvarchar (many other columns..) userIndex, user int(11) primary key - fk users.id `type` … |
The End.