|
+5 just for getting the drink right.
|
|
|
|
|
Still one of my favourite beers, there's a cold one in the fridge for supper
It goes down very well with Tarka masala - which is like Tikka Masala except it's 'Otter - boom boom!
“That which can be asserted without evidence, can be dismissed without evidence.”
― Christopher Hitchens
modified 26-Aug-14 10:47am.
|
|
|
|
|
Pete O'Hanlon wrote: I'm speaking Danish which has a similar phrase.
A few more, via Google translate, mostly Norwegian:
English | Geordie | Norwgeian |
---|
Jumper | Ganzie | Gensere | Baby | Bairn | Barn | Stool* | Cracket | Krakk | Flea | Lop | Loppe | Go | Gan | gå | Pig | Gissie | Gris | Cloth | Cloot | Klut | Cow | Coo | Ku | Sparrow | Spuggie | Spurv |
I rmember Melvyn Bragg (in "The Adventure of English"? ) going on about parts of the Cumbrian dialect being mutually intelligible with modern Norwegian.
* as in foot- not -sample, for those unluck enough to be born outside the people's republic.
Alberto Brandolini: The amount of energy necessary to refute bullshit is an order of magnitude bigger than to produce it.
|
|
|
|
|
Eddie Izzard did a program fro Discovery a few years ago called "Mongrel Nation" where he had an intelligible conversation with a Frisian farmer from Nothern Netherlands
=========================================================
I'm an optoholic - my glass is always half full of vodka.
=========================================================
|
|
|
|
|
Your best bet would be to start up approx. 250 processes - one for each language and pass the audio input to each one in parallel. After a set time, any that haven't recognised the language should shut down - eventually you will get to your required language.
|
|
|
|
|
Or, he'll get to several possible matches or, none.
|
|
|
|
|
Yes - but these too are valid.
What I'm trying to hint at is that this is a parallelisable problem...
|
|
|
|
|
Given his stated aim that the app will work with only one language, then returning multiple potential positives fails to satisfy the request.
|
|
|
|
|
In that case I guess loading a set of very likely words or phrases and waiting for them should work?
"My voice is my passport, identify me" should work
|
|
|
|
|
|
Ditto 
|
|
|
|
|
frech87 wrote: How to teach this application to detect the language?
Your question is too open ended. If you want to recognize all Armenian speakers and exclude every other possible language spoken in the world then as stated it is impossible. Probably be impossible even if the technology was up to it because there would be no way to test it.
Conversely if you want it to recognize Armenian when you speak it and maybe two friends and then be able to exclude French that you or someone else speaks and you limit it to some test phrases then it is a much more reasonable task and one that is quite doable.
Basic steps for the last
- Learn how to take audio samples (coding problem)
- Learn some basics of language phonics. This is not a coding problem and although a bit esoteric their are people who study it and post their findings.
- Learn how to capture the phonics from your audio samples.
- Put the above two together to differentiate a sample of Armenian from a sample of French.
AFTER you have done the above then you would have enough knowledge to make a stab at adding a teaching part to the application.
|
|
|
|
|
I am using AlternateViews to send plain text and html emails. I've found that if I add the HTML view first, then when sending the email as a SMS message, it doesn't pick up the plain text view. If I add the plain text view first, then the SMS message appears correct.
All I would like to know is if the order of adding the AlternateViews to the MailMessage object matters if you are sending an email as a SMS message? I can't find anything online that suggests it would so I am still looking for some confirmation.
Thanks,
Greg
modified 28-Nov-21 21:01pm.
|
|
|
|
|
Ummm...emails have nothing to do with SMS at all. SMS doesn't support "Alternate views" like an actual email client app would.
When you send an "email" to a phone, you're sending it to a Email to SMS gateway that translates the body text into a SMS message and sends that. I haven't heard of a single gateway that supports "alternate views" let alone HTML.
|
|
|
|
|
So, maybe I wasn't clear. When you send an email to an address like 8001234567@vtext.com, it appears as a text message on that mobile device. That is what I meant. In order to do that, you have create a plain text view and attach it to the MailMessage object so that the phone knows how to interpret the message. Each phone carrier has an email address that you can send an email to by using the phone number and the domain specifically assigned to that carrier. vtext.com is specific to Verizon.
modified 28-Nov-21 21:01pm.
|
|
|
|
|
Yes, that's what I was talking about. "vtext.com" is the email-to-SMS gateway which does not support alternate views.
|
|
|
|
|
Then why does it work? I guess it just grabs the first view and ignores the rest.
modified 28-Nov-21 21:01pm.
|
|
|
|
|
I didn't say it doesn't send an email. I said that alternate views are not supported. So whatever you have in the "primary view" is what get's sent to the SMS.
|
|
|
|
|
I wanted to get all record from indexes having date in given range. but getting zero return values.
my code is as given below :
document file structure :
public class SearchDocs
{
public int Id { get; set; }
public long date { get; set; }
public string Description { get; set; }
}
i just wanted to provide date as 1900/01/01 to 1920/01/01 & get the records from indexes.
|
|
|
|
|
From a db? Where is that code?
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Amol Parsewar wrote: my code is as given below : That's a class. According to my first Google-results, you'll need a bit more to do a search.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
Hi,
I am using the following code to lop through contracts and send email to concern people. Same contract will have multiple people like a hardware contract should have IT and purchase emails in it. I am able to get the emails but the problem if there are two emails in the contract (john & smith) it will send two emails to john and two emails to smith.
John will receive the email saying Dear John and anther email saying Dear Smith.. similarly with Smith!
here is my code:
while (sql_reader.Read())
{
contract_id = Convert.ToInt32(sql_reader["contract_id"]);
mail.To.Add(sql_reader["reminder_email"].ToString());
mail.Subject = sql_reader["contract_name"].ToString();
mail.Body = email_body.ToString();
SmtpServer.Port = 587;
SmtpServer.Credentials = new System.Net.NetworkCredential("it@mydomain.com", "mypassword");
SmtpServer.EnableSsl = true;
SmtpServer.Send(mail);
}
Technology News @ www.JassimRahma.com
|
|
|
|
|
So keep a list of email addresses you have already sent to, and check it before sending.
You looking for sympathy?
You'll find it in the dictionary, between sympathomimetic and sympatric
(Page 1788, if it helps)
|
|
|
|
|
In your SQL, sort by the email address and then keep a flag to see if the email your processing is the same as the last and if so don't send the email.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
You're reusing the same "mail" (MailMessage) object in your loop.
You should use a new MailMessage object for each recipient ("To") ... or at least clear the "To" collection before adding a recipient and sending.
|
|
|
|