"I" before "E" except after "C" and sounding like "A" as in neighbor and weigh.
What are some exceptions to this?
The two I came up with are atheist and weird.
What are some exceptions to the "i" before "e" rule?
The 'i before e, EXCEPT AFTER C' rule only applies for the sound of 'ee' after 'c' like receive, ceiling, conceit. There are three exceptions (when not after 'c'): seize, weird, counterfeit.
Actually there are very few words spelt with 'ie' giving the 'ee' sound. belief, believe, niece, relieve, relief, chief and a few others.
Other words like 'weigh, height, neighbour, their' don't have the sound of 'ee'.
.
Reply:RECEIVE
DECEIVE
CONCEIVE
Reply:There are numerous exceptions:
beige, cleidoic, codeine, conscience, deify, deity, deign, dreidel, eider, eight, either, feign, feint, feisty, foreign, forfeit, freight, gleization, gneiss, greige, greisen, heifer, heigh-ho, height, heinous, heir, heist, leitmotiv, neigh, neighbor, neither, peignoir, prescient, rein, science, seiche, seidel, seine, seismic, seize, sheik, society, sovereign, surfeit, teiid, veil, vein, weight, weir, weird, caffeine, casein, codeine, deil (Scots, devil), disseize,
either, geisha, inveigle, keister (slang, buttocks), keister, leisure, monteith, neither, obeisance, phenolphthalein, phthalein, protein, seize, seizin, sheik, sheila (Australian slang for "girl", not capitalized), specie, species, teiid, etc.
Check these links.
Reply:* beige
* feint
* feisty
* foreign
* forfeit
* heifer
* height
* heir
* heist
* neighbor
* reign
* rein
* seismometer
* their
* veil
* vein
* weigh (weight)
Reply:their
Sunday, August 2, 2009
A text file has suddenly appeared on my desktop - can I delete it?
The file is called hs_err_pid2731 - Notepad
It starts...
An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x7C931C6B
Function name=RtlImageRvaToVa
Library=C:\WINDOWS\system32\ntdll.dll
Wierd! But can I delete this without it messing up my PC?!
A text file has suddenly appeared on my desktop - can I delete it?
yes it is wierd.
But it's only a text document so it will not affect your computer to delete it.
Reply:it sounds like a logfile, you cant understand it so delete it
if you cant use this
http://ccollomb.free.fr/unlocker/
it will unlock it for ya
It starts...
An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x7C931C6B
Function name=RtlImageRvaToVa
Library=C:\WINDOWS\system32\ntdll.dll
Wierd! But can I delete this without it messing up my PC?!
A text file has suddenly appeared on my desktop - can I delete it?
yes it is wierd.
But it's only a text document so it will not affect your computer to delete it.
Reply:it sounds like a logfile, you cant understand it so delete it
if you cant use this
http://ccollomb.free.fr/unlocker/
it will unlock it for ya
The browser closes abruptly and leaves an error log on your desktop.?
An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x3559558 Function=[Unknown.] Library=C:\WINDOWS\System32\YPCLSP.dll
CAUSE
This is caused by an error inside the YPCLSP.dll file. The YPCLSP.dll is a dynamic program library file that is part of the Yahoo! software package. This library is responsible for the Yahoo! parental controls. how do i fix it. step by step plz.
The browser closes abruptly and leaves an error log on your desktop.?
Disable the Parental Controls and delete the unypc.exe
Reply:Try removing all Yahoo software packages on your machine and trying your browser. See if anything changes.
If you find the system works, attempt to reinstall the software you used before.
Regardless a library(DLL) needed by some Yahoo software on your computer is pooping a brick when it tries to access it. Almost sounds like a permissions issue.
surveys
CAUSE
This is caused by an error inside the YPCLSP.dll file. The YPCLSP.dll is a dynamic program library file that is part of the Yahoo! software package. This library is responsible for the Yahoo! parental controls. how do i fix it. step by step plz.
The browser closes abruptly and leaves an error log on your desktop.?
Disable the Parental Controls and delete the unypc.exe
Reply:Try removing all Yahoo software packages on your machine and trying your browser. See if anything changes.
If you find the system works, attempt to reinstall the software you used before.
Regardless a library(DLL) needed by some Yahoo software on your computer is pooping a brick when it tries to access it. Almost sounds like a permissions issue.
surveys
Help Please GUI Java Program Random Letter or Number Guessing Game. Based on what the user enteres first.?
I'm trying to write a GUI Java guessing game with the user. The user enters a number between 1-10 OR letters between A-K (uppercase). The user is suppose to have a choice, This program is suppose to generate a random number in the same range OR a letter to compare to the user’s input and declare whether you have matched each other or not.
This is my code but It doesn't work, can someone please show me.
import java.io.*;
import java.util.Random;
public class Guess2{
public static void main (String[]args) throws Exception{
int randomValue;
String ch;
String guessValue1;
int guessValue2;
String c;
BufferedReader BR;
BR= new BufferedReader(new InputStreamReader(System.in));
//for(int i = 0; i %26lt; 10; i++){
while(true){
randomValue = (int)(Math.random() * 10)+1 ;
ch = String("ABCDEFGHIJK").charAt(randomValue...
System.out.println("The random value is "+randomValue);
//}
System.out.print("Please Guess The Value : ");
guessValue1= BR.readLine();
no more space
Help Please GUI Java Program Random Letter or Number Guessing Game. Based on what the user enteres first.?
Your code looks... quite funky. lol
1. Isn't this suppose to be a GUI program?
2. You imported the Random class, yet you aren't using it.
i. If I'm correct, you can specify a range of possible values when using random.
ii. You can then convert the integer, ASCII value to a character or vice versa to do a comparison.
The amount of code required should be minimal.
1. Prompt for input
2. Check that the input falls within 1-10, or A-K
3. Once you know where it falls, randomly pic a value in that range (specify range to random object created from the Random class)
4. Cast randomly selected value to char and compare to input
You don't need to use the Math class.
Reply:LA
This is my code but It doesn't work, can someone please show me.
import java.io.*;
import java.util.Random;
public class Guess2{
public static void main (String[]args) throws Exception{
int randomValue;
String ch;
String guessValue1;
int guessValue2;
String c;
BufferedReader BR;
BR= new BufferedReader(new InputStreamReader(System.in));
//for(int i = 0; i %26lt; 10; i++){
while(true){
randomValue = (int)(Math.random() * 10)+1 ;
ch = String("ABCDEFGHIJK").charAt(randomValue...
System.out.println("The random value is "+randomValue);
//}
System.out.print("Please Guess The Value : ");
guessValue1= BR.readLine();
no more space
Help Please GUI Java Program Random Letter or Number Guessing Game. Based on what the user enteres first.?
Your code looks... quite funky. lol
1. Isn't this suppose to be a GUI program?
2. You imported the Random class, yet you aren't using it.
i. If I'm correct, you can specify a range of possible values when using random.
ii. You can then convert the integer, ASCII value to a character or vice versa to do a comparison.
The amount of code required should be minimal.
1. Prompt for input
2. Check that the input falls within 1-10, or A-K
3. Once you know where it falls, randomly pic a value in that range (specify range to random object created from the Random class)
4. Cast randomly selected value to char and compare to input
You don't need to use the Math class.
Reply:LA
Chances of getting into college?
This is hypothetical.
I have a 3.5 GPA. I have a 2100 SAT and 30 ACT. I've been on the boys' volleyball team for 4 years, captain senior year and won championship. I have participated in the track and field team all 4 years. I have taken all honors freshman and sophomore (exception of science), and all AP junior and senior (exception of science). In those classes I have never gotten a C, and have maintained As and Bs in all the honors and AP classes. I have participated in the school musical every year, and have done two acting classes freshman and sophomore. Sophomore, Junior, and Senior I have participated in film making classes. Some of my films have been entered into festivals, etc. and won awards.
What are the chances of me getting into a good college? Examples?
What colleges can I possibly be accepted to, even though the chances are slim?
Chances of getting into college?
It'll be really hard for you to get into Ivy League because of the lack of AP classes in science. Your GPA is bit too low, but otherwise, you would have a decent chance at UC Berkeley or UCLA. You'll get into rest of the UC's. All this could change if you are an under represented minority.
Reply:pretty freakin good
get some sleep, you have nothing to worry bout :)
Reply:How is this hypothetical?
Well you have a pretty good chance of getting into a decent college but ivy leagues and top 10 schools are out of the picture.
I will use CA as a example. You wont get into Stanford, UCB, UCLA, but you can probably get into UC Irvine, UC River, UCSB. The middle muddle schools. You will get into any State school in CA as well.
Reply:no chances FOREVER
I have a 3.5 GPA. I have a 2100 SAT and 30 ACT. I've been on the boys' volleyball team for 4 years, captain senior year and won championship. I have participated in the track and field team all 4 years. I have taken all honors freshman and sophomore (exception of science), and all AP junior and senior (exception of science). In those classes I have never gotten a C, and have maintained As and Bs in all the honors and AP classes. I have participated in the school musical every year, and have done two acting classes freshman and sophomore. Sophomore, Junior, and Senior I have participated in film making classes. Some of my films have been entered into festivals, etc. and won awards.
What are the chances of me getting into a good college? Examples?
What colleges can I possibly be accepted to, even though the chances are slim?
Chances of getting into college?
It'll be really hard for you to get into Ivy League because of the lack of AP classes in science. Your GPA is bit too low, but otherwise, you would have a decent chance at UC Berkeley or UCLA. You'll get into rest of the UC's. All this could change if you are an under represented minority.
Reply:pretty freakin good
get some sleep, you have nothing to worry bout :)
Reply:How is this hypothetical?
Well you have a pretty good chance of getting into a decent college but ivy leagues and top 10 schools are out of the picture.
I will use CA as a example. You wont get into Stanford, UCB, UCLA, but you can probably get into UC Irvine, UC River, UCSB. The middle muddle schools. You will get into any State school in CA as well.
Reply:no chances FOREVER
Restricting by IP address with firewall in local network?
We've got a few computers in one room connected to a switch which goes to the rest of the network and then out to the internet. I want to be able to allow these 4 computers in the sub-network (is this the correct term?) to be able to do simple file and printer sharing without the rest of the network to access them or use those files/printers. We are using PC-cillin for our firewall. I know how to get to the page to set up exceptions for the firewall and I've had a wee bit of experience setting this up in Zone Alarm but I have a more general question. If I allow Computer A with IP address 10.1.6.32 as an exception on Computer B and then A gets shut down and Computer C on the network gets assigned A's IP address, would C then be able to have access to the same resources on B as A did? Is there a better way to set this up? None of the computers need to access any other computers on the network. They just need the internet access that the main router is giving them.
Restricting by IP address with firewall in local network?
The easy way is to replace the switch with a router. Use the router to create a NEW subnet
Say your original network uses addresses in the 192.168.0.xxx range. Set the router to create IP address in the 192.168.1.xxx range. Now the computers in the room are isolated from the outside network. The other computers will not be able to access the new subnet without you setting up tunnels in the router.
The computers will still be able to access the internet. The routers will be transparent.
Restricting by IP address with firewall in local network?
The easy way is to replace the switch with a router. Use the router to create a NEW subnet
Say your original network uses addresses in the 192.168.0.xxx range. Set the router to create IP address in the 192.168.1.xxx range. Now the computers in the room are isolated from the outside network. The other computers will not be able to access the new subnet without you setting up tunnels in the router.
The computers will still be able to access the internet. The routers will be transparent.
Can anybody explain this to me. It came up om my pc with a long list and I have no idea what it is.?
An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x60014E4
Function=[Unknown.]
Library=C:\Program Files\Java\j2re1.4.2_03\bin\jsound.dll
NOTE: We are unable to locate the function name symbol for the error
just occurred. Please refer to release documentation for possible
reason and solutions.
Current Java thread:
at com.sun.media.sound.MixerThread.runNativ... Method)
at com.sun.media.sound.MixerThread.run(Unkn... Source)
Can anybody explain this to me. It came up om my pc with a long list and I have no idea what it is.?
Since this is a Java error, try a reinstallation of Java.
Go to java.com to get it.
survey monkey
Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x60014E4
Function=[Unknown.]
Library=C:\Program Files\Java\j2re1.4.2_03\bin\jsound.dll
NOTE: We are unable to locate the function name symbol for the error
just occurred. Please refer to release documentation for possible
reason and solutions.
Current Java thread:
at com.sun.media.sound.MixerThread.runNativ... Method)
at com.sun.media.sound.MixerThread.run(Unkn... Source)
Can anybody explain this to me. It came up om my pc with a long list and I have no idea what it is.?
Since this is a Java error, try a reinstallation of Java.
Go to java.com to get it.
survey monkey
Subscribe to:
Posts (Atom)