Pages

Showing posts with label a. Show all posts
Showing posts with label a. Show all posts

Wednesday, April 16, 2014

A Google Search Operator That You May Not Know About!

Learn more about AROUND, an undocumented Google Search operator that will help user find web pages where the distance between two search terms is n.

Search operators in Google (see Google cheat sheet) help user refine and improve search results.

For instance, a query like “Taj Mahal AND Hotel” will search for pages related to the Hotel Taj and not the Mughal monument. Similarly, “kindle -site:amazon.com” will find all Kindle related resources outside the Amazon website.
AROUND Search Operator
Google Search supports an undocumented search operator called AROUND(n) that will help user find documents where the distance between two search terms is around ‘n.’ Here’s an example:
Google Around Search Operator
Google Around Search Operator for Proximity Searches
A search query like “CNN Obama” will mostly show CNN pages that are related to Obama. However, if we modify the query to look like “CNN AROUND(2) Obama,” user get results where the two terms are written on the page in close proximity.
The higher the number, the less the proximity.
Daniel Russell, who first wrote about the AROUND operator, says that AROUND is especially useful when the documents are rather long (think book-length articles) while a comment points out that it could be also be useful “when searching for quotes, speeches or a song that’s stuck in userr head, but user can only think of a few words from it.”
Google’s wildcard search operator, represented by Asterisk (Obama * CNN), may achieve similar results   but with AROUND, user even get to specify the distance between the two search terms. Do remember to write AROUND in all CAPS else it won’t work.
Read More..

Monday, April 14, 2014

Learn Who You Can Count On With A Criminal Background Examine

By Barnard Hitchcock


Have you ever fulfilled somebody that you had an odd sensation in your gut about? That feeling that perhaps you should not trust them? Everyone has it, and some individualss digestive tract impulses are relatively precise. You can put yours to the test and understand how right you are by making use of a criminal background check. It will give you the essential need to follow your instincts by offering you truths.

You can discover who in your life has a criminal record. Learn whether they were ever pronounced guilty of a major criminal activity prior to you let them into your home. Lawfully you can shield your family and understanding is an excellent method to start securing those you like. Nevertheless, most bad guys will not tell you what they were guilty of so you need to discover for yourself. It is 100 % legal to do so.

Often individuals who have served time in prison for a major crime do not talk about the truth that they were accuseded of killing someone. They will not discuss the truth that they were in trouble for selling medicines. Typically you find out the hard way, when they bring difficulty to your door. Why take the possibility that they are not being honest with you? You can learn whether your next-door neighbor might offer drugs right outside your house.

If you discover your little girl is dating a sex criminal or you learn that your child is dating a lady who is dirty you can protect them. It is the same thing you would wish to do prior to hiring somebody to deal with your lawn. You would not want to learn after you have things shown up missing that the person was formerly imprisoned for robbery. Protect exactly what is yours to protect. Discover who is trustworthy by using a criminal background check and rest much better.

Companies check their workers prior to employing them to ensure that they will have a good worker working for them. They use the web which is the same tool that you have access to. Why not utilize it to your advantage and understand exactly what kind of individual you are handling before you discover the hard way, by having your family or your business harmed by them?

Looking for a previous criminal record can be performed in lots of methods and it is constantly an easy job. All you need is a telephone number, a name, and a computer that will permit you to obtain onto the internet. With this little bit of details you can learn where they live now, where they lived in the past, what times they might have been in jail, and more. If they merely got a quality traffic ticket for no taillights, it does not matter. You can be sure before you enable that individual into your house and your life.

It is rotten to understand that we reside in a world where you have to check a person out prior to you can trust them; however, it holds true since you can not simply just depend on any longer. Many of the time, following your gut instinct will assist you however in other cases you may need a little more evidence. You can see it printed out in bold color white and black it all there is to know about the other person if you find yourself requiring evidence. It will enable you to rest a little easier during the night knowing that you did all you can to secure your family.

Making use of a background check is a truthful means to learn the fact about the things you should understand. Criminal records are public records. The internet merely makes it much easier for everybody to have and make use of access to it. You can discover past things that the person might have done while they lived throughout the nation in an additional state. If it is safe for your children to be near them, you can find out.

A download basic criminal background check will let you understand that they have actually been in trouble. An extensive report may cost you a little bit of cash. Both will offer you some piece of mind in this insane world and for that, you can not place a value on it. Use the devices that are offered so that you can find out what you need to know.




About the Author:



Read More..

Friday, April 11, 2014

WHETHER A NUMBER IS PRIME NUMBER OR NOT USING FUNCTION

