Welcome, Guest
Welcome to Makestation! We are a creative arts/indie discussion community — Your center for creative arts discussion, unleashed!

Please note that you must log in to participate in discussions on the forum. If you do not have an account, you can create one here. We hope you enjoy the forum!

Status Updates
Avatar of User
tc4me January 6th, 2025
the forum is being flooded with spammers!
Avatar of User
tc4me January 6th, 2025
the forum is being flooded with spammers!
Avatar of User
tc4me January 6th, 2025
the forum is being flooded with spammers!
Avatar of User
tc4me January 6th, 2025
the forum is being flooded with spammers!
Avatar of User
tc4me January 6th, 2025
the forum is being flooded with spammers!
View all updates

Search Forums

(Advanced Search)

Forum Statistics
» Members: 1,012
» Latest member: shayjohnson9112
» Forum threads: 6,996
» Forum posts: 31,271

Full Statistics

Online Users
There are currently 149 online users.
» 0 Member(s) | 147 Guest(s)
Bing, Google

Latest Threads
哪里可以买到护照,购买真假护照,购买驾照, 购买护...
Forum: Creative Writing
Last Post: braveone7878
1 hour ago
» Replies: 0
» Views: 4
哪里可以买到护照,购买真假护照,购买驾照, 购买护...
Forum: Launchpad
Last Post: braveone7878
1 hour ago
» Replies: 0
» Views: 3
哪里可以买到护照,购买真假护照,购买驾照, 购买护...
Forum: Marketplace & Collaboration
Last Post: braveone7878
1 hour ago
» Replies: 0
» Views: 3
哪里可以买到护照,购买真假护照,购买驾照, 购买护...
Forum: Software
Last Post: braveone7878
1 hour ago
» Replies: 0
» Views: 3
哪里可以买到护照,购买真假护照,购买驾照, 购买护...
Forum: The Others
Last Post: braveone7878
1 hour ago
» Replies: 0
» Views: 4
哪里可以买到护照,购买真假护照,购买驾照, 购买护...
Forum: Web Design & Internet
Last Post: braveone7878
1 hour ago
» Replies: 0
» Views: 4
哪里可以买到护照,购买真假护照,购买驾照, 购买护...
Forum: Technology & Hardware
Last Post: braveone7878
1 hour ago
» Replies: 0
» Views: 3

 
  Frost
Posted by: Burned Designs - November 10th, 2013 at 9:43 AM - Forum: Design Showcase - Replies (3)

So I'm glad to bring you my Frost Theme which I have created with simplicity and in response to my HTML Version of the theme.


Download : http://www.shieldtutorials.net/Downloads/FrostBB.rar

Preview Image :
[Image: preview.png]

Print this item

  Hello MS
Posted by: Burned Designs - November 10th, 2013 at 9:32 AM - Forum: Introductions - Replies (3)

Hello I am Kyle a.k.a Burned Designs, I'm a web designer and easy to get along.

Here is a theme I have created (not meant for advertising my official site)
Frost
and here is my html version
Frost HTML

Hope to have fun on this community.

Print this item

  Theme update feedback?
Posted by: Darth-Apple - November 9th, 2013 at 4:48 AM - Forum: Community Related - Replies (5)

As you may notice, Makestation now has a slightly updated look and feel yet again. In this update, some of the colors have been brightened, and I've simplified the layout to help build a more modern and unique feel. You may also notice that the shoutbox has returned as well.

Anyway, what are your thoughts on the latest update? Feel free to leave any feedback, suggestions, etc... below, as I will look into all suggestions! Big Grin
-Apple

Print this item

  youtube music awards
Posted by: Darth-Apple - November 8th, 2013 at 9:59 PM - Forum: Media & Entertainment - No Replies

Personally, I was a bit dissapointed by them. I felt like they left something to be desired, and most of the artists seemed to be selected based on popularity and not as much based on their actual musical talent.

