Current time: 08 May 2024, 11:56 AM



Drop a couple project ideas
Offline Centos

Developer
Banned
*
5 Years of Service
Posts: 36
Threads: 8
Likes Received: 0 in 0 posts
Likes Given: 0
Joined: Jun 2018
Reputation: 5
Discord: Centos#1337
Emerald DonatorProgrammerSapphire DonatorThanks From Cloud
#1
Drop a couple project ideas

I'd love to see people's ideas for what projects I should work on next. 

C# and PHP (.exe files and web related loot) is what i mainly do so drop a couple ideas and I'll be sure to release them free for people to use :P.
(This post was last modified: 23 Jun 2018, 02:41 PM by Centos.)
23 Jun 2018, 02:41 PM
Find Reply
Offline SmG UreshiiShiro

嬉しいShiro
Senior Member
******
6 Years of Service
Posts: 578
Threads: 22
Likes Received: 0 in 0 posts
Likes Given: 0
Joined: Mar 2018
Reputation: 121
Location: Poland
Discord: Ure#3988
FortniterScoutEmerald DonatorDonatorCrystal DonatorBronze Medal
Discord WarriorGamerPet LoverSupporter
#2
RE: Drop a couple project ideas

em this is ? hm for what ? @Centos ? why you past this here ? @SmG Zemox check this plz

[Image: E72GbKE.png]

23 Jun 2018, 03:51 PM
Website Find Reply
Offline DaJoey

Senior Member
Senior Member
******
6 Years of Service
Posts: 760
Threads: 78
Likes Received: 5 in 5 posts
Likes Given: 1
Joined: Dec 2017
Reputation: 47
Location: Wkwk Land
Discord: DaJoey#2139
SmG YouTuberProgrammerGamerHand-held/Mobile GamerChristmas 2018Genius
Halloween 2019InstagramTwitter
#3
RE: Drop a couple project ideas

How about an app for number randomizer? But I guess you'll say it's only a simple integer randomizer xD

(23 Jun 2018, 03:51 PM)Mine Wrote: em this is ? hm for what ? @Centos ? why you past this here ?
He's asking for coding ideas dude, nothing harmful (I guess).
I know what he's talking about because I'm also an information technology (IT) college student now ;)
(This post was last modified: 23 Jun 2018, 04:05 PM by DaJoey.)
23 Jun 2018, 03:59 PM
Website Find Reply
Offline SmG UreshiiShiro

嬉しいShiro
Senior Member
******
6 Years of Service
Posts: 578
Threads: 22
Likes Received: 0 in 0 posts
Likes Given: 0
Joined: Mar 2018
Reputation: 121
Location: Poland
Discord: Ure#3988
FortniterScoutEmerald DonatorDonatorCrystal DonatorBronze Medal
Discord WarriorGamerPet LoverSupporter
#4
RE: Drop a couple project ideas

@DaJoey why past this link ? Wen you go to this link you see only text and Discord Server -.-

Is not it advertising?

[Image: E72GbKE.png]

(This post was last modified: 23 Jun 2018, 04:36 PM by UreshiiShiro.)
23 Jun 2018, 04:36 PM
Website Find Reply
Offline Centos

Developer
Banned
*
5 Years of Service
Posts: 36
Threads: 8
Likes Received: 0 in 0 posts
Likes Given: 0
Joined: Jun 2018
Reputation: 5
Discord: Centos#1337
Emerald DonatorProgrammerSapphire DonatorThanks From Cloud
#5
RE: Drop a couple project ideas

Code:
private static Random random = new Random();
public static string RandomInt(int length)
{
   const string ints = "1234567890";
   return new string(Enumerable.Repeat(ints, length)
     .Select(s => s[random.Next(s.Length)]).ToArray());
}

int amount = 10;
string Random = RandomInt(amount);
MessageBox.Show(Random);

//Optional: converting string result to int:

int ConvertedToInt = Int32.Parse(Random);
Console.Write(ConvertedToInt);
(This post was last modified: 23 Jun 2018, 04:43 PM by Centos.)
23 Jun 2018, 04:38 PM
Find Reply
Offline DaJoey

