Search Results

Search found 12834 results on 514 pages for 'small wolf'.

Page 3/514 | < Previous Page | 1 2 3 4 5 6 7 8 9 10 11 12  | Next Page >

  • Examples of MMOs with small dev teams

    - by Aliud Alius
    I'd like to see a list of MMOs with small development teams in order to better understand where small teams have found a place for themselves. While examples of MMORPGs are of interest, so are games focusing on socializing, trade and commerce, city or empire building, crafting, exploration, strategy and so on. Any shipping game supporting between, say 800 and 10,000 simultaneous players belongs on this list. Thanks.

    Read the article

  • Architecture/pattern resources for small applications and tools

    - by s73v3r
    I was wondering if anyone had any resources or advice related to using architecture patterns like MVVM/MVC/MVP/etc on small applications and tools, as opposed to large, enterprisy ones. EDIT: Most of the information I see on application architecture is directed at large, enterprise applications. I'm just writing small programs and tools. As far as using these architecture patterns, is it generally worthwhile to go through the overhead of using an MVC/MVVM framework? Or would I be better off keeping it simple?

    Read the article

  • Git workflow for small teams

    - by janos
    I'm working on a git workflow to implement in a small team. The core ideas in the workflow: there is a shared project master that all team members can write to all development is done exclusively on feature branches feature branches are code reviewed by a team member other than the branch author the feature branch is eventually merged into the shared master and the cycle starts again The article explains the steps in this cycle in detail: https://github.com/janosgyerik/git-workflows-book/blob/small-team-workflow/chapter05.md Does this make sense or am I missing something?

    Read the article

  • Windows Small Business Server 2011 disponible en Release Candidate pour sa version Essentials

    Windows Small Business Server 2011 disponible en Release Candidate Pour sa version Essentials Mise à jour du 07/02/11, par Hinault Romaric Microsoft vient de publier la Release Candidate de Windows Small Business Server 2011 (SBS 2011). SBS 2011 est un serveur particulièrement adapté pour les petites entreprises. Fondé sur Windows Server 2008 R2 (et soutenu par plusieurs OEM dont Acer, Dell), SBS 2011 regroupe un ensemble de fonctionnalités permettant de protéger, d'accéder et de gérer facilement les données (lire ci-avant). La RC de SBS 2011, disponible en version Essentials (pouvant supporter au plus 25 utilisat...

    Read the article

  • Small Business SEO Blueprint

    The popularity of small business SEO continues to rise with small businesses getting more involved in e-commerce. This is no longer an industry that is exclusive to big businesses. Smaller businesses are able to grow without concerns about conventional marketing techniques.

    Read the article

  • Small Business Owners and SEO

    Small business owners are not really conversant with the term SEO and most of them just cannot appreciate the necessity and value of the optimization process. In simple words, it is the process of making the publicity of your business through an online website. SEO technique is a must for small business owners because of two vital factors.

    Read the article

  • Local Search Engine Optimization Tips For Small Business

    Having a well optimized website is a important key factor any small business that's targeting their local market. Coming up with a strategy or game plan will help get your products and services seen by your prospective buyers. Here's few tips to help optimize your small business website and promote your company website.

    Read the article

  • Do Small Companies Also Need An SSL Certificate

    The internet has enabled even the small companies to compete with the large companies, but the small companies need offer some of the best online services to their customers. Online shopping is picki... [Author: Jack Melde - Computers and Internet - May 01, 2010]

    Read the article

  • Small Business Software: OpenOffice.org vs. Google Docs

    <b>Small Business Computing:</b> "Microsoft is getting ready to ship Office 2010, but a lot of small businesses realize they don't need all the features (or licensing costs) that come with Microsoft Office. The front-runners for Office replacements are OpenOffice.org and Google Docs, but which one is right for your business?"

    Read the article

  • How Does SEO Give Benefit to Small Businesses?

    Firstly search engine optimization would give benefits to small businesses in a way to increase their business identity worldwide in a most proactive manner. Secondly it would give you benefits in a way to increase your website visibility on the dot. Thirdly it would enhance the return on investment of small scale industry within a very short span of time.

    Read the article

  • 5 Reasons Why SEO Can Multiply Small Business Profits

    If you own a small business that is focused online or even if you own a small business in the real world learning how to use SEO on your website can be the key to multiplying your profits. This is due to the fact that proper SEO will increase the amount of traffic that your website receives; which in turn will increase the annual profits that you make.

    Read the article

  • Why Small Businesses Should Choose Search Engine Marketing Specialists

    Search Engine Optimization (SEO) is the most effective marketing strategy there is for small business that are seeking to establish a lasting market presence. This is a strategy that helps one to create leads and site content that will in return offer high web conversion rates for the site / online business. To do this it is important that a small business owner uses the services of search engine specialists.

    Read the article

  • Nokia’s First Windows Phone Video Surfaces On Web–Elop Demos It To Small Gathering

    - by Gopinath
    Stephen Elop, the CEO of troubled mobile giant Nokia shows off their first Windows Phone to a small gathering. The mobile is codenamed as “Sea Ray” and it runs on Microsoft’s newly released Windows Phone version – Mango. While showcasing the phone Elop requested everyone to turn off their cameras but as usual someone ignored it, recorded the keynote and published it to YouTube. The device looks very similar to the recently released Nokia N9 but comes with an extra button on the sides. Every Windows Phone released so far had three hardware buttons on the front (Home, Search and Back), but the Nokia’s phone have three buttons on the side. Check the embedded video of Elop showcasing Nokia’s first Windows Phone This article titled,Nokia’s First Windows Phone Video Surfaces On Web–Elop Demos It To Small Gathering, was originally published at Tech Dreams. Grab our rss feed or fan us on Facebook to get updates from us.

    Read the article

  • A Small Utility to Delete Files recursively by Date

    - by Rick Strahl
    It's funny, but for me the following seems to be a recurring theme: Every few months or years I end up with a host of files on my server that need pruning selectively and often under program control. Today I realized that my SQL Server logs on my server were really piling up and nearly ran my backup drive out of drive space. So occasionally I need to check on that server drive and clean out files. Now with a bit of work this can be done with PowerShell or even a complicated DOS batch file, but heck, to me it's always easier to just create a small Console application that handles this sort of thing with a full command line parser and a few extra options, plus in the end I end up with code that I can actually modify and add features to as is invariably the case. No more searching for a script each time :-) So for my typical copy needs the requirements are: Need to recursively delete files Need to be able to specify a filespec (ie. *.bak) Be able to specify a cut off date before which to delete files And it'd be nice to have an option to send files to the Recycle bin just in case for operator error :-)(and yes that came in handy as I blew away my entire database backup folder by accident - oops!) The end result is a small Console file copy utility that I popped up on Github: https://github.com/RickStrahl/DeleteFiles The source code is up there along with the binary file you can just run. Creating DeleteFiles It's pretty easy to create a simple utility like DeleteFiles of course, so I'm not going to spend any talking about how it works. You can check it out in the repository or download and compile it. The nice thing about using a full programming language like C over something like PowerShell or batch file is that you can make short work of the recursive tree walking that's required to make this work. There's very little code, but there's also a very small, self-contained command line parser in there that might be useful that can be plugged into any project - I've been using it quite a bit for just about any Console application I've been building. If you're like me and don't have the patience or the persistence (that funky syntax requires some 'sticking with it' that I simply can't get over) to get into Powershell coding, having an executable file that I can just copy around or keep in my Utility directory is the only way I'll ever get to reuse this functionality without going on a wild search each time :-) Anyway, hope some of you might find this useful. © Rick Strahl, West Wind Technologies, 2005-2012Posted in Windows  CSharp   Tweet !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs"); (function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/plusone.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })();

    Read the article

< Previous Page | 1 2 3 4 5 6 7 8 9 10 11 12  | Next Page >