Posts mit dem Label primary werden angezeigt. Alle Posts anzeigen
Posts mit dem Label primary werden angezeigt. Alle Posts anzeigen

Samstag, 27. Februar 2016

How to Make a Webcomic WebsiteIn Feburary 2016 27,

In Feburary 2016 27,
Webcomics can be solo efforts or exercises in teamwork. For example, Penny Arcade is a partnership between writer Jerry Holkins and artist Mike Krahulik, while VG Cats is created entirely by Scott Ramsoomair. If you have the skill to handle both writing and illustration, you can launch a solo comic. However, having a fellow artist involved gives you time to focus on a single aspect of the comic, while your partner handles the rest -- effectively reducing a stressful workload. These aren't the only useful elements to a webcomic team, however. As Cat-Nine author Kevin Dangoy points out, having a 'Web guy' who knows how to build and maintain the site itself can be vital. Take on the roles you can handle but don't be afraid to branch out to willing collaborators.
Developing Your Comic
After you have a creative team in place or decide to go it alone, it's time to begin development. Work out what you want your comic to be about, who the primary characters are, what kind of narrative structure you want to use and all your character designs. Get a solid bead on just what your comic is and how it looks -- a slapped-together comic is less likely to succeed than one that is well planned. You'll need to master image-editing software like Adobe Photoshop or GIMP.
Finding Web Hosting
After you have your ideas all worked out and a few strips ready for the launch, find somewhere to host your comic. You can use a free blogging site like Blogger to start or one of the free Web hosting services. Take a close look at the free Web hosting services tailored specifically to webcomics, including Comic Genesis, The Duck, Smack Jeeves and Comic Fury. Free Web hosting has limitations; you may need to shop around to find one that suits your needs best. Premium hosting and domain services maximize performance and options; you can start with one of these services or switch when your comic grows in popularity.
Building the Site
Building the site itself requires some skill with HTML and CSS, even with free Web hosting. You or your Web expert will need to carefully tailor the site to work around advertisements and function smoothly while still making your comic easy to read and access. Depending on the desired complexity, the skill level required can be basic or advanced. You'll also need an FTP program so you can transfer the comics themselves to your website's server.
Helpful Tips
Artist Julie Miyamoto suggests that you create a backlog of comics and space out the release dates. By releasing your backlog incrementally over time, you have time to work on another batch or take a break. She also suggests that you avoid filler whenever possible, as fillers detract from overall plot progress. She suggests that you keep concepts broad enough to appeal to a wide audience without alienating your primary readers. Bill Watterson's 'Calvin and Hobbes' serves as a good example; many of the strips require almost no reading.
In Feburary 2016 27,

Sonntag, 21. Februar 2016

How to Make Money Hosting PC Game ServersIn Feburary 2016 21,

In Feburary 2016 21,
Decide on the type of server you want to use. You can use your computer as a server, but once you shut down the computer, no one can use it. A dedicated server is in use 24-7 and will be unavailable for your own personal use.
Find a game to host by contacting developers or programmers working on games. If you want to court a large company like Blizzard, then you need to have large servers that can host a large-scale game. If you plan on courting a small company, then you don't need such a large system.
Figure out how you plan to charge. If you are working with a large company, they will likely lease your servers for their game; that will be the primary source of revenue. If you host a small scale or even local game, then you can charge people a monthly fee to play.
Create your pay-for-access system by working with your Internet service provider or hosting company. They both have the ability to set up a username and password system for either a membership section of your website, which you can provide access to your server, or directly with the server itself for a limited time. This will give only paying customers access to the server and the game.
Publicize your gaming space. If you are hosting a local game, then you will need to publicize your business in order to get people to come and play the game. The most common ways of publicizing products are advertising, social media and news coverage.
Upgrade the servers when needed. If you want to continue making money, then you will need to upgrade your servers when the number of people gets too large or the games take up too much memory on the server.
In Feburary 2016 21,

Sonntag, 7. Februar 2016

How to Set Up a CNAME With GoDaddyIn Feburary 2016 07,

In Feburary 2016 07,
Log in to the GoDaddy site and launch the domain editor. Locate your domain and select the option to edit the DNS Zone File. Choose 'Add Record' and select a 'CNAME (Alias)' record. Type the name of the subdomain in the Host field, and type the IP address of the subdomain, or '@' if it's the same as the primary domain, in the Points To field. Accept the default TTL value and select 'Finish.' It can take up to 24 hours for the CNAME to propagate to all DNS servers around the world.
Create a Virtual Host
When you add a CNAME to a domain, it means that users can address traffic to that subdomain and that DNS servers will route the traffic to your Web server. However, you must tell the Web server what to do with the traffic that arrives for the subdomain, or it will resolve the default location for traffic with an unknown destination. You can do this by creating a virtual host for the subdomain. For example, in Apache, use the ServerName directive to provide the subdomain name and the DocumentRoot directive to provide the location of the code for the subdomain:
ServerName mail.example.com
DocumentRoot /var/www/example-mail/html
ErrorLog /var/log/apache2/exm-error.log
CustomLog /var/log/apache2/exm-access.log combined
In Feburary 2016 07,