Custom Bots
We create custom IM bots.
Black Green Blue Red Gold
RSS
  • Home PageHome
  • Customize Your Bot / Hire a Freelancer
  • How to Create a Custom Bot / Bot Making Software
  • IMDB to WordPress
  • Youtube Comment Poster Bot

Archive for March, 2010

How to use a calculator

Codes & Scripts 0 Comment »

To open a calculator go to run command and hit calc,or else go to start command ,click on accessories and then click on calculator.The calculator is always set to standard mode

To use the calculator in a scientific mode ,go to view option click on scientific option

 after you select the scientific calculator it appears like this,(appearance may vary from one operating system to another)

You can select programmer mode too ,if you wish to.


March 31st, 2010  
Tags: calculator



Griffin

Codes & Scripts 0 Comment »

The last couple of days I spend with developing a quick application in griffon and have to say this is a rather impressive framework.. Specially since it’s a young framework with a version of 0.3

what I like?

  • using the grails approach
  • very simple to use
  • saves a lot of time in the initial setup of the project
  • clear separation into controller/model/views
what I’m missing?
  • better support in IDE’s
  • no SWT support
  • no gorm (it will come sooner or later)
  • documentation, with the current documentation i can’t use it for production code

March 31st, 2010  
Tags: Griffin



Griffin

Codes & Scripts 0 Comment »

The last couple of days I spend with developing a quick application in griffon and have to say this is a rather impressive framework.. Specially since it’s a young framework with a version of 0.3

what I like?

  • using the grails approach
  • very simple to use
  • saves a lot of time in the initial setup of the project
  • clear separation into controller/model/views
what I’m missing?
  • better support in IDE’s
  • no SWT support
  • no gorm (it will come sooner or later)
  • documentation, with the current documentation i can’t use it for production code

March 31st, 2010  
Tags: Griffin



Rewriting Private Label Rights Articles : Why Use Article Rewriting Software

How To/Articles 0 Comment »

One of the main reasons why people use private label rights articles is that they shortcut the research that is normally required to write a good article. Using private label rights articles, however, has a huge disadvantage. You never know how many other people will publish it.
Due to this fact, it is more than necessary to rewrite a private label article. Although the human brain is the best tool to rewrite articles, it is still a good idea to let a software assist you during the rewriting. It will suggest ideas and speed up the process of rewriting articles.
Read this informative article to discover how.
The hardest part in writing articles about a certain topic is to have enough knowledge about that topic. If you already have enough knowledge it is easier to write articles fluently. You can, however, not be knowledgeable about every single niche for which you want to write articles. That is one of the main reasons why private label rights articles have become so popular. The use of private label rights articles can help you to shortcut the research part for putting content on your website.
If you do a search for private label rights articles in the search engines, you will find literally hundreds of memberships offering articles for a fixed monthly fee. There is however a huge disadvantage involved. You are never sure how many people use the same articles and therefore it is a good idea to rewrite the articles sufficiently to avoid duplicate content.
The duplicate content penalty does not exist, the competition factor does.
Many big names in Internet marketing claim that there is something like a duplicate content penalty enforced by Google. There is no such a penalty. The only factor you have to take in consideration is that so many other people use the same articles. For the Google bot it is confusing to determine who is the originator of the article. That is why Google will only index articles for the keyword phrases they target. The website where the article is published that offers the most value in optimization for relevancy and that offers the most value to the visitor, will be indexed. The only way to beat the competing article owners is by rewriting the article for a low competition keyword phrase and to optimize the article for Latent Semantic Indexing, better known as LSI.
What is latent semantic indexing?
Latent Semantic Indexing is the optimisation of an article for Search Engine Presumed Synonyms, better known as SEPs. The latter is a term defined by Google. To find the SEPs in Google you have to use the tilde symbol in front of the keyword for which you do the search. You do this by pressing the Alt-key on your keyboard while typing 126.
The search engine results will display keywords in bold. Those specific keywords are related to the root keyword used to perform the query in Google. Articles optimised with SEPs read more naturally for the visitor and that is exactly what Google wants.
The human brain is the best tool for rewriting articles. Why should you use software?
While it is true that there is no better tool to rewrite articles than the human brain, it is also true that a software can assist to speed up the process of rewriting articles. A software can display keyword suggestions and SEPs with the speed of light. It can also show the meaning of certain words in the article. A good article rewrite software will also display the keyword density in real time to enable you to optimise the article for the search engines. Another reason why people might use a software application is that it can save the user money on outsourcing costs. To conclude it may be said that the use of article rewriting software has advantages and will save the user time and money.


March 31st, 2010  
Tags: Article, Articles, Label, Private, Rewriting, Rights, Software



Website graphics desired topic – Website Design Freelance Job

Custom Requests 0 Comment »

I have a startup web design company that focuses on pure CSS (tableless) design and some light PHP/MySQL for SOHO & Small Business.

I’m good at fixed layout markup but I suck at making a site look good…and that’s why I’m here.

I am building a web site for a client who advertises his marina, canvas products and storage all within 5 pages, and I need to add that touch of “je ne sais quoi”.