What are your thoughts on this round of youtube awards?

Print this item

  Learn PHP - Directory of Tutorials
Posted by: Darth-Apple - November 8th, 2013 at 2:44 AM - Forum: Software - No Replies

Hello everyone!

I've been working on PHP tutorials over the past few months, and have just been posting them as I have completed them in this board. I have decided to create a "directory" for them so that you can easily move from one tutorial to the next without having to go hunting for them. I'll try to add "next tutorial" links to each of the tutorials sometime tomorrow as well, to make this a bit easier and more organized.

Tutorial 1: Introduction to PHP
Tutorial 2: Introduction to Variables
Tutorial 3: Introduction to Functions
Tutorial 4: Conditional Statements
Tutorial 5: Let the fun stuff begin; forms and PHP introduction
Tutorial 6: Introduction to Loops

These aren't finished, and I will be pumping more of these out over time. Stay tuned for more!

Print this item

  PHP - Part 6
Posted by: Darth-Apple - November 8th, 2013 at 2:33 AM - Forum: Software - Replies (2)

How to Program PHP
Tutorial, Part 6

Welcome to part 6 of this series of tutorials! In the last tutorial, we finally introduced some concepts that allowed you to interact with a PHP script on the server. (That was a lot of tutorials to get to something so simple, eh? ) In this tutorial, we will introduce the concept of the loop, which will be an extremely useful concept that we will use in later tutorials. These concepts will become especially important when we start using databases. We're still a good way off from that, but this is nevertheless a very important concept.

Basically, a loop does two very simple things. 1) It executes a block of code over and over again, and 2) it checks some sort of condition each time before it executes. The condition is very important because otherwise, without a condition, a loop would literally execute forever. In PHP, we aren't quite as worried about crashing a server because typically a PHP script is cut off after about 30 seconds of execution time (unless your webhost has an unconventional PHP configuration), but in other programming languages, the implications of "bad loops" could be a lot worse. Tongue

The first "loop" that will be demonstrated is the "while" loop, which looks like this:

Code:
<?php
$count = 0;

while ($count < 11)
{
echo $count. "<br>";
$count = $count + 1;
}

?>

The above code is actually very simple. A "while" loop simply executes a block of code over and over again, as long as a specific condition is met each time. If you run this script, you will see the script count from 0 to 10 in your browser. What makes it stop at 10?

Notice how the condition of the while statement is "($count < 11)". Basically, the condition is that the $count variable is less than 11. If it is equal to 11 or more, this "while" statement will not execute. If it is less than 11, the while statement will execute, and will continue to execute as long as $count remains less than 11. Now of course it won't increment count by itself, so we'll have to make sure that we do that in our loop to prevent an "endless loop" that runs eternally. Tongue

Notice these lines:

Code:
echo $count. "<br>";
$count = $count + 1;

The second line is what actually increments $count by 1. Every time this while loop executes, it will increment $count by 1 because this line is "in" the loop. The line before it simply echoes the value of the $count variable, so you will see it in your browser. It also adds a <br> tag so that each number is on each line, so don't be confused by that part of the statement. What you'll end up seeing in your browser when you run this script will be:

Quote:0
1
2
3
4
5
6
7
8
9
10

As you can see, the while loop is pretty simple. It is an extremely useful loop in PHP, and it will be important to have a solid understanding of how it works. Of course the while loop isn't the only kind of loop that PHP has to work with. There are several variants, including the do-while loop, which is a variant of the while loop where first the block of code will be executed once, and then it will check against a condition before it runs the loop any additional times. What's different about the do-while loop is that a do-while loop will always execute at least once. A while loop won't even execute at all if the condition is never met, but a do-while loop is guaranteed to run at least once, even if no conditions are ever met.

The do-while loop isn't as common as the while loop, so I won't cover it specifically in this tutorial, but if you would like to learn more about how it works, click here for the official explanation from the online PHP manual.