Senior Member
Senior Member
******
6 Years of Service
Posts: 760
Threads: 78
Likes Received: 5 in 5 posts
Likes Given: 1
Joined: Dec 2017
Reputation: 47
Location: Wkwk Land
Discord: DaJoey#2139
SmG YouTuberProgrammerGamerHand-held/Mobile GamerChristmas 2018Genius
Halloween 2019InstagramTwitter
#6
RE: Drop a couple project ideas

(23 Jun 2018, 04:36 PM)Mine Wrote: @DaJoey why past this link ? Wen you go to this link you see only text and Discord Server -.-

Is not it advertising?
When I check the post, there's no link or anything
(23 Jun 2018, 04:38 PM)Centos Wrote:
Code:
private static Random random = new Random();
public static string RandomInt(int length)
{
   const string ints = "1234567890";
   return new string(Enumerable.Repeat(ints, length)
     .Select(s => s[random.Next(s.Length)]).ToArray());
}

int amount = 10;
string Random = RandomInt(amount);
MessageBox.Show(Random);

//Optional: converting string result to int:

int ConvertedToInt = Int32.Parse(Random);
Console.Write(ConvertedToInt);
wow so cool, I'd like to see when it really implemented  Giggly
btw, what compiler u use? Visual Basic?
23 Jun 2018, 05:21 PM
Website Find Reply
Offline SmG UreshiiShiro

嬉しいShiro
Senior Member
******
6 Years of Service
Posts: 578
Threads: 22
Likes Received: 0 in 0 posts
Likes Given: 0
Joined: Mar 2018
Reputation: 121
Location: Poland
Discord: Ure#3988
FortniterScoutEmerald DonatorDonatorCrystal DonatorBronze Medal
Discord WarriorGamerPet LoverSupporter
#7
RE: Drop a couple project ideas

@DaJoey this is signature xD

[Image: E72GbKE.png]

23 Jun 2018, 07:11 PM
Website Find Reply
Offline SmG MusicCrasher!

SmG Scout
Scout
******
5 Years of Service
Posts: 406
Threads: 118
Likes Received: 0 in 0 posts
Likes Given: 0
Joined: Jun 2018
Reputation: 117
Location: REEEEEEE
Discord: hello there#8730
SmG YouTuberDiscord WarriorScout
#8
RE: Drop a couple project ideas

Go Here https://www.ranker.com/list/best-anime-c...nker-anime



XD
[Image: PicsArt_08-04-07.36.49.png]
Music makes life even better.  OwO
23 Jun 2018, 08:21 PM
Find Reply
Offline Centos

Developer
Banned
*
5 Years of Service
Posts: 36
Threads: 8
Likes Received: 0 in 0 posts
Likes Given: 0
Joined: Jun 2018
Reputation: 5
Discord: Centos#1337
Emerald DonatorProgrammerSapphire DonatorThanks From Cloud
#9
RE: Drop a couple project ideas

I mean, Visual Basic isn't a compiler, it's a language lol. The code I gave you is C# and I use Visual Studios as my 'workshop'.
24 Jun 2018, 05:58 PM
Find Reply
Away SmG PDrilla

Senior Member
Senior Member
******
11 Years of Service
Posts: 1,463
Threads: 69
Likes Received: 1 in 1 posts
Likes Given: 0
Joined: Mar 2013
Reputation: 74
GreenCS:GO Tournament AwardFortniterDiscord WarriorLegendary
#10
RE: Drop a couple project ideas

Lol make a simple Tic tac toe game if you’re up for a small challenge.

Do you know other web development languages ?
[Image: Pdrilla.png?width=1442&height=515]
(This post was last modified: 24 Jun 2018, 06:49 PM by PDrilla.)
24 Jun 2018, 06:48 PM
Find Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)
SmG Gaming, © 2010-2024
Theme By: «SmG» Cloud
Edited by: «SmG» Wires