search for: kulp

Displaying 3 results from an estimated 3 matches for "kulp".

Did you mean: gulp
2002 Oct 05
2
Win2K domain at work, Samba workgroup at home
This is a little off topic, but maybe someone can help. I have a Win2K laptop that's part of a corporate domain. When I bring it home and add it to my home LAN, it refuses to access any SMB machine (including a Samba server, Win98 or Win95 box) complaining that "There are currently no logon servers available to service the logon request." Is there any way to fix this easily? I
2012 Dec 11
2
Writing escaped unicode
I'd like to write unicode strings using the "\u" escape syntax. According to the documentation, print.default or encodeString will escape unicode using the \u convention. In practice, I can't make it work. > b="Unicode character: \ufffd" > print.default(b) [1] "Unicode character: ?" > encodeString(b) [1] "Unicode character: ?" I want to
2013 May 01
1
Size of a refClass instance
I'm using refClass for a complex multi-directional tree structure with possibly 100,000s of nodes. The refClass design is very impressive and I'd love to use it, but I've found that the size of refClass instances are very large and creation time is slow. For example, below is a RefClass and normal S4 class. The RefClass requires about 4KB per instance vs 500B for the S4 class --