There are of course several other loops in PHP, but none of them are as essential. One loop that I will cover later on is the for loop. The for loop is like the while loop, but it increments the variable automatically instead of requiring you to make a statement to increment a variable. (this sounds useful, but all it really does is save you one extra line of code. ) There is nothing that can be done with a for loop that cannot be done with a while loop, so this isn't very essential for us to glance over yet. If you would like to gain a better understanding of a for loop now, feel free to look at this page from w3schools.

This has been a fairly short tutorial. In my post below, I will give a more "interactive" example of the while loop, and in future tutorials, we'll continue to dive into more complex concepts. Big Grin

Print this item

  Cloud Hosting - NShadow CDN
Posted by: NightShadow - November 7th, 2013 at 6:58 PM - Forum: Technology & Hardware - Replies (3)

So, to compliment the release of ShadowPost (my social network software) in March, I had an idea (soon to be project if funding is secured) to start up a small cloud host with affordable prices. It will mainly host ShadowPost communities but can aim at sponsoring established open source projects.

The three locations I had in mind for servers were:

Chicago Area (Continuum DC in Lombard, IL)
Dallas (CoreXchange in Dallas, TX)
Denver (Handy Networks in Denver, CO - COMING SOON)

Here is a map of the locations also:
http://nshadowcode.net/serverloc.png

It will be a KVM/CloudStack powered cloud with a custom panel (though with Solus at the start possibly?), and price at a flat rate instead of per hour, and have fair overages if needed, such as $2.50 monthly for 10GB of space, etc.

All bandwidth would be unlimited on a shared 100Mbps line, in which the user can upgrade to 1Gbps for $25/mo. Hard drive space is RAID 5 protected with SSD caching coming soon.

Open source project sponsoring would equal free or low-price hosting for mid-to-large sized open source projects, that may have outgrown SourceForge or GitHub for example. It would all depend on what the project managers need, for example, we could offer a site for free, and a mirror for software downloads possibly for $5-20/mo.

What do you think?

Print this item

  Abi's Doodle & Design Space
Posted by: Abi - November 6th, 2013 at 4:23 AM - Forum: Digital Journals - Replies (8)

Here are the most recent stuff i did :q been quite lazy lately and havent completed...a bunch of... stuff

Art:
Knight:
http://i63.photobucket.com/albums/h132/b...cabfb7.jpg
Robot:
http://i63.photobucket.com/albums/h132/b...52c4a7.jpg

Designs:
5-Page, Fictional Company Webpage Mock Up i had to do for class (illustrator sorta derped but actual webpage will be fully developed in the coming weeks)
http://i63.photobucket.com/albums/h132/b...4f3799.png
http://i63.photobucket.com/albums/h132/b...0466b9.png

3D:
Just started learning 3DS Max at school and made a playground as an assignment
http://i63.photobucket.com/albums/h132/b...a54ee1.jpg

Print this item

  Chat Window
Posted by: Abi - November 6th, 2013 at 3:26 AM - Forum: Community Related - Replies (3)

It'd be cool to have a live chat window somewhere on here (if possible) Smile

Print this item

  Ello :>
Posted by: Abi - November 6th, 2013 at 3:04 AM - Forum: Introductions - Replies (4)

Hello,

My name is Stephanie and im from Canada.
Im currently just a 2nd year student at SAIT Polytechnic studying new media production and design. I can be quite shy at times, but i tend to be quite talkative if we have something in common.

Im mainly a traditional/digital artist but i've taken quite an interest in graphic design and web development.
Besides that i like to play video games, read and of course; doodle. My interests are fantasy, sci-fic (robots specifically), and crafts.

Thats it i guess, cya around :]

Print this item


Dark/Light Theme Selector

Contact Us | Makestation | Return to Top | Lite (Archive) Mode | RSS Syndication 
Proudly powered by MyBB 1.8, © 2002-2025
Forum design by Makestation Team © 2013-2025