Small business analyst Laurie McCabe shares her thoughts and insight on the 2010 Small Business Technology Summit that recently took place in New York City.
Des chercheurs de Google revoient en profondeur les fondements de SSL
Pour rendre le processus de certification plus transparent et plus sûr
Des chercheurs de Google veulent remanier en profondeur les fondations des infrastructures de certifications SSL. En proposant une meilleure transparence, ils espèrent rendre le processus plus sûr et éviter…
Understanding the total cost of ownership as it applies to technology will help you make better buying decisions for your company and save you time, money and aggravation. Analyst Laurie McCabe explains what you need to know about TCO.
Understanding the total cost of ownership as it applies to technology will help you make better buying decisions for your company and save you time, money and aggravation. Analyst Laurie McCabe explains what you need to know about TCO.
Need specialized small business software but worried it won't work with your QuickBooks, Salesforce or other business platform? Laurie McCabe explains the benefits of app stores.
Social networking is a crucial part of small business marketing, but managing all the different sites and communities can be overwhelming. Laurie McCabe explains how social media management can tame the beast.
Social networking is a crucial part of small business marketing, but managing all the different sites and communities can be overwhelming. Laurie McCabe explains how social media management can tame the beast.
Laurie McCabe offers up strategies and tips and resources — suitable for any small business — that are good for the environment and good for the bottom line, too.
I'm trying to embed a mapquest direction page such as http://www.mapquest.com/maps?1c=Ann+Arbor&1s=MI&1a=1440+Hubbard+St&1z=48109-2083&1y=US&1l=42.293437&1g=-83.724491&1v=ADDRESS&2c=Ann+Arbor&2s=MI&2a=930+N+University+Ave&2z=48109-1055&2y=US&2l=42.278558&2g=-83.737969&2v=ADDRESS using an…
I working with the latest draft of the twitter annotations api. An example bit of data looks like
status {
annotations : [
{myAnnotationType:{myKey:myValue}},
{someoneElsesAnnotationType:{theirKey:theirValue}},
]
}
now i want to check a status to see if it has an annotation with myAnnotationType in it. If…
I recently gave a presentation on Prism at the Ann Arbor .Net Users Group. I have made my slides and demo available for download: Slides Demo Some interesting links associated with prism: Composite Application Guidance Composite Application Library Codeplex Site Great 4-part video series Another video…
IBM lancera sa suite bureautique Cloud
LotusLive Symphony pour contrer Google, Microsoft et Oracle
Jusqu'ici, IBM proposait plusieurs outils professionnels en mode hébergé (partage de fichiers, messagerie instantanée et vidéo-conférence, mails, etc.) avec LotusLive. Mais le numéro 2 mondial du logiciel ne proposait pas de suite…
I have an Artificial Networks which needs to recognize 130 different types of moves encoded in terms of 1s and 0s. Therefore the number of outputs I used is 8 so that all my patterns could be distinguished. However, by using 8 outputs, the different types of patterns possible is 256, leaving me with 126 different types of patterns…
Neural Networks
· I recently read a book Introduction to Neural Networks for C# , by Jeff Heaton. http://www.amazon.com/Introduction-Neural-Networks-C-2nd/dp/1604390093/ref=sr_1_2?ie=UTF8&s=books&qid=1296821004&sr=8-2-spell. Not the 1st ANN book I've perused, but a nice revision.…
I am trying to develop a very simple templated custom server control that resembles GridView. Basically, I want the control to be added in the .aspx page like this:
<cc:SimpleGrid ID="SimpleGrid1" runat="server">
<TemplatedColumn>ID: <%# Eval("ID") %></ TemplatedColumn>
…
Gartner 2011 Worldwide RDBMS Market Share Reports 48.8% revenue share for Oracle (*)
Gartner has published their market share numbers for 2011 based on total software revenues.
According to Gartner, Oracle:
is #1 in worldwide RDBMS software revenue share
holds more revenue share than its…
Last week was Oracle OpenWorld, and for those of you not in tech or downtown San Francisco, that might not mean a whole lot. However, if you are familiar with it, Oracle OpenWorld is our premier customer event. This year, more than 50,000 people attended. It's not a good week to visit San…
The Oracle VIP Reception at the Oracle Retail Week Awards last week saw retail luminaries from around the UK and Europe gather to have a drink and celebrate the successes of retail in the last year. Guests included Lord Harris of Peckham, Tesco's Philip Clarke, Vanessa Gold from Ann Summers, former Retail…
Fluent.NET est un framework Open Source proposant une surcouche des API .NET sous la forme d'interfaces fluentes. Le proc?d? s'appuie sur les extensions de m?thodes et facilite la lecture de code : "English speakers read from left to right, not from the outside in. So why are we writing code that way?…
Next Saturday March 13th Ann Arbor, MI will be hosting SharePoint Saturday Michigan (SPSMI). For those unfamiliar, SharePoint Saturday is a community driven event where various regional and national speakers gather to present at a FREE conference on all topics related to SharePoint. This…
La communaut? .NET France contient presque 500 membres, quelques mois apr?s son annonce sur DotNetGuru. Aujourd'hui, Laurent Capin propose de r?unir les diff?rents visages lors des prochains TechDays : "Nous sommes nombreux ? penser faire un passage aux Techdays. Apr?s tout c'est un peu "l'?v?nement…
Applications User Experience members (Erika Web, Laurie Pattison, and I) attended the User Assistance Europe Conference in Stockholm, Sweden. We were impressed with the thought leadership and practical application of ideas in Anne Gentle's keynote address "Social Web Strategies for Documentation".…
Applications User Experience members (Erika Webb, Laurie Pattison, and I) attended the User Assistance Europe Conference in Stockholm, Sweden. We were impressed with the thought leadership and practical application of ideas in Anne Gentle's keynote address "Social Web Strategies for…
Hi, I'm a newbie to the world of ANN. I'm aware of the Gradient Desecent Rule and the Backpropagation Theorem. What I don't get is , when is using a bias important?
For example, when mapping the AND function, when i use 2 inputs and 1 output, it does not give the correct weights,…
In sql server, we can issue sql to get data like
select * from table where column like '%myword%'
select * from person where Soundex(LastName) = Soundex('Ann')
what's the linq query to match above sql?