Jump to content

Daquaney

Member
  • Posts

    23
  • Joined

  • Last visited

Awards

This user doesn't have any awards

About Daquaney

  • Birthday December 17

Profile Information

  • Gender
    Male
  • Location
    Kelowna
  • Interests
    Anything really.

System

  • CPU
    AMD FX 6600
  • RAM
    HyperX Fury 4GB
  • GPU
    GTX 950
  • Storage
    Samsung 850 EVO 120GB
  • Keyboard
    Logitech G105
  • Mouse
    Logitech G402

Recent Profile Visitors

721 profile views

Daquaney's Achievements

  1. So I found this program for C# online and started heavily modifying the commands and functions. Side note I only started coding C# because of this program so I am fairly new. I originally had it setup so that you click a mic button and the speech recognition engine started recognizing, but now I want to be able to say a simple voice command, in this case, I would say "Athena" and the engine would start recognising my command, but it's not working at all and I have no idea why. private void loadGrammarAndCommands() { try { Choices texts = new Choices(); texts.Add("athena"); string[] lines = File.ReadAllLines(Environment.CurrentDirectory + "\\commands.txt"); foreach (string line in lines) { if (line.StartsWith("--") || line == String.Empty) continue; var parts = line.Split(new char[] { '|' }); words.Add(new Word() { Text = parts[0], AttachedText = parts[1], IsShellCommand = (parts[2] == "true") }); texts.Add(parts[0]); } Grammar wordsList = new Grammar(new GrammarBuilder(texts)); speechRecognitionEngine.LoadGrammar(wordsList); DictationGrammar dict = new DictationGrammar(); speechRecognitionEngine.LoadGrammar(dict); } catch (Exception ex) { throw ex; } } private string getKnownTextOrExecute(string command) { InitializeComponent(); if (!command.StartsWith("athena ")) return ""; else speechSynthesizer.SpeakAsync("Yes?"); command = command.Replace("athena ", ""); try { var cmd = words.Where(c => c.Text == command).First(); if (cmd.IsShellCommand) { At this point, I have it so that if it recognizes me saying "Athena" it starts accepting commands, at the moment it says yes but in the future I want it to make a sound (Already know how to) I have the word "Athena" pre built into its vocabulary.
  2. I think im going with the i5 build, the only problem is that the motherboard dose not ship to Kelowna. Can you find another 1155 for close to the same price that ships to canada?
  3. so far the i3 is cheaper as shpping is a lot lower
  4. Thanks a lot I am going to do a bit more digging around but I think this is what I'll go for.
  5. yes, but you are in a way larger city than mine. We have about 100,000 people you have around 1 million.
  6. there is only 10 listings on parts and all are monitors.
  7. I only have it as a second computer and for it to run games for guests such as csgo, rocket league, and maybe even a moba. (it runs these already, just slow)
  8. I already have DDR3 ram and am just looking for a Motherboard and CPU.
  9. So I have a potato that has an old CPU and motherboard that's AM2 and DDR2 and looking for something better for $100 Canadian, have a R7 250 GPU in it and it is getting bottlenecked like crazy, so I need to upgrade. P.S I know putting a better GPU in the PC does not make it faster, It was the only spare GPU I had laying around to put in.
  10. No, I mow lawns, deliver newspapers, and hand out flyers for money, usually get 60$ per month.
  11. I didn't clue in to look at Newegg didn't think of it at the time, and if I were to buy the parts off of BestBuy I would not have been able to buy some certain parts like the CPU and Motherboard, otherwise, the GPU would be $229.95 and the RAM would be $94.99 Ram being on sale. And yes I could have bought it off of NCIX
×