active questions tagged notes - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T16:27:32Zhttp://stackoverflow.com/feeds/tag/noteshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer409What do you use to keep notes as a developer?Mike Duncan2008-09-17T00:54:45Z2009-12-04T11:29:24Z
<p>Where, as a developer, do you like to keep your code snippets, links, checklists, final solutions to problems etc? </p>
<p>I've fooled with Google Notebook, MS Onenote, TreePad, textfiles, and Evernote a bit (currently leaning toward Evernote). All have pros and cons but none seem to be really suited to developers. Is anyone super-happy with a collection / note system that's not just generic GTD, but with developer-centric utility?</p>
<p><strong>Note</strong>: before posting an answer, check if your note-keeping method is already mentioned among the 400+ answers. Vote up existing posts instead of adding duplicates!</p>
http://stackoverflow.com/questions/219027/do-you-keep-a-programming-journal26Do you keep a programming journal?Michael McCarty2008-10-20T16:20:11Z2009-11-25T23:32:01Z
<p>The last couple months I've started keeping a journal relating to my software development. I've found that's it's been helpful for keeping track of software requests and the changes and discoveries necessary in fixing an issue or keeping track of system infrastructure changes. I've also found that it's a nice way to slow down for a moment and bookmark my thoughts in a day where there's always something that preempts what I'm doing.</p>
<p>I use a Moleskine journal since it's an escape from the keyboard and it forces me to slow down and write legibly.</p>
<p>I'd like to do something with Evernote but I haven't discovered the best way for me to sync with it.</p>
<p>What do you use?<br />
Any tips/suggestions?</p>
http://stackoverflow.com/questions/1798210/c-and-lotus-notes-attachment-icon0c# and lotus notes attachment iconmycsharpmail2009-11-25T16:35:53Z2009-11-25T16:47:37Z
<p>I am using c# and need to attach a lnk (shortcut/link) file and email to a lotus notes account. the problem is the icon defaults to a generic image and does not show the folder with the arrow as seen in windows explorer. a txt file icon does show as expected. can this be done thru c# or is the notes server the problem? thanks</p>
http://stackoverflow.com/questions/1377011/lotus-notes-email-as-an-attachment-to-another-email0Lotus Notes email as an attachment to another emailliys2009-09-04T03:01:36Z2009-11-16T10:39:27Z
<p>HI all,</p>
<p>This is in Notes 8.5 environment . </p>
<p>I just wanted to know how to attach an email to another email as <em>real</em> attachment not a "Document Link".</p>
<p>I intended to attach an email, so I drag & dropped an email to another email's body but this turned out to be a "Document Link". This is an issue when I deleted the original attachment(an email in this case) and want to open the attachment again.</p>
<p>Tried to drag & drop the email to desktop and attach that through the "Choose file" dialog, didn't work either.</p>
<p>So how can I do that? I'm trying to get the attachment programmatically.</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1721295/good-free-sticky-note-post-it-application-1Good, free, sticky note/post it application [closed]TheLearner2009-11-12T10:25:34Z2009-11-13T13:23:57Z
<p>Does anyone know of a good, free sticky note/post it application that I can download?</p>
http://stackoverflow.com/questions/1446633/extract-export-attachements-from-lotus-notes-email-using-c0Extract/Export attachements from Lotus Notes Email using C#unknown (google)2009-09-18T20:20:02Z2009-11-10T02:37:22Z
<p>Hello </p>
<p>I need to extract/export the lotus notes email attachment into file system. for that I wrote following method but each time I am receiving an error at line foreach (NotesItem nItem in items).. Can anybody please tell me what I am doing wrong ..</p>
<p>Thanks
Jwalin</p>
<pre><code> public void GetAttachments()
{
NotesSession session = new NotesSession();
//NotesDocument notesDoc = new NotesDocument();
session.Initialize("");
NotesDatabase NotesDb = session.GetDatabase("", "C:\\temps\\lotus\\sss11.nsf", false); //Open Notes Database
NotesView inbox = NotesDb.GetView("By _Author");
NotesDocument docInbox = inbox.GetFirstDocument();
object[] items = (object[])docInbox.Items;
**foreach (NotesItem nItem in items)**
{
//NotesItem nItem = (NotesItem)o1;
if (nItem.Name == "$FILE")
{
NotesItem file = docInbox.GetFirstItem("$File");
string fileName = ((object[])nItem.Values)[0].ToString();
NotesEmbeddedObject attachfile = (NotesEmbeddedObject)docInbox.GetAttachment(fileName);
if (attachfile != null)
{
attachfile.ExtractFile("C:\\temps\\export\\" + fileName);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1496050/code-golf-banknote-calculator4Code Golf: Banknote calculatorpaxdiablo2009-09-30T03:57:25Z2009-10-05T21:42:22Z
<p><a href="http://stackoverflow.com/questions/1490839/result-of-previous-line-c-programming">This question</a> was posted by a C beginner and it was an exercise to calculate, given a dollar value input by the user, the minimum number of bills (or banknotes, depending on your locale) needed to reach that dollar value.</p>
<p>So, if the user entered 93, the output would be:</p>
<pre><code>$20 bills = 4
$10 bills = 1
$5 bills = 0
$1 bills = 3
</code></pre>
<p>Finally succumbing to the phenomenon (it's a slow day here), I thought this would be ripe for a game of Code Golf.</p>
<p>For fairness, the input prompt needs to be (note the "_" at the end is a space):</p>
<pre><code>Enter a dollar amount:_
</code></pre>
<p>I think I've covered all the bases: no identical question, community wiki. I won't be offended if it gets shut down though - of course, I'll never be able to complain about these types of questions again, for fear of being labelled a hypocrite :-)</p>
<p>Okay, let's see what you can come up with. Here's a sample run:</p>
<pre><code>Enter a dollar amount: 127
$20 bills = 6
$10 bills = 0
$5 bills = 1
$1 bills = 2
</code></pre>
http://stackoverflow.com/questions/1510032/extract-export-image-from-lotus-notes-email-body-using-c0Extract/Export image from Lotus Notes Email Body using C#unknown (google)2009-10-02T14:54:32Z2009-10-02T14:54:32Z
<p>Hi </p>
<p>I need to extract the image from lotus notes email(not as attachment). Image is in body of email. I am receiving i count when I run the following code </p>
<p>public int GetElementCount(NotesRichTextNavigator rtNav, RT_ELEM eType)
{
int cntEmlements = 0;</p>
<pre><code> if(rtNav.FindFirstElement(eType)== true)
{
do
{
cntEmlements++;
} while (rtNav.FindNextElement(eType,10) == true);
}
return cntEmlements;
}
NotesRichTextItem rItem1 = (NotesRichTextItem)nDoc.GetFirstItem("Body");
NotesRichTextNavigator rtNav = rItem1.CreateNavigator();
MessageBox.Show(GetElementCount(rtNav, RT_ELEM.RTELEM_TYPE_OLE).ToString());
</code></pre>
<p>But when I try ti extract it I always received null value.. the code for extract is following </p>
<p>if (notesItem.type == IT_TYPE.EMBEDDEDOBJECT)
{</p>
<pre><code> string fileName = ((object[])notesItem.Values)[0].ToString(); // ERROR HERE AS NULL VALUE
NotesEmbeddedObject emObj = nDoc.GetAttachment(notesItem.Values[0]);
emObj.ExtractFile(emObj.Name);
</code></pre>
<p>}</p>
<p>Can anybody please tell me what is the wrong I am doing?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1488340/debugging-a-domino-notes-dsapi-filter2Debugging a Domino/Notes DSAPI filterDylanW2009-09-28T17:35:36Z2009-09-28T17:42:41Z
<p>I've built a DLL for Domino Server 8.5 for Windows and installed it as a DSAPI filter, but every time I restart Domino I get "HTTP Server: Failed to load DSAPI module C:\path_to_filter\filter.dll"</p>
<p>Is there any way to determine why this is failing to load?</p>
<p>I built the DLL from a C++ project in Visual Studio 2008 and used the libraries and includes from the Lotus C API for Notes/Domino 8.5. I copied most of the code from the sample DSAPI filter, but stripped out most of the actual functionality so that I can fill it in with my own. It doesn't seem to be an error with the code, as I've been unable to find an actual exception at this point.</p>
http://stackoverflow.com/questions/1456593/how-to-avoid-accidental-deletions-of-databases-in-lotus-notes0How to avoid accidental deletions of databases in Lotus Notes?Saili2009-09-21T20:14:21Z2009-09-22T13:17:36Z
<p>I have always worried about users deleting lotus notes databases by accident. We had one such case last week and I want to know how we can lock the databases so that users cannot delete them.</p>
<p>Is there a way in Lotus Notes - either at the Db level or server level where we can set up the database so that only the administer of the db or the user with Manager access can delete the database?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1438665/how-get-all-calendar-entries-for-a-given-using-the-notes-jar-for-java0How get all calendar entries for a given using the Notes.Jar for Javavikramjb2009-09-17T12:48:18Z2009-09-18T15:56:09Z
<p>I am working on a simple java code to extract all calendar entries for a given date. I know it possible using Domingo but I would like to use only Notes.jar for this purpose. It is possible for me to create a session based on a given credentials and get the calendar object. I am looking to extract the current running notes session and use that session object to open the calendar view in the mail file and start playing with it. But I am not able to get it working. Anybody have any idea or links on this ?</p>
http://stackoverflow.com/questions/1388424/web-anchor-link-to-a-notes-database0Web (anchor) link to a Notes databasernnbrwn2009-09-07T09:28:55Z2009-09-07T18:32:27Z
<p>Hi</p>
<p>Is there a way to create a regular web (or anchor) link that will open a Notes client and display a pre-determined database from the workplace?</p>
<p>Thanks in advance.</p>
<p>Ronnie</p>
http://stackoverflow.com/questions/1295753/how-to-open-2-instances-of-lotus-notes-using-a-vb-script1How to open 2 instances of Lotus Notes using a VB ScriptDoug Sans2009-08-18T18:46:05Z2009-08-18T21:19:26Z
<p>I am having to connect to 1 mail server via LAN for my internal work and to a second mail server outside of my LAN but through a VPN connection in order to do my work as well as both sides of this has information that I cannot access from my LAN.</p>
<p>I have 2 Lotus Notes ID files and passwords and would like a VB Script that will create a second Lotus Notes icon that when launched will prompt me to login to my second mail server and will allow me to run 2 instances of Lotus Notes accessing both sides of the fence.</p>
<p>Can someone help me with creating such a script?</p>
http://stackoverflow.com/questions/1041389/adding-notes-using-google-readers-api1Adding Notes Using Google Reader's APIleftspin2009-06-24T22:46:44Z2009-08-09T16:14:41Z
<p>Does anyone know how to add a note using Google Reader's API? In looking at some of their code, I've noticed that it might have something to do with the "/reader/api/0/item/edit" URL, but I can't find this documented anywhere.</p>
http://stackoverflow.com/questions/1248404/accessing-mails-from-mail-servermailfile-nsf-file-from-domino-server-using-int0Accessing mails from "mail\ServerMailFile.nsf" file from Domino Server using "Introp.Domino.dll" (C#)Preeti2009-08-08T09:12:42Z2009-08-08T18:50:06Z
<p>Hi All,</p>
<p>I can open contacts,to-do list from "mail/usermail.nsf" file.
But unable to open or access mails from it.</p>
<p>I am using below code to access "calender":</p>
<p>_serverDatabase = _lotesNotesSession.GetDatabase("", "mail\ServerMailFile.nsf", false);
NotesView LotusNotesView = _localDatabase.GetView("Calendar");</p>
<p>Is there any similar way to access mail?</p>
http://stackoverflow.com/questions/1019334/what-are-the-efficient-ways-to-take-programmer-notes1What are the efficient ways to take "programmer" notes?Sasha2009-06-19T18:15:12Z2009-07-03T09:49:00Z
<p>I run many times into an issue where someone asked me about a bug or a feature I worked on. And it literally takes me a long time to recall it, usually by looking at Bugzila as well as my CVS reports. So I am trying to find a good way to take notes of what the things I have been working on, and looking for your suggestions. In fact, I usually take almost ZERO notes about what I have done, though I write notes when getting specification or some technical things. </p>
<p>I hear that some people create a new document for each issue or bug they are working on, and append configuration info, log output, my musings and things. I think it is good for weekly/monthly reports and such, plus helps remembering things you've worked on or similar bug you've fixed.</p>
<p>Please suggest how you take note?</p>
http://stackoverflow.com/questions/659249/treelike-structure-plugin-for-vim5treelike structure plugin for vimIvan2009-03-18T17:14:29Z2009-03-19T08:33:49Z
<p>Does anyone know of some plugin for vim which would enable treelike note keeping organization like in many today's notekeeping applications. For example, something <a href="http://screenshots.en.softonic.com/en/scrn/67000/67366/3%5Fmempad01.jpg" rel="nofollow">alike</a> which would according to the tree on the left create another file in a directory structure to enable keeping several files together, under one tree, but still have them all at view.</p>
http://stackoverflow.com/questions/368587/sending-html-emails-that-renders-correctly-in-notes-71Sending HTML emails that renders correctly in Notes 7kolrie2008-12-15T14:47:53Z2008-12-15T15:23:19Z
<p>Does anyone here has any experience on how to send HTML emails that renders correctly on a Lotus Notes Client 7?</p>
<p>My email has a couple of complex CSS files and I tried embedding them on <style> tags, but it doesn't seem to work. The thing is that the email renders perfectly in version 8 and on other email clients.</p>
<p>Any hints or pointers?</p>
<p>Thanks!</p>