User Stephen Pellicer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T03:46:25Z http://stackoverflow.com/feeds/user/360 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1354916/fibonacci-heap-issue/1355424#1355424 1 Answer by Stephen Pellicer for Fibonacci Heap Issue Stephen Pellicer 2009-08-31T01:19:14Z 2009-08-31T01:19:14Z <p>You will need to check the analysis since I'm not sure if the upper bound of the node degree should not be the floor. In your D function, your cast to int is truncating the decimal portion. Changing this to rounding seems to clear up the index out of bounds error.</p> <p>There seems to be an additional problem though. I didn't track down what conditions but child lists can end up not having a sentinal set. This leads to an infinite loop in removeMin when looping through the child list since they are circular.</p> http://stackoverflow.com/questions/4208/windows-equivalent-of-nice/4332#4332 10 Answer by Stephen Pellicer for Windows Equivalent of 'nice' Stephen Pellicer 2008-08-07T02:49:21Z 2009-06-12T22:32:06Z <p>If you want to set priority when launching a process you could use the builtin start command:</p> <pre><code>START ["title"] [/Dpath] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED] [/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL] [/WAIT] [/B] [command/program] </code></pre> <p>Use the low through belownormal options to set priority of the launched command/program. Seems like the most straightforward solution. No downloads or script writing. The other solutions probably work on already running procs though.</p> http://stackoverflow.com/questions/850159/acceessing-some-aggregate-functions-in-a-linq-datasource-in-a-gridview 0 Acceessing some aggregate functions in a linq datasource in a GridView Stephen Pellicer 2009-05-11T21:26:08Z 2009-05-11T21:35:07Z <p>I am working on a traditional WebForms project. In the project I am trying out some Linq datasources with plans to eventually migrate to an MVC architecture. I am still very new to Linq.</p> <p>I have a GridView using a Linq datasource. The entities I am showing has a to many relationship and I would like to get the maximum value of a column in the many side of the relationship.</p> <p>I can show properties of the base entity in the gridview:</p> <pre><code>&lt;asp:TemplateField HeaderText="Number" SortExpression="tJobBase.tJob.JobNumber"&gt; &lt;ItemTemplate&gt; &lt;asp:Label ID="Label1" runat="server" Text='&lt;%# Bind("tJobBase.tJob.JobNumber") %&gt;'&gt; &lt;/asp:Label&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; </code></pre> <p>I can also show the count of the many related property:</p> <pre><code>&lt;asp:TemplateField HeaderText="Number" SortExpression="tJobBase.tJob.tHourlies.Count"&gt; &lt;ItemTemplate&gt; &lt;asp:Label ID="Label1" runat="server" Text='&lt;%# Bind("tJobBase.tJob.tHourlies.Count") %&gt;'&gt; &lt;/asp:Label&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; </code></pre> <p>Is there a way to get the max value of a column called WeekEnding in the tHourlies collection to show in the GridView?</p> http://stackoverflow.com/questions/679207/binding-an-nspopupbutton-to-an-nsdictionarycontroller 0 Binding an NSPopupButton to an NSDictionaryController Stephen Pellicer 2009-03-24T20:54:36Z 2009-03-25T05:19:15Z <p>I'm trying out some MacOS programming and having some trouble understanding how bindings work with an NSPopupButton. I'm interested in binding to an NSDictionaryController (I don't think I need an intermediate NSArrayController but if that is the best way, I'm open to it). </p> <p>I've created a controller object that has a property 'db' which has a property 'species' which is an NSMutableDictionary. The 'species' dictionary has ID's for keys and Species objects for values. Species objects have a description property. In InterfaceBuilder, I've created MyController, NSDictionaryController, and an NSPopupButton. I would like to populate the popup with Species.descriptions. When selected, I need access to the corresponding ID.</p> <p>I've setup the NSDictionaryController to bind 'Content Dictionary' to MyController with Model Key Path 'db.species'. With NSPopupButton, so far I've bound 'Content Values' to NSDictionaryController with controller key 'arrangedObjects' and Model Key Path set to 'value.description'.</p> <p>This seems to work getting the list populated. My main question is what the best way to wire up the selection is. Ideally, I would like to wire selection to the NSDictionaryController so that I can use the NSDictionaryController to access the selection. One reason for this is so that I can wire other controls to the NSDictionaryController to see the current selection. If not, should I wire to a property in MyController or something? Just looking for the best practices. I would like as much to be through the Interface Builder mechanisms so that I can easily reuse the model and controller design in another application with a different view.</p> <p><strong>Update using Brian's answer as guidance:</strong></p> <p>NSPopupButton: bind Content to NSDictionaryController->arrangedObjects->value.description</p> <p>bind Content Objects to NSDictionaryController->arrangedObjects->key</p> <p>bind Selected Index to NSDictionaryController->selectionIndex</p> <p>bind NSDictionaryController->db.species</p> <p>Everything seems to work. I can grab the object from the controller with [[[controller selectedObjects] lastObject] value]. It's in an array of selected objects with key, value pairs, I believe.</p> http://stackoverflow.com/questions/154185/what-is-object-marshalling/154208#154208 1 Answer by Stephen Pellicer for What is object marshalling? Stephen Pellicer 2008-09-30T17:55:26Z 2008-09-30T17:55:26Z <p>I clarified a google search to "data marshalling" and the first hit was <a href="http://www.webopedia.com/TERM/D/data_marshalling.html" rel="nofollow">on some place called webopedia</a> which is pretty good. The gist is that you transform data back and forth to a form for things like transmission over a network. The problem it solves is that you can't really transmit data over a network in a form that is usable by a program. You have to solve a number of issues including things like endianness of data, how you store complex data types like strings, etc.</p> <p>Marshalling is not just to solve network transmission problems but other problems such as going from one architecture to another, maybe different languages especially those that might use things like virtual machines, and other "translation" problems.</p> http://stackoverflow.com/questions/153616/mpi-or-sockets/154157#154157 1 Answer by Stephen Pellicer for MPI or Sockets Stephen Pellicer 2008-09-30T17:40:19Z 2008-09-30T17:40:19Z <p>I'll have to agree with OldMan and freespace. Unless you know of a specific and improvement to some useful metric (performance, maintainability, etc.) over MPI, why reinvent the wheel. MPI represents a large amount of shared knowledge regarding the problem you are trying to solve.</p> <p>There are a huge number of issues you need to address which is beyond just sending data. Connection setup and maintenance will all become your responsibility. If MPI is the exact abstraction (it sounds like it is) you need, use it.</p> <p>At the very least, using MPI and later refactoring it out with your own system is a good approach costing the installation and dependency of MPI.</p> <p>I especially like OldMan's point that MPI gives you much more beyond simple socket communication. You get a slew of parallel and distributed computing implementation with a transparent abstraction.</p> http://stackoverflow.com/questions/153988/how-can-i-copy-data-records-between-two-instances-of-an-sqlserver-database/154020#154020 1 Answer by Stephen Pellicer for How can I copy data records between two instances of an SQLServer database Stephen Pellicer 2008-09-30T17:05:01Z 2008-09-30T17:05:01Z <p>I would just script to sql and run on the other server for quick and dirty transferring. If this is something that you will be doing often and you need to set up a mechanism, SQL Server Integration Services (SSIS) which is similar to the older Data Transformation Services (DTS) are designed for this sort of thing. You develop the solution in a mini-Visual Studio environment and can build very complex solutions for moving and transforming data.</p> http://stackoverflow.com/questions/116324/crystal-reports-net-guidance/116374#116374 2 Answer by Stephen Pellicer for Crystal Reports .Net Guidance Stephen Pellicer 2008-09-22T17:52:14Z 2008-09-22T17:52:14Z <p>I can suggest that the built in Microsoft reporting framework works adequately. You can do local reports or MS SQL server based reports. There is a client control that displays reports and can export to formats such as pdf and Excel. Visual Studio can handle report design for the stack.</p> <p>As far as if it is better than Crystal Reports, I'd say check it out and see if you like it any better or worse. I've worked with the Microsoft Report Viewer more than Crystal Reports but both seem to be fairly similar. Offhand, Crystal Reports seems to be a more advanced reporting tool but more complicated.</p> <p>I'm not sure about how to utilize the Microsoft Report Viewer infrastructure outside of Visual Studio. If you are using Visual Studio it should all be available in there and you can follow the online help instructions for deploying the pieces for your servers to your servers.</p> http://stackoverflow.com/questions/63157/hooking-into-the-tcp-stack-in-c/63304#63304 0 Answer by Stephen Pellicer for Hooking into the TCP Stack in C Stephen Pellicer 2008-09-15T14:17:35Z 2008-09-15T14:17:35Z <p>If you're just looking for packet capture, libpcap is very popular. It's used in basic tools such as tcpdump and ethereal. As far as "hooking into the stack", unless you plan on fundamentally changing the way the way the networking is implemented (i.e. add your own layer or alter the behavior of TCP), your idea of using IPF for packet modification or intervention seems like the best bet. In Linux they have a specific redirection target for userspace modules, IPF probably has something similar or you could modify IPF to do something similar.</p> <p>If you are just interested in seeing the packets, then libpcap is the way to go. You can find it at: <a href="http://www.tcpdump.org/" rel="nofollow">http://www.tcpdump.org/</a></p> http://stackoverflow.com/questions/26595/is-there-any-difference-between-foo-is-none-and-foo-none/26654#26654 3 Answer by Stephen Pellicer for Is there any difference between "foo is None" and "foo == None"? Stephen Pellicer 2008-08-25T19:04:59Z 2008-08-25T19:04:59Z <p>For None there shouldn't be a difference between equality (==) and identity (is). The NoneType probably returns identity for equality. Since None is the only instance you can make of NoneType (I think this is true), the two operations are the same. In the case of other types this is not always the case. For example:</p> <pre><code>list1 = [1, 2, 3] list2 = [1, 2, 3] if list1==list2: print "Equal" if list1 is list2: print "Same" </code></pre> <p>This would print "Equal" since lists have a comparison operation that is not the default returning of identity.</p> http://stackoverflow.com/questions/2931/getting-started-with-a-custom-jxta-peergroup 6 Getting started with a custom JXTA PeerGroup Stephen Pellicer 2008-08-05T22:23:16Z 2008-08-11T22:38:05Z <p>I have been working with JXTA 2.3 for the last year or so for a peer-to-peer computing platform I am developing. I am migrating to JXTA 2.5 and in the process I am trying to clean up a lot of my use of JXTA. For the most part, I approached JXTA with a "just make it work" attitude. I used it to jumpstart creating and managing my peer-to-peer overlay network and providing basic communication services. I would like to use it in a more "JXTA" way since I am making changes to move to 2.5 anyway.</p> <p>My first step would be a basic creation of a custom PeerGroup. I see some new new mechanisms that are using the META-INF.services infrastructure of Java. Should I be listing a related PeerGroup implementing object here with a GUID in net.jxta.platform.Module? As I understand it, if I do this, when a group with a spec ID matching the GUID is encountered and joined or created it should automatically use the matching object. I should be able to just manually tie a PeerGroup object to the group but this new method using META-INF seems to be a lot easier to manage.</p> <p>Does anyone have any pointers or examples of using this infrastructure for PeerGroup implementation? Also, some general information on the META-INF.services mechanism in Java would be helpful.</p> <p>Stephen</p> http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/4720#4720 13 Answer by Stephen Pellicer for What are some good free programming books? Stephen Pellicer 2008-08-07T13:43:11Z 2008-08-07T13:43:11Z <p>MIT has their open course ware for computer science.</p> <p><a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/index.htm" rel="nofollow">http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/index.htm</a></p> http://stackoverflow.com/questions/4519/using-xming-x-window-server-over-a-vpn/4691#4691 2 Answer by Stephen Pellicer for Using Xming X Window Server over a VPN Stephen Pellicer 2008-08-07T13:11:03Z 2008-08-07T13:11:03Z <p>Chances are it's either X authentication, the X server binding to an interface, or your DISPLAY variable. I don't use Xming myself but there are some general phenomenon to check for. One test you can do to manually verify the DISPLAY variable is correct is:</p> <ol> <li>Start your VPN. Run ipconfig to be sure you have the two IP addresses you mentioned (your local IP and your VPN IP).</li> <li>Start Xming. Run 'netstat -n' to see how it's binding to the interface. You should see something that either says localIP:6000 or VPNIP:6000. It may not be 6000 but chances are it will be something like that. If there's no VPNIP:6000 it may be binding only to your localIP or even 127.0.0.1. That will probably not work over the VPN. Check if there are some Xming settings to make it bind to other or all interfaces.</li> <li>If you see VPNIP:6000 or something similar, take note of what it says and remote shell into your UNIX host (hopefully something like ssh, if not whatever you have to get a text terminal).</li> <li>On the UNIX terminal type 'echo $DISPLAY'. If there is nothing displayed try 'export DISPLAY=VPNIP:0.0' where VPNIP is your VPN IP address and 0.0 is the port you saw in step 3 minus 6000 with .0 at the end (i.e. 6000 = 0.0, 6010 = 10.0).</li> <li>On the UNIX host run something like 'xclock' or 'xterm' to see if it runs. The error message should be informative. It will tell you that it either couldn't connect to the host (a connectivity problem) or authentication failed (you'll need to coordinate Xauth on your host and local machine or Xhosts on your local machine).</li> </ol> <p>Opening Xhosts (with + for all hosts or something similar) isn't too bad if you have a locally protected network and you're going over a VPN. Hopefully this will get you started tracking down the problem. Another option that is often useful as it works over a VPN or simple ssh connectivity is ssh tunneling or X11 forwarding over ssh. This simulates connectivity to the X server on your local box by redirecting a port on your UNIX host to the local port on your X server box. Your display will typically be something like localhost:10.0 for the local 6010 port.</p> <p>X can be ornery to set up but it usually works great once you get the hang of it.</p> http://stackoverflow.com/questions/4227/c-accessing-a-dictionary-keys-key-through-a-numeric-index/4315#4315 1 Answer by Stephen Pellicer for C#: Accessing a Dictionary.Keys Key through a numeric index Stephen Pellicer 2008-08-07T02:38:29Z 2008-08-07T02:38:29Z <p>I agree with the second part of Patrick's answer. Even if in some tests it seems to keep insertion order, the documentation (and normal behavior for dictionaries and hashes) explicitly states the ordering is unspecified. You're just asking for trouble depending on the ordering of the keys. Add your own bookkeeping (as Patrick said, just a single variable for the last added key) to be sure. Also, don't be tempted by all the methods such as Last and Max on the dictionary as those are probably in relation to the key comparator (I'm not sure about that).</p> http://stackoverflow.com/questions/2773/xen-cant-get-a-console-to-vms/2883#2883 3 Answer by Stephen Pellicer for Xen - Can't get a Console to VMs Stephen Pellicer 2008-08-05T21:27:45Z 2008-08-05T21:27:45Z <p>I had followed a different tutorial on setting up my xen on ubuntu before 8.04 but now upgraded to 8.04. I used the extra line in my cfg as folows:</p> <pre><code>extra = ' TERM=xterm xencons=tty console=tty1'<br></code></pre> <p>It allows me to "xm console hostname" from dom0. I think this was from a problem with the xen setup in the version prior to 8.04 (I'm not sure which version that was). I'm not sure if the same change is necessary in 8.04 as I'm an upgrade and didn't change any of my domU configs after the upgrade.</p> <p>Stephen</p> http://stackoverflow.com/questions/850159/acceessing-some-aggregate-functions-in-a-linq-datasource-in-a-gridview/850202#850202 Comment by Stephen Pellicer on Acceessing some aggregate functions in a linq datasource in a GridView Stephen Pellicer 2009-05-11T21:45:02Z 2009-05-11T21:45:02Z I tried using this before and I get the error that &quot;A call to Bind was not well formatted.&quot; I experimented with calls such as this in code and it works fine. Is this just not available in Bind calls?