Nine Years of Service
Posts: 145
Threads: 30
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ 08-10-2018, 07:24 PM
#1
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
(This post was last modified: 11-01-2023, 06:43 AM by Confidential.)
•
Thirteen Years of Service
Posts: 74,304
Threads: 317
RE: [Source] Idea Generator 08-11-2018, 05:24 AM
#2
Extremely basic, but nonetheless, serves It's purpose well.
For nostalgic purposes, It's good you've actually kept your projects.
•
Eight Years of Service
Posts: 311
Threads: 16
RE: [Source] Idea Generator 08-11-2018, 07:11 PM
#4
It's interesting to look at others code and how they code. Thanks for sharing! I'm getting Visual Studio soon for free because I'm a student so I might try this out.
•
Ten Years of Service
Posts: 1,916
Threads: 64
RE: [Source] Idea Generator 08-22-2018, 07:17 PM
#8
Would have helped to have this while I still had time for personal projects and didn't know what to do.
Now I have a job and I don't have time for personal projects, but I do have a lot of ideas that I want to make into reality, just need to find time between work and personal life.
•
Seven Years of Service
Posts: 3,059
Threads: 251
RE: [Source] Idea Generator 09-22-2018, 09:56 PM
#10
(08-10-2018, 07:24 PM)Confidential Wrote: This program was one of my first C++ programs I've ever made. It's literally the simplest thing ever, so don't think I am some God for making this, or don't think this was hard to make at all because it wasn't. Basically, all it does is, it generates ideas for you to do when you're bored and have nothing to do. Like I said, this was one of my first ever programs I made when I started C++. I found this in my old Visual Studio project files and just felt like sharing it with you guys because it's kind of special and nostalgic to me.
Anyways, here it is, lol:
Code:
// This is a program that generates ideas for you to do when you're bored and have nothing to do
// Made by: Confidential
#include <iostream>
#include <string>
#include <stdlib.h>
#include <time.h>
#include <random>
using std::cout;
using std::endl;
int main()
{
srand(time(NULL));
string ideaArray[] = {"Go on a walk", "Organize or change up your room", "Code", "Eat", "Drink", "Call up a friend", "Take a bubble bath", "Plan a party", "Listen to music", "Watch TV", "Play a game", "Go swimming", "Hang out with family or friends", "Research new ways to make money", "Make a YouTube video", "Spend time with pets (if you have any)", "Watch YouTube videos", "Make a fort", "Smoke", "Excercise", "Make your own game", "Think about your future", "Learn magic tricks", "Test your memory", "Take fun quizzes online", "Browse social media", "Paint", "Do a puzzle", "Try on outfits", "Read", "Sleep", "Make up scenarios in your head", "Look at old pictures", "Get a job if you don't have one", "Pick up trash where you live", "Try to make it through an hour without touching the floor", "Read the latest news", "Have a fire", "Prank call people", "Find stuff that you don't use that you could sell", "Go fishing", "Go camping"};
string idea = ideaArray[rand() % 42];
cout << idea << endl;
return 0;
}
great source code.
My IT skills that I know perfect is SQL, HTML ,css ,wordpress, PHP.
coding skills that I know is Java, JavaScript and C#
•