The client provided me with a logo containing all the colors used for the base of the site, but the colors are harsh (purple and orange, black and white) and I’m having a tough time integrating it into a professional-looking site.

My idea of a theme would include:
- an attractive header background with a subtle wave affect
- existing colors that can blend well together, with fading effects to soften corners or page edges, etc
- possibly some icons or page ‘badges’ to identify each link/page (at artist’s discretion)

The site is near completion and needs to be ready no later than Friday, Apr 9th.

All artwork should be drafted in Photoshop and provided to me in .PSD format. I will need the ability to make changes if/when needed.

This is my first attempt at outsourcing so I apologize in advance if I left out any major components to this request.


March 31st, 2010  
Tags: Design, desired, Freelance, graphics, topic, Website



Search Engine Optimization

Custom Requests 0 Comment »

Hi
I want to SEO this site itworkathome … Required Skills: Content Writing, Copy Writing, Creative Writing, Writing


March 31st, 2010  
Tags: Engine, Optimization, search



Definition and development of properties within the same method

Codes & Scripts 0 Comment »

I am new to OOP in PHP and I am struggling with the following problem:

<?php
class filesystem{
    protected $groupId;

    protected function setGroupId($groupId){
        $this->groupId = (int)$groupId;
    }

    protected function getGroupId(){
        return $this->groupId;
    }

    protected function countGroupFiles(){
        global $db;
        $groupId = $this->getGroupId();

        $groupCount_raw = "SELECT COUNT(DISTINCT(base_file_id)) AS filecount
                            FROM " . TABLE_COMMITS . "
                            WHERE group_id = " . $groupId;
        $groupCount = $db->Execute($groupCount_raw);

        return $groupCount->fields['filecount'];
    }

    public function getGroupInfo($groupId){
        global $db;
        $this->setGroupId($groupId);
        $groupCount = $this->countGroupFiles();

        $groupList_raw = "SELECT group_id
                            , group_title
                            , group_status
                            FROM " . TABLE_GROUPS . "
                            WHERE group_id = " . $this->getGroupId() . "
                            LIMIT 1";
        $groupList = $db->Execute($groupList_raw);

        $groupArray = Array("id"=>$groupList->fields['group_id'],
                            "title"=>$groupList->fields['group_title'],
                            "status"=>$groupList->fields['group_status'],
                            "fileCount"=>$groupCount);

        return $groupArray;
    }
}

When I try to run getGroupInfo(15), it’s returning the values for another groupId stored by a different method. In the first place, is it proper to set and get a property value within the same method?

Please throw some light on this issue. Thanks.


March 31st, 2010  
Tags: Definition, Development, method, properties, same, within



Java PHP

Codes & Scripts 0 Comment »

can any body help me in editing the below java script in other for it to work with php
Code:
———

———

HTML:
———



———

HTML:
———


---------


March 31st, 2010  
Tags: Java



Popular User Agent

Codes & Scripts 0 Comment »

What is currently most popular MSIE 8 User agent string?


March 31st, 2010  
Tags: Agent, Popular, User



Grief

Codes & Scripts 0 Comment »

The last couple of days I spend with developing a quick application in griffon and have to say this is a rather impressive framework.. Specially since it’s a young framework with a version of 0.3

what I like?

  • using the grails approach
  • very simple to use
  • saves a lot of time in the initial setup of the project
  • clear separation into controller/model/views
what I’m missing?
  • better support in IDE’s
  • no SWT support
  • no gorm (it will come sooner or later)
  • documentation, with the current documentation i can’t use it for production code

March 30th, 2010  
Tags: Grief



Previous Entries

Custom Bots Sponsors

  • You are currently browsing the Custom Bots blog archives for March, 2010.

  • Categories

    • Codes & Scripts
    • Custom Requests
    • Download
    • Entertainment
    • Free Downloads
    • games-entertainment
    • How To/Articles
    • Marketing
    • Review
    • Seo Services
    • Software
    • Video Tutorial
    • Youtube
  • Recent Posts

    • Media inquiries shows unlike FF or Webkit surgery?
    • Problem with horizontal icemegamenu not
    • PHP Tutorial 7 – Loops and Repetition
    • Como hacer un login con Visual Basic 2010 y SQL Server 2008
    • What’s COCROX?
    • SMS software
    • Java String Permutations and combinations
    • K can not decrease, Space Between empty table rows: Drupal / CkEdit might end?
    • How do I start a business underwear? Scheme
    • Scott Blanchard Clickbump motor bundle
  • Blogroll

    • Rock Kitty
Categories
  • Codes & Scripts
  • Custom Requests
  • Download
  • Entertainment
  • Free Downloads
  • games-entertainment
  • How To/Articles
  • Marketing
  • Review
  • Seo Services
  • Software
  • Video Tutorial
  • Youtube
About Me

Write about yourseft, This is just a sample: Welcome to iSoftwareReviews where you can find reviews, ratings, comparisons about variety of computer software programs.

Hi, my name ChanDara and I am a software programmer, web design and development, graphics designer, software trainer, software consultant. And I have worked in IT for more than... Read more

Free Wordpress Themes | Copyright © 2012 Custom Bots All Rights Reserved XHTML CSS THEME by I SOFTWARE REVIEWS