Questions tagged [knowledge-management]

Knowledge Management treats information as an asset, often in a commercial and organizational context.

Knowledge Management treats information as an asset, and seeks to identify, capture, evaluate, retrieve, share and generally make use of that asset. Knowledge Management is typically (though not necessarily) viewed in a commercial and organizational context. It prompts disciplined inquiry into documents, procedures, databases, and personal human expertise, experience and perception.

83 questions
6
votes
10 answers

How do you keep the state information of the projects you're working on?

Let me clear what is state information of a project: Any information that have to remembered or written and then retrieved when one resume its work on a project (for example, on the next morning when arrives at work, or at the evening when start to…
Singulus
  • 1,958
  • 2
  • 16
  • 16
6
votes
2 answers

How do you usually take notes for reading source code of a big software

For big software, take notes is useful for understanding the big picture. How you take notes? With pen/paper, or just a notepad; and what you usually will write for note?
Sam Liao
  • 43,637
  • 15
  • 53
  • 61
5
votes
2 answers

How do I define relation properties in OWL?

In my ontology I have individuals "pic Joan" which is an instance of concept "mountain" and "port Cerbère" which is an instance of concept "village". I have the relation "dominates" going from "pic Joan" to "port Cerbère" (in the sense that the…
yannis
  • 819
  • 1
  • 9
  • 26
4
votes
2 answers

Limits to expressibility in Cyc, or similar knowledge-base projects?

What are the limits to expressibility, in Cyc or similar knowledge-base projects. Are there certain concepts that can't be expressed? Is there any project that can express any concept? I don't understand Cyc's syntax yet, but here is one example: …
user213265
4
votes
13 answers

General Development Notes

During a typical day programming, I implement functions in a way that I would like to remember. For instance, say I tuned a DB insert function that, when I come across the situation again, I want to find what I did to resuse. I need a place to keep…
bmw0128
  • 1,625
  • 6
  • 25
  • 31
4
votes
17 answers

Notekeeping tool that doesn't lock you in

We all know that having a good note taking tool is important as a developer. However, OneNote and Evernote forces us to be locked in to a particular vendor. Anyone know of good open-source tools, or even other method of taking notes w/o being…
moogs
  • 8,122
  • 8
  • 44
  • 60
4
votes
4 answers

Recommend a note taking wiki-like "super" application

I need a note taking wiki-like "super" application. I'll start with a rundown of applications that I've already evaluated and/or used: Wikidpad Pros: fast switching between the edit and view modes; nice syntax (especially for pasting code…
Singulus
  • 1,958
  • 2
  • 16
  • 16
4
votes
2 answers

8-puzzle has a solution in prolog using manhattan distance

The 8-puzzle will be represented by a 3x3 list of lists positions where the empty box will be represented by the value 9, as shown below: [[9,1,3],[5,2,6],[4,7,8]] Possibility Solution: Only half of the initial positions of the 8-puzzle are…
franvergara66
  • 10,524
  • 20
  • 59
  • 101
3
votes
2 answers

Making my artificial intelligence project known? AI communities?

I'm working on an artificial intelligence project, right now I am working on the subgoal of total "knowledge-representation". Expressing anything a human can express, basically. I want to share my vision for the way to create artificial…
Theo
  • 299
  • 2
  • 9
3
votes
6 answers

Programmers knowledge base web-based software?

I'm looking for some software (preferrably written in php or ruby) to maintain my own knowledge base. The reason why I don't think wiki-like systems are suitable for this purpose is they don't have strict categorization (manually create categories,…
Daniel
  • 4,272
  • 8
  • 35
  • 48
3
votes
1 answer

Is there a way to build my own vim knowledge base like the help system

For example: :Kb js or :Kb javascript will lead me to my own javascript page
barak
  • 869
  • 1
  • 11
  • 15
2
votes
3 answers

Looking for knowledge base integrated with bug tracker in python

Ok, I am not sure I want to use Request Tracker and RTFM, which is a possible solution. I'd like to have a knowledge base with my bug tracker/todo list , so that when I solve a problem, I would have a record of its resolution for myself or others…
chiggsy
  • 8,153
  • 5
  • 33
  • 43
2
votes
3 answers

Anything wiki-like for Plone4

I'm trying to figure out a way to make a document management/knowledge management portal using Plone4. We really like idea of having a Wiki as a section of our site or, better yet, as a type of document in every space but with wiki-style linking and…
2
votes
2 answers

Document management using Plone4

I'm interested in making a document management system from Plone 4. I need pointers to a way to integrate FlexPaper and a way for asynchroneous document transformation using existing tools like SWFTools, Ghostscript, ImageMagick, Batik etc.. Thank…
2
votes
1 answer

Conflict resolution strategy: What's the difference between size ordering/ data ordering/ least recently used rule?

What's the difference between size ordering/ data ordering/ least recently used rule? I did lots of researches already, and most of the books say: Data ordering: Arrange all possible assertions in one long prioritized list. Use the triggered rule…