|
What are good support forums and blogs related to Goldmine CRM?
Started by Michael Rosario on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Here are three blogs:
http://www.castellcomputers.com/index.php
http://wizard-systems.typepad.com/goldmine/
http://www.thegoldmineblog.com/.
Tek-Tips
Been a while since I supported Goldmine, but it was my favorite CRM .
|
|
What networking related blogs/wiki/forums do you find valuable to read/follow/subscribe on a daily or regular basis?
Started by radius on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
NetworkWorld News and specific columns SecurityFocus ) Blog: Symantec Security....
Here is the english one I follow (cisco tips as I have some news sites along with my blog list.
Glen's Exchange Dev Blog is a great MS exchange blog.
|
|
There are tons of programming related blogs around the Internet, but I'm looking for resources that focus on embedded systems software and naturally also hardware things.
What blogs, podcasts, newsletters, web sites etc. do you read to learn new things...
Started by Purple Tentacle on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Bruce Eitman's blog about Windows CE related subjects is an excellent Linux training materials and blog
Jack Ganssle - The Embedded Muse newsletter and articles
Andrew "bunnie" Huang - bunnie:studios....
I subscribe to hackaday.com.
|
Ask your Facebook Friends
|
I decided to start my blog recently. Anyway I put it on blogger.com and was looking at the widgets you can add. There are some 100k+ of them.
By the way, I tried to add the StackOverflow search widget and it complained it was broken.
Anyway, I'm after...
Started by cletus on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://www.gotapi.com/widgets/index.html
Syntax Highlighter -- Support for pretty much every language you might wish to post snippets of. .
|
|
I want to display a list of related blog posts and I want the list to be ordered by the number of common tags they have to the current post. Each post can have multiple tags associated to it. Here is my table structure:
[Posts] <-- [posts-to-tags-joining...
Started by Matthew James Taylor on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Sure you can do it in one query:
SELECT postid, count(tagid) as common_tag_count FROM posts_to_tags WHERE tagid IN (SELECT tagid FROM posts_to_tags WHERE postid = 2) GROUP BY postid ORDER BY common_tag_count DESC;
What about...:
SELECT COUNT(*) AS numcommon... .
|
|
I know this is a gimme question, but I genuinely would like to add more sysadmin related feeds to my reader, so please list the contents of your feedreader.
Started by Tom Ritter on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at serverfault):
Blog spam, spam rings://ha.ckers.org/blog/ - More configuration type posts, but also talks about large-scale deployment of security that, numbers relating to the....
Blackhat SEO
http://contempt.me/ - Totally a jerk, possibly illegal.
|
|
There are lots of great resources available on the Internet for learning more about programming and improving your skills. Blogs are one of the best, IMO. There's a wealth of knowledge and experience, much of it covering topics not often found in traditional...
Started by Christopher Cashell on
, 97 posts
by 77 people.
Answer Snippets (Read the full thread at stackoverflow):
Personally I consider it a plus that most of the blog's concrete coding related posts are Java specific Bray's Ongoing
Mitchel Sellers DNN Blog
Here's a few from my list: - Coding Horror - Hackety - John ComputerZen.com
Just ....
|
|
Does anyone know any authoritative online sources on computer vision. I am mainly interested in blogs or places where an open discussion is feasible, with a tendency towards academic computer vision research rather than technical resources (like the opencv...
Started by liza on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://ngs.ics.uci.edu/blog.
My new blog:
http://computerblindness.blogspot.com UPD2.
As well.
|
|
I googled but didn't find any, anyone kindly tell me some?
Answer Snippets (Read the full thread at superuser):
Aside from the StackOverflow feeds ? (Not really a blog but it would work) :o) It also may.
|
|
Hi all, image this two tables:
Table: Item Columns: ItemID, Title Table: Tag Columns: TagID, ItemID, Title
Which is the best way (without changing table structure (yes, I don't mind if they are not normalized)) to retrieve a list of items with all their...
Started by EndelWar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Is that what you are after?
SELECT It.ItemID, It.Title [ItemTitle], Tg.TagID, Tg.Title [TagTitle] FROM Item It LEFT OUTER JOIN Tag Tg ON It.ItemID = Tg.ItemID
I'm not entirely sure what you're after, but does this help?
select... .
Here's a simple outer join.
|