#include<stdio.h>
#include<conio.h>
int prime(int number)
{
int k,rem,flag;
flag=1;
k=2
while(k<=number-1)
{
rem=number%k;
if(rem==0)
{
flag=0;
break;
}
k++;
}
return(flag);
}
void main()
{
int number;
clrscr();
printf("Enter a number
");

scanf("%d",&number);
if(prime(number))
printf("%d is prime",number);
else
printf("%d is not prime",number);
getch();
}

OUTPUT
Enter a number
6
6 is not a prime number

Enter a number
7
7 is not a prime number

EXPLANATION
Function prime() is defined with one formal argument of int type and is made to return either 1 or 0.The purpose of the function is to take an integer number and find out whether the number is prime or not. If the number is prime, it returns 1.Otherwise it returns 0.
In the main(),an integer number is accepted into the variable n. A call is made to the function prime() by passing the value of n.Since the function the function returns either 1 or 0, the function call has been used as a conditional expression as if (prime(n)) in main().If prime(n) returns 1 then the number is displayed as prime. Otherwise, the number is displayed as not prime.    

Read More..

Thursday, April 10, 2014

Referral Campaign Win a free copy of Liberty BASIC!

Until the end of October 2012 we are running a word of mouth referral campaign. For a free copy of Liberty BASIC, refer at least 5 friends with an interest in programming. If you want to qualify for the free copy, your friend need to send an email to freeoffer@libertybasic.com and mention that you referred them. They must include your name and email address. We will send you a download link and registration code. Please try to refer friends that you think would be interested in Liberty BASIC. Thanks!
Read More..

Sunday, April 6, 2014

A BRIEF HISTORY OF C


C language is the member of ALGOL-60 based languages. As I have already said, C is neither a language that is designed from scratch nor had perfect design and contained many flaws.
CPL (Combined programming language) was a language designed but never implemented. Later BCPL (Basic CPL) came as the implementation language for CPL by Martin Richards. It was refined to language named as B by Ken Thompson in 1970 for the DEC PDP-7. It was written for implementing UNIX system. Later Dennis M. Ritche added types to the language and made changes to B to create the language what we have as C language.

C derives a lot from both BCPL and B languages and was for use with UNIX on DEC PDP-11 computers. The array and pointer constructs come from these two languages. Nearly all of the operators in B is supported in C. Both BCPL and B were type-less languages. The major modification in C was addition of types. [Ritchie 1978] says that the major advance of C over the languages B and BCPL was its typing structure. “The type-less nature of B and BCPL had seemed to promise a great simplification in the implementation, understanding and use of these languages… (but) it seemed inappropriate, for purely technological reasons, to the available hardware”. It derives some ideas from Algol-68 also.

Read More..

Thursday, March 27, 2014

Display a message on Startup

If you would like to display a legal message or any other message in a pop-up window when windows starts read below:
  1. Start regedit, if you are unfamiliar with regedit please see ourFAQ.
  2. Navigate toHKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogon
  3. Modify the key legalnoticecaption with what you want to name the window.
  4. Modify the key legalnoticetext with what you want the window to say.
  5. Restart.
Read More..

Friday, March 14, 2014

Mobile Suit Z Gundam Advance of Zeta A O Z Re Boot New Images Updated 2 25 14

Mobile Suit Z Gundam: Advance of Zeta [A.O.Z] Re-Boot - Images
Right Click On Image To View Full Size, Select Open In New Window

[Updated 2/25/14]
ARX-124R ReHazel


[Updated 1/8/14]
[Updated 12/14/13]

[Updated 12/10/13]
[Updated 12/5/13]

Read More..

Thursday, March 13, 2014

Fishing In A Very Small Pond

I see some interesting job ads.  Theres not any point in applying for them because of my age, but they are sometimes amusing to read, like this ad that appeared on Boise Craigs List:
 If youre looking to help make a difference in a company, developing existing and new software in Object Pascal (in addition to a host of other technologies),
Object Pascal?  What?  I thought Pascal had joined Etruscan and RPG II in the dead languages category, and now an employer is looking for people with Object Pascal experience?  Are they going to be waiting for a while?
Read More..

Wednesday, March 12, 2014

Configurações de BIOS para o acesso mais rápido a memória

Existem várias maneiras para fazer a sua memória ter acesso mais rápido. Vou apresentar-lhe algumas das configurações que você pode geralmente mudar.

AS Latency - CAS latência é um parâmetro que determina o acesso tempo (na coluna) para a memória RAM em seu sistema.  Quanto menor a latência, mais rápido e com maior frequência o computador é capaz de acessar a memória RAM para diferentes pedaços de informação. SDRAM tem um padrão de 3 de latência, mas a maioria das peças podem lidar com uma latência de 2.

É provavelmente já em ritmo mais rápido, é possível apoiar .. Esta é uma forma de overclocking, pelo que deve ter cuidado.  Tente pesquisar alguns fóruns para o seu tipo de memória e de fabricante para ver o que pode fazer.

RAS para CAS Delay - determina a quantidade de tempo entre a leitura / escrita, as operações em uma coluna. Uma configuração menor torna ir mais rápido, mas prestar atenção ao mudar-lo; se seus módulos de memória não apoiá-lo, você pode acabar em um sistema travar.

RAS Precharge Time - o número de ciclos a RAM requer entre DRAM refresca. Que faz baixar o sistema de memória ir mais rápido, mas aumenta o risco de instabilidade. Certifique-se de que seu sistema é estável depois de fazer qualquer modificação deste tipo.

SDRAM Precharge Controle - introduz alterações no mecanismo de gestão da precharging vezes para a SDRAM. O padrão é desabilitado.  Ao permitir que poderia ir ambos os sentidos: tornar o sistema mais rápido ou lento que estabelece o mesmo acontece com alguns testes depois de fazer qualquer alteração.

System BIOS Shadow - Cópias do BIOS memória em memória do sistema, resultando um acesso mais rápido tempo de acesso. O resultado é um boot mais rápido e mais rápido o sistema global.

Sistema BIOS Cacheable - Permite o sistema de cache do BIOS de cache L2 quando necessário, acelerar a execução BIOS mais do que a definição anterior. Tente configurar esse sistema BIOS e sombra para um máximo desempenho. Será que após alguns benchmarks fazendo isso para ver como reage o seu sistema.

Por favor, tome muito cuidado ao ser alertados de que estas definições podem prejudicar o seu computador.

Read More..