User PSU_Kardi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T23:14:22Zhttp://stackoverflow.com/feeds/user/103165http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1827102/managed-c-to-form-a-bridge-between-c-and-c2Managed C++ to form a bridge between c# and C++PSU_Kardi2009-12-01T15:55:50Z2009-12-01T17:09:56Z
<p>I'm a bit rusty, actually really rusty with my C++. Haven't touched it since Freshman year of college so it's been a while.</p>
<p>Anyway, I'm doing the reverse of what most people do. Calling C# code from C++. I've done some research online and it seems like I need to create some managed C++ to form a bridge. Use __declspec(dllexport) and then create a dll from that and use the whole thing as a wrapper.</p>
<p>But my problem is - I'm really having a hard time finding examples. I found some basic stuff where someone wanted to use the C# version to String.ToUpper() but that was VERY basic and was only a small code snippet.</p>
<p>Anyone have any ideas of where I can look for something a bit more concrete? Note, I do NOT want to use COM. The goal is to not touch the C# code at all.</p>
http://stackoverflow.com/questions/989212/how-do-you-protect-yourself-from-health-related-problems-from-work-programming/989224#9892245Answer by PSU_Kardi for How do you protect yourself from health related problems from work/programming?PSU_Kardi2009-06-12T21:46:49Z2009-10-24T02:08:50Z<p>What I try to do is make sure I have a nice comfy mousepad for my house. You know with the gel on it...</p>
<p>Then what I also recommend is every once in a while just stop. Get up out of your chair and stretch. If you sit in the same position for hours at a time - you're going to have muscle atrophy...</p>
<p>I also recommend one of those stress ball things too - where you squeeze it. </p>
http://stackoverflow.com/questions/1500918/tab-between-fields-in-tableviewer0Tab between fields in TableViewerPSU_Kardi2009-09-30T22:08:40Z2009-10-09T14:43:35Z
<p>What I'd like to do is be able to tab between elements in table. </p>
<p>I currently am creating my table like this.</p>
<pre><code>this.tableViewer =
new TableViewer(parent , SWT.FULL_SELECTION);
tableViewer.setUseHashlookup(true);
table = tableViewer.getTable();
GridData gridData = new GridData(GridData.FILL_BOTH);
gridData.grabExcessVerticalSpace = true;
table.setLayoutData(gridData);
table.setLinesVisible(true);
table.setHeaderVisible(true);
...
/** Create the Cell Editor Array - will hold all columns **/
editors = new CellEditor[table.getColumnCount()];
/** Cell Editor Row 1 **/
/** Set the column properties **/
tableViewer.setColumnProperties(columnNames);
/** Assign the cell editors to the viewer **/
tableViewer.setCellEditors(editors);
/** Set the cell modifier for the viewer **/
tableViewer.setCellModifier(new MyCellModifier(this));
//Create the Table Viewer
/** Table Viewer Content and Label Provider **/
tableViewer.setContentProvider(new MyContentProvider(this));
tableViewer.setLabelProvider(new MyLabelProvider());
</code></pre>
<p>But I'm not sure how to set up the tabulation. Everything else works as far as editing columns, showing data, etc. Just stuck on this last part.</p>
<p>If I've missed obvious documentation or javadocs - my apologies and even pointing to those would be great.</p>
http://stackoverflow.com/questions/1528539/disable-jface-textcelleditor-field0DIsable JFace TextCellEditor Field PSU_Kardi2009-10-06T23:00:23Z2009-10-06T23:48:42Z
<p>Anyone know if it's possible to enable/disable individual JFace TextCellEditor fields.</p>
<p>For instance if I have a table with 5 columns, I want the last cell to be empty unless field #4 is filled in. </p>
http://stackoverflow.com/questions/1395910/checkboxcelleditor-shows-text-and-not-a-check-box0CheckboxCellEditor shows text and not a check boxPSU_Kardi2009-09-08T19:39:37Z2009-09-14T21:55:03Z
<p>I'm using the following</p>
<pre><code>org.eclipse.jface.viewers.CheckboxCellEditor.CheckboxCellEditor(Composite parent)
</code></pre>
<p>I'm creating a table viewer with cellEditors and doing the following</p>
<pre><code>CellEditor[] editors = new CellEditor[columnNames.length];
editors[7] = new CheckboxCellEditor(table);
</code></pre>
<p>I have a CellModifier that has the following</p>
<pre><code>public Object getValue(Object element, String property) {
Object result = null;
...
result = Boolean.valueOf(task.isDfRequested());
return result;
}
public void modify(Object element, String property, Object value) {
item.isSelected(((Boolean)value).booleanValue());
}
</code></pre>
<p>Finally I have a LabelProvider that has the following</p>
<pre><code> public String getColumnText(Object element, int columnIndex) {
String result = "";
try {
result = Boolean.toString(item.isSelected());
} catch (Exception ex) { }
break;
</code></pre>
<p>However, in my UI instead of having a check box I have the word true or false && clicking it results in switching state to false or true. Any ideas on why I don't have a checkbox??</p>
http://stackoverflow.com/questions/1395910/checkboxcelleditor-shows-text-and-not-a-check-box/1424116#14241160Answer by PSU_Kardi for CheckboxCellEditor shows text and not a check boxPSU_Kardi2009-09-14T21:55:03Z2009-09-14T21:55:03Z<p>What I've decided to do is to just implement a dirty hack others have been using.</p>
<p>Create two images of check boxes, one checked the other not checked. Switch the state between the two based on the boolean.</p>
<p>It's not perfect, but for now it gets the job done</p>
http://stackoverflow.com/questions/1390613/how-to-resolve-assertionfailedexception1How to resolve AssertionFailedExceptionPSU_Kardi2009-09-07T18:59:31Z2009-09-07T19:06:01Z
<p>Hopefully someone can point me in the right direction. I'm trying to create a CellEditor in Eclipse and when I click on the field I get an Unhandled event loop exception with the stack trace below.</p>
<p>The cell editor code for this column looks like this</p>
<pre><code>/** Cell Editor Row 2 **/
textEditor = new TextCellEditor(table);
((Text)textEditor.getControl()).setTextLimit(10);
editors[1] = textEditor;
org.eclipse.core.runtime.AssertionFailedException: assertion failed:
at org.eclipse.core.runtime.Assert.isTrue(Assert.java:111)
at org.eclipse.core.runtime.Assert.isTrue(Assert.java:97)
at org.eclipse.jface.viewers.TextCellEditor.doSetValue(TextCellEditor.java:228)
at org.eclipse.jface.viewers.CellEditor.setValue(CellEditor.java:855)
at org.eclipse.jface.viewers.EditingSupport.initializeCellEditorValue(EditingSupport.java:96)
at org.eclipse.jface.viewers.ColumnViewerEditor.activateCellEditor(ColumnViewerEditor.java:194)
at org.eclipse.jface.viewers.ColumnViewerEditor.handleEditorActivationEvent(ColumnViewerEditor.java:443)
at org.eclipse.jface.viewers.ColumnViewer.triggerEditorActivationEvent(ColumnViewer.java:680)
at org.eclipse.jface.viewers.ColumnViewer.handleMouseDown(ColumnViewer.java:664)
at org.eclipse.jface.viewers.ColumnViewer.access$0(ColumnViewer.java:660)
at org.eclipse.jface.viewers.ColumnViewer$1.mouseDown(ColumnViewer.java:89)
at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:179)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3823)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3422)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2382)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2346)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198)
at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at com.tasc.swb.internal.application.SWBApplication.start(SWBApplication.java:414)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
at org.eclipse.equinox.launcher.Main.main(Main.java:1212)
</code></pre>
http://stackoverflow.com/questions/1359295/swt-setting-column-height-or-insert-new-line1SWT Setting Column Height or insert new linePSU_Kardi2009-08-31T20:35:26Z2009-08-31T21:12:44Z
<p>I currently have a Table [org.eclipse.swt.widgets.Table] with several TableColumns; however, due to UI space restrictions I have a bit of an issue.</p>
<p>Lets say for example I had a table column named "Target User" and this couldn't be named anything else AND the whole display "Target User" had to be displayed. Now lets say I also have several other Table Columns with the same problems.</p>
<p>I was hoping I could add a new line or do something to set the height of the column so it could be Target \n User and I could save some width that way. However, \n does not seem to work in org.eclipse.swt.widgets.TableColumn.setText , nor does html.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1218315/embed-a-browser-in-flex2Embed a browser in FlexPSU_Kardi2009-08-02T06:54:21Z2009-08-07T17:53:57Z
<p>Anyone know of any documentation that would help me with trying to embed a web browser component into adobe flex.</p>
<p>I've seen in Adobe Air that there is a Item; however, in Adobe Flex 3 for a .swf file that would be somewhere - I do not see it.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1202811/what-have-you-heard-about-the-real-world-from-academia-that-is-completely-incor/1202827#12028276Answer by PSU_Kardi for What have you heard about "the real world" from academia that is completely incorrect?PSU_Kardi2009-07-29T20:28:02Z2009-07-29T20:28:02Z<p>I was told so many lies it wasn't funny.</p>
<p>Things like, you'll have clear requirements.</p>
<p>You'll work with smart people</p>
<p>You won't use open source</p>
<p>And so many other things....I wish I could go back to college and warn students of the horrible things that await them</p>
http://stackoverflow.com/questions/1183495/drupal-rpc-fault0Drupal RPC Fault PSU_Kardi2009-07-26T01:20:11Z2009-07-26T01:56:09Z
<p>Hopefully someone can help me with this problem.</p>
<p>I'm starting to work with Drupal Services & Adobe Flex. I created a simple service and installed the AMFPHP module. In Adobe Flex when running the application, I don't seem to have a problem...and everything runs fine showing the data</p>
<p>However, after uploading the .html and .swf files to my webserver and going to the site [<a href="http://www.bkardi.com/top25/Top25UI.html" rel="nofollow">http://www.bkardi.com/top25/Top25UI.html</a>] I get the following error</p>
<pre><code>Authentication Error [RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Security.Error error Error #2048 url: 'http://firejaypa.com/services/amfphp'"]
</code></pre>
<p>What's the best course of action to resolve this</p>
http://stackoverflow.com/questions/1183495/drupal-rpc-fault/1183534#11835340Answer by PSU_Kardi for Drupal RPC Fault PSU_Kardi2009-07-26T01:56:09Z2009-07-26T01:56:09Z<p>I was missing the crossdomain.xml file</p>
http://stackoverflow.com/questions/1178965/flex-drupal-sharing-data1Flex + Drupal Sharing DataPSU_Kardi2009-07-24T17:16:53Z2009-07-24T18:57:54Z
<p>I've looked around a bit and I can't seem to find the answer to this problem: in fact, this may be a stupid question and there isn't an answer.</p>
<p>So anyway; here's my problem.</p>
<p>I have a website that runs off of Drupal. So, I've also started to mess around with Adobe Flex to create a few fancy drag/drop webapps that I'd like to embed into my Drupal site. Now the question is this...</p>
<p>I want the application to know what you're logged in as. So for example, I have an application that does college football voting and you only get one vote per week. However, I want to avoid having the user have to type in their username and password...</p>
<p>Is there a way that I can get the application to get the current user_id out of the site, so I can put that behind the scenes and prevent users stuffing the ballot box or voting as someone else?</p>
<p>Any help would be great...</p>
http://stackoverflow.com/questions/1175932/what-exactly-is-the-model-in-mvc/1175940#11759401Answer by PSU_Kardi for What exactly is the model in MVCPSU_Kardi2009-07-24T06:03:20Z2009-07-24T06:03:20Z<p>Think of it like this</p>
<p>The model is the domain-specific representation of the data on which the application operates.</p>
<p>The Controller processes and responds to events (typically user actions) and may invoke changes on the model.</p>
<p>So, I would say you want to put the code for the e-mail in the controller.</p>
http://stackoverflow.com/questions/1161732/c-property-accessor-error/1161774#11617740Answer by PSU_Kardi for C# Property Accessor ErrorPSU_Kardi2009-07-21T21:09:24Z2009-07-21T21:09:24Z<p>You may want to put something in your main method , since we'll it doesn't point to anything and therefore nothing will load when you run the app</p>
http://stackoverflow.com/questions/1161678/ide-vs-gedit/1161701#11617011Answer by PSU_Kardi for IDE vs GeditPSU_Kardi2009-07-21T20:56:44Z2009-07-21T20:56:44Z<p>I would argue that while this is border-line programming related this is argumenative and subjective and the topic should be closed</p>
http://stackoverflow.com/questions/1152633/how-to-get-the-data-inside-a-packet-transmitted-by-a-wireless-network/1156156#11561560Answer by PSU_Kardi for How to get the data inside a packet transmitted by a wireless network?PSU_Kardi2009-07-20T21:50:16Z2009-07-20T21:50:16Z<p>Question isn't really well formed, and you also need to take into consideration what to do if the packet is encrypted.</p>
<p>Is it WEP? WPA? WPA2? There are so many free open source alternatives, I'm not sure why you'd want to re-invent the wheel unless you really want to learn about making a wheel</p>
http://stackoverflow.com/questions/1154740/save-a-text-file-to-a-remote-network-shared-folder-like-https/1154756#11547560Answer by PSU_Kardi for Save a text file to a remote network shared folder like https://...PSU_Kardi2009-07-20T17:14:16Z2009-07-20T17:14:16Z<p>You might want to take a look at </p>
<p>HTTP put - that's the first thing that came to mind. An example can be seen here::</p>
<p><a href="http://www.java2s.com/Code/CSharp/Network/HTTPputwithusernameandpassword.htm" rel="nofollow">http://www.java2s.com/Code/CSharp/Network/HTTPputwithusernameandpassword.htm</a></p>
http://stackoverflow.com/questions/1121087/force-look-feel-in-swt2Force Look/Feel in SWTPSU_Kardi2009-07-13T18:01:18Z2009-07-20T15:31:49Z
<p>Hopefully no one has asked this question - didn't see it, but I apologize if it's a duplicate.</p>
<p>Anyway, I'm building some plug-ins with Eclipse RCP and am using SWT for my UI. I have a Composite that contains some panels and other items - anyway, I've noticed a bit of a difference in the appearance of the UI depending on how my OS is set up.</p>
<p>I'm running windows XP but am using the "classic" look/feel which is that of Windows 98. When it's like this - the UI looks fine; however, when I switch to the newer XP look/feel with that tacky blue bar and what not - labels and borders in my composite are different.</p>
<p>Is there a way I can force SWT to use the classic look/feel?</p>
http://stackoverflow.com/questions/1134543/how-can-i-share-code-between-c-and-flex/1134557#11345570Answer by PSU_Kardi for How can I share code between C# and Flex?PSU_Kardi2009-07-15T22:56:11Z2009-07-15T22:56:11Z<p>What if you serialize the objects to XML and send them to Flex....that would at least let you share the data</p>
http://stackoverflow.com/questions/1133824/what-should-a-junior-java-developer-know/1134218#11342182Answer by PSU_Kardi for What should a junior Java developer know?PSU_Kardi2009-07-15T21:34:12Z2009-07-15T21:34:12Z<p>I would suggest buying 'Effective Java' by Joshua Bloch - it's a must read especially for junior devs. It will keep you from going stray early on and writing code that will just get picked apart in code reviews</p>
http://stackoverflow.com/questions/1127933/wpf-databinding-how-do-i-access-the-parent-data-context/1127952#11279520Answer by PSU_Kardi for WPF Databinding: How do I access the "parent" data context?PSU_Kardi2009-07-14T20:49:52Z2009-07-14T20:49:52Z<p>Can you get into the debugger and step through to the point where the UI is being built?</p>
<p>If so can you get into the variable and try to drill up</p>
http://stackoverflow.com/questions/1127905/how-can-i-format-an-integer-to-a-specific-length-in-javascript/1127939#11279392Answer by PSU_Kardi for How can I format an integer to a specific length in javascript?PSU_Kardi2009-07-14T20:47:43Z2009-07-14T20:47:43Z<p>I don't know of anything more elegant than that - I'm not aware of any built in support from any common libraries and I don't see much of a performance hit from that</p>
http://stackoverflow.com/questions/1122316/automatically-reformat-long-lined-java-code-to-80-columns-and-still-compile/1122465#11224650Answer by PSU_Kardi for Automatically reformat long-lined Java code to 80 columns and still compile?PSU_Kardi2009-07-13T22:32:06Z2009-07-13T22:32:06Z<p>I would suggest using code formater in Eclipse to get the 80 columns issue taken care of.</p>
<p>Then to make sure you're not missing anything - take a look at checkstyle to see that you're adhering to those standards</p>
http://stackoverflow.com/questions/1122437/what-is-dom-element/1122454#11224543Answer by PSU_Kardi for What is DOM element?PSU_Kardi2009-07-13T22:30:10Z2009-07-13T22:30:10Z<p>Document Object Model (DOM), a programming interface specification being developed by the World Wide Web Consortium (W3C), lets a programmer create and modify HTML pages and XML documents as full-fledged program objects.</p>
http://stackoverflow.com/questions/1122202/whats-a-unit-test/1122216#11222160Answer by PSU_Kardi for What's a unit test?PSU_Kardi2009-07-13T21:36:05Z2009-07-13T21:36:05Z<p>In computer programming, unit testing is a software verification and validation method in which a programmer tests that individual units of source code are fit for use. A unit is the smallest testable part of an application. In procedural programming a unit may be an individual program, function, procedure, etc., while in object-oriented programming, the smallest unit is a class, which may belong to a base/super class, abstract class or derived/child class.</p>
<p><a href="http://en.wikipedia.org/wiki/Unit_testing" rel="nofollow">http://en.wikipedia.org/wiki/Unit_testing</a></p>
http://stackoverflow.com/questions/1121933/parsing-xml-using-php/1122049#11220490Answer by PSU_Kardi for Parsing XML using PHPPSU_Kardi2009-07-13T21:03:25Z2009-07-13T21:03:25Z<pre><code><?php
#Convert the String Into XML
$xml = new SimpleXMLElement($_POST['name']);
#Itterate through the XML for the data
$values = "VALUES('' , ";
foreach($xml->item as $item)
{
//you now have access to that aitem
}
?>
</code></pre>
http://stackoverflow.com/questions/1122024/net-c-datatables-and-datasets-how-to-relate-tables/1122032#11220320Answer by PSU_Kardi for .Net C# DataTables and DataSets, How to relate tablesPSU_Kardi2009-07-13T21:00:11Z2009-07-13T21:00:11Z<p>Have you looked into LINQ?</p>
<p><a href="http://msdn.microsoft.com/en-us/netframework/aa904594.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/netframework/aa904594.aspx</a></p>
http://stackoverflow.com/questions/1111433/deadlock-in-3rd-party-dll/1111472#11114720Answer by PSU_Kardi for Deadlock in 3rd Party dllPSU_Kardi2009-07-10T19:20:24Z2009-07-10T19:20:24Z<p>What about creating another thread - which is responsible for accessing this dll...That way the whole app doesn't freeze</p>
http://stackoverflow.com/questions/1110638/file-logger-in-c/1110687#11106870Answer by PSU_Kardi for File logger in C#PSU_Kardi2009-07-10T16:49:46Z2009-07-10T16:49:46Z<p>As pervious posters have suggested, I would say take a look into Log4Net - it's similar to Log4J and allows for a lot of functionality...</p>
<p>I would suggest reading : <a href="http://logging.apache.org/log4net/release/faq.html" rel="nofollow">http://logging.apache.org/log4net/release/faq.html</a></p>
http://stackoverflow.com/questions/1827102/managed-c-to-form-a-bridge-between-c-and-c/1827589#1827589Comment by PSU_Kardi on Managed C++ to form a bridge between c# and C++PSU_Kardi2009-12-01T17:12:57Z2009-12-01T17:12:57ZYou explained things a bit more - wish I could have selected both answers. Thanks!http://stackoverflow.com/questions/1500918/tab-between-fields-in-tableviewer/1501518#1501518Comment by PSU_Kardi on Tab between fields in TableViewerPSU_Kardi2009-10-08T20:07:54Z2009-10-08T20:07:54ZThat was the problemhttp://stackoverflow.com/questions/1528539/disable-jface-textcelleditor-field/1528737#1528737Comment by PSU_Kardi on DIsable JFace TextCellEditor Field PSU_Kardi2009-10-07T16:53:50Z2009-10-07T16:53:50ZI ended up doing it a bit different by making a CellModifier that implements ICellModifier
Just wish I could find something better than canEdit - like actually grey out the fieldhttp://stackoverflow.com/questions/1528539/disable-jface-textcelleditor-field/1528737#1528737Comment by PSU_Kardi on DIsable JFace TextCellEditor Field PSU_Kardi2009-10-07T14:37:33Z2009-10-07T14:37:33ZThanks, this might be what I need. Will be trying this today...hope I can check that green checkbox for youhttp://stackoverflow.com/questions/1500918/tab-between-fields-in-tableviewer/1501518#1501518Comment by PSU_Kardi on Tab between fields in TableViewerPSU_Kardi2009-10-01T17:11:34Z2009-10-01T17:11:34Zorg.eclipse.jface.viewers.TableViewer
does not accept a KeyListenerhttp://stackoverflow.com/questions/1390613/how-to-resolve-assertionfailedexception/1390631#1390631Comment by PSU_Kardi on How to resolve AssertionFailedExceptionPSU_Kardi2009-09-07T19:12:14Z2009-09-07T19:12:14ZSeems you were right on the returning a string part. Thank you!http://stackoverflow.com/questions/1359295/swt-setting-column-height-or-insert-new-line/1359456#1359456Comment by PSU_Kardi on SWT Setting Column Height or insert new linePSU_Kardi2009-08-31T22:24:23Z2009-08-31T22:24:23ZWell that explains the why, and I guess also means that they have no intent on fixing this any time soon....http://stackoverflow.com/questions/1218315/embed-a-browser-in-flexComment by PSU_Kardi on Embed a browser in FlexPSU_Kardi2009-08-02T17:53:48Z2009-08-02T17:53:48ZWell, I know I could just embed the SWF into the browser...but I'm curious to see if it's something that can be done.
It's a small project I'm messing with at home just to learn more about Flex and what not - kind of re-inventing the wheel to learn about the wheelhttp://stackoverflow.com/questions/1197089/advanced-oop-in-php5/1197123#1197123Comment by PSU_Kardi on Advanced OOP in PHP5?PSU_Kardi2009-07-28T23:15:59Z2009-07-28T23:15:59ZThe design pattern book impacted my career so much. It's a book I always have sitting next to my PChttp://stackoverflow.com/questions/1178965/flex-drupal-sharing-data/1178983#1178983Comment by PSU_Kardi on Flex + Drupal Sharing DataPSU_Kardi2009-07-26T04:59:34Z2009-07-26T04:59:34ZThanks again for that link - it proved quite useful http://stackoverflow.com/questions/1183495/drupal-rpc-faultComment by PSU_Kardi on Drupal RPC Fault PSU_Kardi2009-07-26T01:40:21Z2009-07-26T01:40:21ZApparently #2048 is a Security sandbox violation
Still not sure how to fix thishttp://stackoverflow.com/questions/1178965/flex-drupal-sharing-data/1178983#1178983Comment by PSU_Kardi on Flex + Drupal Sharing DataPSU_Kardi2009-07-24T17:27:03Z2009-07-24T17:27:03ZThanks, I think this may be pointing me towards what I need. This will help me over the weekendhttp://stackoverflow.com/questions/1160674/what-comes-after-eclipse-galileo/1160677#1160677Comment by PSU_Kardi on What comes after Eclipse Galileo?PSU_Kardi2009-07-21T17:50:18Z2009-07-21T17:50:18ZE4 really really has me interestedhttp://stackoverflow.com/questions/1134383/what-is-the-difference-between-asp-and-saas-models/1134419#1134419Comment by PSU_Kardi on What is the difference between ASP and SaaS models?PSU_Kardi2009-07-15T22:23:13Z2009-07-15T22:23:13ZThat's what I thought but I was modded down :(http://stackoverflow.com/questions/1122202/whats-a-unit-test/1122216#1122216Comment by PSU_Kardi on What's a unit test?PSU_Kardi2009-07-14T00:17:04Z2009-07-14T00:17:04ZI would but you gave me a bad URL...so not only do you fail at unit tests - you can't even provide real URLS in your arguments