User PintSizedCat - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T23:34:59Zhttp://stackoverflow.com/feeds/user/6414http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/420190/loop-through-pagefield-in-olap-cube-pivottable0Loop through PageField in OLAP Cube [PivotTable]PintSizedCat2009-01-07T12:46:58Z2009-11-27T04:00:03Z
<p>Hi, I'm trying to write a VBA script that will draw buttons beside the PageFields in a Pivot Table, these buttons will loop through the values in the PageField. I had this working for a regular Pivot Table, but I've been asked to adapt it for an OLAP Cube (External Data Source) and I can't work out how to find the values for a Member using VBA (for an OLAP Cube).</p>
<p>Can anyone help?</p>
<p>Previously I had the following</p>
<pre><code>Public Function Next_page(row)
Dim pivTable As PivotTable
Dim pgField As PivotField
Set pivTable = ActiveSheet.PivotTables(1)
For Each pgField In pivTable.PageFields
If pgField.DataRange.row = CInt(row) Then
If pgField.CurrentPage.Name = "(All)" Then
If pgField.PivotItems.Count > 0 Then
pgField.CurrentPage = pgField.PivotItems(1).Name
End If
Exit Function
End If
For j = 1 To pgField.PivotItems.Count Step 1
If pgField.PivotItems(j) = pgField.CurrentPage.Name Then
If (j < pgField.PivotItems.Count) Then
pgField.CurrentPage = pgField.PivotItems(j + 1).Name
Exit Function
End If
End If
Next j
Exit Function
End If
Next
</code></pre>
<p>End Function</p>
<p>But because the CurrentPage doesn't exist for an OLAP Cube it doesn't work.</p>
http://stackoverflow.com/questions/1764831/c-object-without-new2C++ Object without newPintSizedCat2009-11-19T16:57:17Z2009-11-20T09:44:11Z
<p>Hi, this is a really simple question but I havn't done c++ properly for years and so I'm a little baffled by this. Also, it's not the easiest thing (for me at least) to look up on the internet, not for trying.</p>
<p>Why doesn't this use the <code>new</code> keyboard and how does it work? </p>
<p>Basically, what's going on here?</p>
<pre><code>CPlayer newPlayer = CPlayer(position, attacker);
</code></pre>
http://stackoverflow.com/questions/70614/gnu-screen-survival-guide24GNU Screen Survival GuidePintSizedCat2008-09-16T09:12:43Z2009-11-06T14:57:33Z
<p>What do people think are not only the essential things you need to know about the excellent Screen utility but the things that you'd think worthwhile to teach someone, a beginner, from the ground up.</p>
<p>I've just introduced a friend to Screen and they're having a hard time getting used to it. So analogies and handy tips for remembering binds etc would be awesome.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1571840/listing-files-in-java-without-using-java-io/1571987#157198710Answer by PintSizedCat for Listing files in Java without using java.ioPintSizedCat2009-10-15T12:12:18Z2009-10-15T14:12:51Z<p>This is actually possible without having to write any JNI or make any Runtime calls.</p>
<pre><code>import java.net.URL;
import sun.net.www.content.text.PlainTextInputStream;
public class NoIO {
public static void main(String args[]) {
NoIO n = new NoIO();
n.doT();
}
public void doT() {
try {
//Create a URL from the user.dir (run directory)
//Prefix with the protocol file:/
//Users java.net
URL u = new URL("file:/"+System.getProperty("user.dir"));
//Get the contents of the URL (this basically prints out the directory
//list. Uses sun.net.www.content.text
PlainTextInputStream in = (PlainTextInputStream)u.getContent();
//Iterate over the InputStream and print it out.
int c;
while ((c = in.read()) != -1) {
System.out.print((char) c);
}
} catch(Exception e) {
e.printStackTrace();
}
}
}
</code></pre>
<p>It's amazing what a little thought and boredom will do (and an inability to jump to hasty conclusions (where there's a will, there's a way)).</p>
<p><strike>You could probably also do it using the ClassLoader, by overriding it, at some point Java has to iterate over all the files in the classpath, by hooking at that point you can print out all the files that it tries to load without using any kind of java.io.*.</strike></p>
<p>After some investigation I don't think this is possible very easily, certainly not for a homework assignment unless it's some kind of RE'ing assignment or Forensics assignment.</p>
http://stackoverflow.com/questions/1571438/how-to-match-book-title-and-isbn-with-regex/1571493#15714930Answer by PintSizedCat for How to match book title and isbn with regex?PintSizedCat2009-10-15T10:21:05Z2009-10-15T10:21:05Z<pre><code>/book/[a-zA-Z0-9-]+/([0-9]{10}|[0-9]{13})/
</code></pre>
<p>This does exactly what you want</p>
<ul>
<li>[a-zA-Z0-9-]+ : Tests for one or more alphanumeric characters</li>
<li>([0-9]{10}|[0-9]{13}) : Tests for 10 digits or 13 digits</li>
</ul>
http://stackoverflow.com/questions/1571175/passing-large-c-structure-through-jni-efficiently/1571234#15712341Answer by PintSizedCat for Passing large C structure through JNI efficientlyPintSizedCat2009-10-15T09:26:37Z2009-10-15T09:26:37Z<p>I'm sorry I don't have time to write an indepth answer or look in to this further but a while ago I had to do quite a lot of work with JNI and I found that using SWiG help hugely. I'm not sure of its efficiency but I imagine it generates pretty efficient code.</p>
<p>Anyway, check it out <a href="http://www.swig.org/" rel="nofollow">SWiG</a> there's a bit on <a href="http://www.swig.org/Doc1.3/SWIG.html#SWIG%5Fnn22" rel="nofollow">Passing structures by value</a> and main <a href="http://www.swig.org/Doc1.3/SWIG.html#SWIG%5Fnn31" rel="nofollow">Structures</a>.</p>
<p>Good luck.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1005851#10058511Answer by PintSizedCat for Good excuses NOT to use version controlPintSizedCat2009-06-17T08:43:04Z2009-06-17T08:43:04Z<p>I thought it maybe worth adding quickly that if you're on a strict short term deadline and don't know how to use source control it's probably better not to go through the paces. yes it's easy to use, but it may not be worth it in the long run. (This happened to my brother recently as he go thrown in to a programming role he probably wasn' prepared for).</p>
http://stackoverflow.com/questions/956749/how-can-i-transform-xml-into-a-liststring-or-string2How can I transform XML into a List<string> or String[]?PintSizedCat2009-06-05T16:10:27Z2009-06-16T12:20:36Z
<p>How can I transform the following XML into a <code>List<string></code> or <code>String[]</code>:</p>
<pre><code><Ids>
<id>1</id>
<id>2</id>
</Ids>
</code></pre>
http://stackoverflow.com/questions/949379/limit-availableprocessors0Limit availableProcessorsPintSizedCat2009-06-04T09:03:23Z2009-06-04T23:56:33Z
<p>I had a problem a while ago whilst using Solaris that I wanted to limit the number of CPUs that Java could see (that was returned by <code>Runtime.getRuntime().availableProcessors()</code>. I thought I had it and I was given some info for Linux and took it on faith. I was told that using <code>taskset</code> would limit the number of CPUs that java would use (which is true, it does) but it does not change what is returned by <code>availableProcessors()</code>.</p>
<p>I've searched quite a bit to find some way of changing this <code>availableProcessors()</code> return value and I haven't managed to find anything. Does anyone know a way to limit it or why <code>taskset -c 0,1 java -cp ./ Test</code> would not work.</p>
<p>Test.java</p>
<pre><code>public class Test {
public static void main(String args[]) {
System.out.println(Runtime.getRuntime().availableProcessors());
}
}
</code></pre>
<p>Cheers</p>
http://stackoverflow.com/questions/914588/setting-java-to-use-one-cpu5Setting java to use one cpuPintSizedCat2009-05-27T08:29:09Z2009-05-27T17:35:05Z
<p>I have an application that has a license for a set number of cpus and I want to be able to set the number of cpus that java runs in to 1 before the check is done. I am running Solaris and have looked at <code>pbind</code> but thought that if I started the application and then used pbind it would have checked the license before it had set the number of CPUs that java could use.</p>
<p>Does anyone know a way of starting an application with a set number of CPUs on Solaris?</p>
http://stackoverflow.com/questions/556714/how-does-the-stack-work-in-assembly-language/556770#55677022Answer by PintSizedCat for How does the stack work in assembly language?PintSizedCat2009-02-17T13:24:28Z2009-05-12T02:12:56Z<p>I think primarily you're getting confused between a <code>program's stack</code> and <code>any old stack</code>.</p>
<p><strong>A Stack</strong></p>
<p>Is an abstract data structure which consists of information in a Last In First Out system. You put arbitrary objects onto the stack and then you take them off again, much like an in/out tray, the top item is always the one that is taken off and you always put on to the top.</p>
<p><strong>A Programs Stack</strong></p>
<p>Is a stack, it's a section of memory that is used during execution, it generally has a static size per program and frequently used to store function parameters. You push the parameters onto the stack when you call a function and the function either address the stack directly or pops off the variables from the stack.</p>
<p>A programs stack isn't generally hardware (though it's kept in memory so it can be argued as such), but the Stack Pointer which points to a current area of the Stack is generally a CPU register. This makes it a bit more flexible than a LIFO stack as you can change the point at which the stack is addressing.</p>
<p>You should read and make sure you understand the <a href="http://en.wikipedia.org/wiki/Stack_(data_structure)" rel="nofollow">wikipedia</a> article as it gives a good description of the Hardware Stack which is what you are dealing with.</p>
<p>There is also <a href="http://www.xs4all.nl/~smit/asm01001.htm#stack" rel="nofollow">this tutorial</a> which explains the stack in terms of the old 16bit registers but could be helpful and <a href="http://www.emu8086.com/assembly_language_tutorial_assembler_reference/asm_tutorial_09.html" rel="nofollow">another one</a> specifically about the stack.</p>
<p>From Nils Pipenbrinck:</p>
<p>It's worthy of note that some processors do not implement all of the instructions for accessing and manipulating the stack (push, pop, stack pointer, etc) but the x86 does because of it's frequency of use. In these situations if you wanted a stack you would have to implement it yourself (some MIPS and some ARM processors are created without stacks).</p>
<p>For example, in MIPs a push instruction would be implemented like:</p>
<pre><code>addi $sp, $sp, -4 # Decrement stack pointer by 4
sw $t0, ($sp) # Save $t0 to stack
</code></pre>
<p>and a Pop instructino would look like:</p>
<pre><code>lw $t0, ($sp) # Copy from stack to $t0
addi $sp, $sp, 4 # Increment stack pointer by 4
</code></pre>
http://stackoverflow.com/questions/408511/what-development-tools-do-you-carry-on-your-usb-drive/835167#8351675Answer by PintSizedCat for What development tools do you carry on your USB drive?PintSizedCat2009-05-07T14:58:06Z2009-05-07T15:04:12Z<p>I have a lot on one of my keys, mostly asm related.</p>
<ul>
<li><a href="http://www.ollydbg.de/" rel="nofollow">OllyDbg</a></li>
<li><a href="http://www.winhex.com/winhex/" rel="nofollow">WinHex</a></li>
<li><a href="http://www.masm32.com/" rel="nofollow">Masm32</a></li>
<li><a href="http://www.oby.ro/rad%5Fasm/" rel="nofollow">RadAsm</a></li>
<li><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" rel="nofollow">Putty</a></li>
<li><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" rel="nofollow">Psftp</a></li>
<li><a href="http://www.opera-usb.com/operausben.htm" rel="nofollow">Portable Opera</a></li>
<li><a href="http://www.red-gate.com/products/reflector/" rel="nofollow">.Net Reflector</a></li>
<li><a href="http://portableapps.com/apps/internet/firefox%5Fportable" rel="nofollow">Portable Firefox</a></li>
</ul>
<p>I also have</p>
<ul>
<li><a href="http://infrarecorder.org/" rel="nofollow">InfraRecorder</a></li>
<li><a href="http://mediacoder.sourceforge.net/" rel="nofollow">MediaCoder</a></li>
<li><a href="http://www.gnucash.org/" rel="nofollow">GnuCash</a></li>
</ul>
<p>And some other stuff that I can't remember as I don't have it on me :'(</p>
<p>I also have a usb key with <a href="http://www.remote-exploit.org/backtrack%5Fdownload.html" rel="nofollow">backtrack3</a> on it and one with a windows image that I can use to install it on my netbook really quickly. I think <a href="http://weblogzz.blogspot.com/2008/01/install-windows-from-pen-drive.html" rel="nofollow">this</a> is a good guide on doing that.</p>
http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/793756#7937563Answer by PintSizedCat for What was your first computer game that got you interested in computers?PintSizedCat2009-04-27T14:30:09Z2009-04-27T14:30:09Z<p><a href="http://en.wikipedia.org/wiki/Chuckie%5FEgg" rel="nofollow">Chuckie Egg</a> on the <a href="http://en.wikipedia.org/wiki/BBC%5FMicro" rel="nofollow">BBC Micro</a>. </p>
<p><img src="http://upload.wikimedia.org/wikipedia/en/9/9a/ElectronChuckieEgg.png" alt="Chuckie Egg Screenshot" /></p>
<p>Apparently I used to sit on my dads lap and watch him play when I was a very wee lad.</p>
http://stackoverflow.com/questions/785581/how-to-ensure-that-a-program-is-running-and-restart-it-if-needed/785597#7855976Answer by PintSizedCat for How to ensure that a program is running and restart it if needed ?PintSizedCat2009-04-24T12:13:36Z2009-04-24T12:13:36Z<p>I believe the easiest way to do this is to have a script that will start your program and if it gets returned to it just restarts it.</p>
<pre><code>#!/bin/sh
while true; do
./Your_program
done
</code></pre>
http://stackoverflow.com/questions/643172/sheetbeforedoubleclick-not-working-from-com-addin1SheetBeforeDoubleClick not working from COM AddinPintSizedCat2009-03-13T15:13:58Z2009-04-15T21:48:09Z
<p>I'm trying to write a COM add in for Excel in C# that disables the ability to double click a cell and then edit it, I want to popup a box saying that editing a cell this way is prohibited and then stop all execution.</p>
<p>Looking through the documentation at Microsoft this seems like a very easy task, you create an Application event <code>AppEvents_SheetBeforeDoubleClickEventHandler</code> with the signature <code>func(object sheet, Range Target, ref bool Cancel)</code> and you set <code>Cancel</code> to true so that execution stops. However, this isn't happening.</p>
<p>I have the following:</p>
<pre><code>public void OnConnection(object application, Extensibility.ext_ConnectMode connectMode, object addInInst, ref System.Array custom)
{
Excel.Application app = application as Excel.Application;
app.SheetBeforeDoubleClick += Excel.AppEvents_SheetBeforeDoubleClickEventHandler(beforeDoubleClick);
}
void beforeDoubleClick(object sheet, Excel.Range Target, ref bool Cancel)
{
MessageBox.Show("Cannot edit cells this way sorry.");
Cancel = true;
}
</code></pre>
<p>The message box is shown, but the cell is then put into edit mode, however, if I have the same thing from VBA it works.</p>
<p>The exact same thing happens with a VB.NET addin using the following code.</p>
<pre><code>Private WithEvents app As Excel.Application
Public Sub OnConnection(ByVal application As Object,
ByVal connectMode As Extensibility.ext_ConnectMode,
ByVal addInInst As Object,
ByRef custom As System.Array)
Implements Extensibility.IDTExtensibility2.OnConnection
app = application
End Sub
Sub Worksheet1_BeforeDoubleClick(ByVal obj As Object,
ByVal Target As Excel.Range,
ByRef Cancel As Boolean)
Handles app.SheetBeforeDoubleClick
MsgBox("Double-clicking in this sheet is not allowed.")
Cancel = True
End Sub
</code></pre>
<p>I'm using Excel XP :(</p>
http://stackoverflow.com/questions/730321/what-is-the-memory-overhead-of-a-java-method/730390#7303901Answer by PintSizedCat for What is the memory overhead of a Java method?PintSizedCat2009-04-08T14:52:25Z2009-04-08T14:52:25Z<p>As a few other people at least have said, the method is not stored in the serialization.</p>
<p>You can easily do a test to show this in this example with the following code.</p>
<pre><code>import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.io.Serializable;
public class SerializationTest {
public static void main(String[] args) {
serialize(true);
serialize(false);
}
public static void serialize(boolean aOrB) {
FileOutputStream fos = null;
ObjectOutputStream out = null;
try {
fos = new FileOutputStream("output.txt");
out = new ObjectOutputStream(fos);
out.writeObject(aOrB ? new A() : new B());
out.close();
fos.close();
} catch (IOException ex) {
ex.printStackTrace();
}
File file = new File("output.txt");
System.out.println(file.length());
}
public static class A implements Serializable {
int a = 0;
}
public static class B implements Serializable {
int a = 0;
public int foo(int a) {
return a;
}
}
}
</code></pre>
<p>For me this prints out</p>
<pre><code>48
48
</code></pre>
http://stackoverflow.com/questions/658407/static-methods18Static methodsPintSizedCat2009-03-18T14:12:47Z2009-04-07T07:01:43Z
<p>I've just had an argument with someone I work with and it's really bugging me. If you have a class which just has methods like <code>calculateRisk</code> or/and <code>calculatePrice</code>, the class is immutable and has no member variables, should the methods be static so as not to have to create an instance of the class each time. I use the following example:</p>
<pre><code>public class CalcService {
public int calcPrice(Trade trade, Date date) {
...
}
public double calcRisk(Trade trace, Date date) {
...
}
}
</code></pre>
<p>Should those methods be <code>static</code>?</p>
http://stackoverflow.com/questions/697169/using-firefox-only-css-to-round-corners-of-elements/697208#6972080Answer by PintSizedCat for Using firefox only CSS to round corners of elements?PintSizedCat2009-03-30T13:32:48Z2009-03-30T13:35:04Z<p><img src="http://upload.wikimedia.org/wikipedia/en/0/06/Pitfall!_Coverart.png"/></p>
<p>such as annoying other browser users because you use firefox specific css when one always thought that firefox was meant to comply with standards and not do what Microsoft did.</p>
<p>You realise that people will start moaning about websites using firefox specific functionality in the same way that people, at the moment, moan about sites using IE specific functionality. Hypocricy for the lose.</p>
<p>::End Rant::</p>
http://stackoverflow.com/questions/696378/where-and-how-does-software-meet-hardware/696520#6965201Answer by PintSizedCat for Where and how does software meet hardware?PintSizedCat2009-03-30T09:09:11Z2009-03-30T09:09:11Z<p>I'd very much suggest that you read the book <a href="http://rads.stackoverflow.com/amzn/click/0735611319" rel="nofollow">Code</a>, it gives a detailed history of how the computer evolved from different systems.</p>
<p>It's very engaging and will explain to you how things evolved from morse code through to a simple adding machine and then on to some assembly. It should give you a picture of exactly how machine instructions are interpretted and used by the hardware of a CPU, memory, etc.</p>
http://stackoverflow.com/questions/672890/error-while-copying-from-network-share-this-page-has-an-unspecified-potential-se0Error while copying from network share "This page has an unspecified potential security flaw."PintSizedCat2009-03-23T10:38:58Z2009-03-23T18:42:17Z
<p>I recently reinstalled XP and then SP3 and I'm currently getting an error whenever I try and copy something from a network share.</p>
<pre><code>Title: Internet Explorer
Message: This page has an unspecified potential security flaw.
Would you like to continue?
</code></pre>
<p>I believe it's related to <a href="http://support.microsoft.com/kb/921398" rel="nofollow">KB921398 (MS06-045)</a> and I'm currently uninstalling SP3, but does anyone know if there is another way to disable this specific update? It does not appear in Add & Remove Programs.</p>
<p>There's a temporary fix by adding any network ip masks to the trusted intranet zones in Internet Explorer's Security settings, but it's no fix :(</p>
http://stackoverflow.com/questions/638892/converting-visual-studio-2008-project-to-20031Converting Visual Studio 2008 project to 2003PintSizedCat2009-03-12T14:35:23Z2009-03-12T14:51:07Z
<p>Very blunt and to the point, but does anyone know how to convert a visual studio 2008 project to visual studio 2003, I'm meant to be delivering some stuff to a client and they only work in 2003.</p>
<p>Sorry someone makes a very good point, what language, C# is the answer.</p>
<p>I've done a bunch of searches on Google and tend to only come up with 2003->2008 and not visa versa, I would very much appreciate any help.</p>
http://stackoverflow.com/questions/638099/desagree-in-excel/638619#6386190Answer by PintSizedCat for desagree in excelPintSizedCat2009-03-12T13:25:12Z2009-03-12T14:29:29Z<p>This code should be what you are looking for, the method <code>ExpandData(String, String, String)</code> takes the start column for the set of data (in this case "A") for the first parameter, the end column for the set of data to copy as the second parameter (in this case "D") and finally the column with the set of data that is comma seperated ("E" here).</p>
<p>You should probably expand it so that it also takes a starting row or just make it an addin formula thing where it takes a range and a column. </p>
<p>Hope this helps.</p>
<pre><code>Sub ExpandDat()
ExpandData "A", "D", "E"
End Sub
Sub ExpandData(start_range As String, end_range As String, comma_column As String)
Const FirstRow = 1
Dim LastRow As Long
LastRow = Range(start_range & CStr(Rows.Count)).End(xlUp).Row
' Get the values from the worksheet '
Dim SourceRange As Range
Set SourceRange = Range(start_range & CStr(FirstRow) & ":" & end_range & CStr(LastRow))
' Get the comma seperated values as a different set of values '
Dim CommaRange As Range
Set CommaRange = Range(comma_column & CStr(FirstRow) & ":" & comma_column & CStr(LastRow))
' Get the values from the actual values '
Dim Vals() As Variant
Vals = SourceRange.Value
' We need to know the upper and lower bounds of the second dimension in the Vals Array '
Dim lower As Integer
Dim upper As Integer
lower = LBound(Vals, 2)
upper = UBound(Vals, 2)
' Get the comma seperated values '
Dim Commas() As Variant
Commas = CommaRange.Value
' Loop through the rows in the array and split each comma-delimited list of items and put each on its own row '
Dim ArrIdx As Long
Dim RowCount As Long
For ArrIdx = LBound(Commas, 1) To UBound(Commas, 1)
Dim CurrList As String
CurrList = Replace(Commas(ArrIdx, 1), " ", "")
' Split the Comma set into an array '
Dim ListItems() As String
ListItems = Split(CurrList, ",")
' For each value in the Comma Seperated values write the output '
Dim ListIdx As Integer
For ListIdx = LBound(ListItems) To UBound(ListItems)
' Loop through the values in our source range and output them '
For Idx = lower To upper
Range(start_range & CStr(FirstRow + RowCount)).Offset(0, Idx - 1).Value = Vals(ArrIdx, Idx)
Next Idx
Range(comma_column & CStr(FirstRow + RowCount)).Value = ListItems(ListIdx)
RowCount = RowCount + 1
Next ListIdx
Next ArrIdx
End Sub
</code></pre>
http://stackoverflow.com/questions/618408/visual-studio-addin-development-how-to-resolve-the-the-process-cannot-access-t/618432#6184320Answer by PintSizedCat for Visual Studio Addin Development - How to resolve the "The process cannot access the file" problem after exiting visual studio?PintSizedCat2009-03-06T10:52:21Z2009-03-06T10:52:21Z<p>You can set the behavior of the addin and how it loads, I'd set it to 'load on demand' which I'm currently trying to find you some information on.</p>
<p>I can't find anything official but if you go to the Setup project, right click and select "View Registry" it'll show you all the registry keys that are created. Navigate down to the level for your addin and change the 'LoadBehavior' from '3' to '2'.</p>
<p>From then on you should be able to load your add-in using the Addin Manager.</p>
<p>I'll try and update with more information when I can get it, hope it helps.</p>
http://stackoverflow.com/questions/594317/php-embedded-in-javascript/594345#5943458Answer by PintSizedCat for PHP Embedded in JavascriptPintSizedCat2009-02-27T11:09:01Z2009-02-27T11:40:55Z<p>You're trying to embed a server based language in a client-side based language.
This will not work.</p>
<p>If you could explain a bit more what it is you're trying to achieve there might be a better solution, like AJAXie type thing.</p>
<p>Let me explain a bit more as others have given answers that could be put here.</p>
<p>You can have <code>php</code> embedded inside your *.php files which will be interpretted on the server and parsed there. Using this you can set variables which javascript could pick up on later and use on the client-side. Like I said though the client side doesn't have a route for intpretting and parsing <code>php</code> and so sending <code>php</code> across to the user is not going to work.</p>
<p>If you are however trying to get things working so that your php sets some javascript values then I would, like Gary Willough and Tudor Olariu both say, add the php tags</p>
<pre><code><?php
... PHP CODE...
?>
</code></pre>
<p>However, you have to realise this will be interpretted on the server and not on the client. Therefore the following code would alert with "outside php" and then "inside php".</p>
<pre><code><script language="JavaScript">
function fonsubmit()
{
alert('outside php');
<?php
$message = "inside php";
echo "alert('$message');";
?>
}
</script>
</code></pre>
<p>The html sent to the user would then be</p>
<pre><code><script language="JavaScript">
function fonsubmit()
{
alert('outside php');
alert('inside php');
}
</script>
</code></pre>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/570096/how-do-i-investigate-my-java-based-web-service-from-net/570235#570235-1Answer by PintSizedCat for How do I investigate my java-based web service from .NET?PintSizedCat2009-02-20T16:27:33Z2009-02-20T16:27:33Z<p>This is really simple, or I found it really simple when I did it with our Java based web-service hosted in tomcat.</p>
<ul>
<li>Start a new Solution of any kind in Visual Studio (should work in express).</li>
<li>Right click the References folder in your Project and select Service Reference.</li>
<li>Then put in your wsdl path into the address box and click Go.</li>
<li>This retrieves information about your webservice from the wsdl and you'll be able to create a WebService reference from that.</li>
<li>Then you can just use this like a Class and call the methods.</li>
</ul>
<p>Sorry this isn't really well written and thought out but I don't currently have much time, good luck.</p>
http://stackoverflow.com/questions/567579/how-expensive-are-exceptions/569821#5698211Answer by PintSizedCat for How expensive are ExceptionsPintSizedCat2009-02-20T14:52:55Z2009-02-20T15:58:45Z<p>I haven't bothered to read up on Exceptions but doing a very quick test with some modified code of yours I come to the conclusion that the Exception circumstance quite a lot slower than the boolean case.</p>
<p>I got the following results:</p>
<pre><code>Exception:20891ms
Boolean:62ms
</code></pre>
<p>From this code:</p>
<pre><code>public class Test {
public static void main(String args[]) {
Test t = new Test();
t.testException();
t.testBoolean();
}
public void testException() {
long start = System.currentTimeMillis();
for(long i = 0; i <= 10000000L; ++i)
doSomethingException();
System.out.println("Exception:" + (System.currentTimeMillis()-start) + "ms");
}
public void testBoolean() {
long start = System.currentTimeMillis();
for(long i = 0; i <= 10000000L; ++i)
doSomething();
System.out.println("Boolean:" + (System.currentTimeMillis()-start) + "ms");
}
private void doSomethingException() {
try {
doSomethingElseException();
} catch(DidNotWorkException e) {
//Msg
}
}
private void doSomethingElseException() throws DidNotWorkException {
if(!isSoAndSo()) {
throw new DidNotWorkException();
}
}
private void doSomething() {
if(!doSomethingElse())
;//Msg
}
private boolean doSomethingElse() {
if(!isSoAndSo())
return false;
return true;
}
private boolean isSoAndSo() { return false; }
public class DidNotWorkException extends Exception {}
}
</code></pre>
<p>I foolishly didn't read my code well enough and previously had a bug in it (how embarassing), if someone could triple check this code I'd very much appriciate it, just in case I'm going senile.</p>
<p>My specification is:</p>
<ul>
<li>Compiled and run on 1.5.0_16</li>
<li>Sun JVM</li>
<li>WinXP SP3</li>
<li>Intel Centrino Duo T7200 (2.00Ghz, 977Mhz)</li>
<li>2.00 GB Ram</li>
</ul>
<p>In my opinion you should notice that the non-exception methods don't give the log error in doSomethingElse but instead return a boolean so that the calling code can deal with a failure. If there are multiple areas in which this can fail then logging an error inside or throwing an Exception might be needed.</p>
http://stackoverflow.com/questions/560469/pivot-table-grand-total-at-the-top0Pivot Table Grand Total at the topPintSizedCat2009-02-18T10:08:23Z2009-02-19T00:53:13Z
<p>We have an Excel spreadsheet with the Grand Totals at the top using a Forumla, but this isn't on the actual Pivot Table it's just in the spreadsheet.</p>
<p>We have a client that wants the Grand Totals at the top of the Pivot Table and doesn't want us to use Formula. Does anyone know if this is possible (even using VBA or something, just so long as we don't look for a specific column or row name and compare with it (so no GETPIVOTDATA("Grand Total...)))?</p>
http://stackoverflow.com/questions/557905/why-is-building-a-cross-compiler-harder-than-building-a-regular-compiler/557966#5579660Answer by PintSizedCat for Why is building a cross-compiler harder than building a regular compiler?PintSizedCat2009-02-17T17:54:35Z2009-02-17T17:54:35Z<p>This answers for the following question may help you out in understanding why this would be hard.</p>
<p><a href="http://stackoverflow.com/questions/545455/why-cant-we-create-programs-cross-platforms-these-days/545528">http://stackoverflow.com/questions/545455/why-cant-we-create-programs-cross-platforms-these-days/545528</a></p>
<p>I feel it all comes down to different operating systems calling native IO in different ways. To build a platform-independant compiler you're going to have to know exactly how all the nitty gritty works and basically build an OS.</p>
<p>[I will update when I get home as I have to depart work now]</p>
http://stackoverflow.com/questions/553082/do-you-code-variables-in-your-language/553136#5531361Answer by PintSizedCat for Do you code variables in your language?PintSizedCat2009-02-16T12:15:50Z2009-02-16T12:15:50Z<p>Where I can I try and convert those around me to our Great British way of thinking by naming variables with British English. It also creates a great game whereby you see how long you can go with variables that are coded in British English and changing other peoples code so it's British English.</p>
<p>If I were writing client facing code I would probably code in British English through habit but I wouldn't be so tactless as to change interface design for such a thing.</p>
http://stackoverflow.com/questions/545455/why-cant-we-create-programs-cross-platforms-these-days/545528#54552810Answer by PintSizedCat for Why can't we create programs cross-platforms these days?PintSizedCat2009-02-13T10:46:07Z2009-02-13T11:21:39Z<p>This issue is deeper than most people are laying out, Java is still not really platform independent as it won't run on all x86 or x64 OSs, you still need a VM to run ontop of the OS. It isn't even close to what you propose as you still need an OS dependent runtime to execute the 'independent' bytecode.</p>
<p>The problem comes with the fact that most executables are overlaying the OS and using it as a kind of framework. As soon as you place some kind of OS dependent code into your application, you screw your chances of making it independent. Disc IO, network IO, Graphical UI, getting system information, any of these things will impact how and why your code can't be independent.</p>
<p>There is also the problem of what an executable is, on windows you have <a href="http://en.wikipedia.org/wiki/Portable_Executable" rel="nofollow">PE</a> whereas on most linux OSs you have <a href="http://en.wikipedia.org/wiki/Executable_and_Linkable_Format" rel="nofollow">ELF</a>. These have different structures and different loading styles. How they are loaded and executed is up to the OS and not a matter for the executable.</p>
<p>You can see the difference between the two formats in this image (taken from <a href="http://software.intel.com/en-us/articles/keeping-memory-in-mind/" rel="nofollow">here</a>:
<img src="http://software.intel.com/file/9800"></p>
<p>Basically the problem comes that there is no standard for the way in which executable/binary files are structured and loaded into a computer. Then, atop of that is the framework and functionality of the OS. It's a far more complex problem but one that isn't going to be solved as long as companies want to have OS specific functionality.</p>
http://stackoverflow.com/questions/1764831/c-object-without-new/1764851#1764851Comment by PintSizedCat on C++ Object without newPintSizedCat2009-11-19T17:17:09Z2009-11-19T17:17:09ZIf this creates an object on the stack can it live past the function it was created in's scope?http://stackoverflow.com/questions/1764831/c-object-without-new/1764851#1764851Comment by PintSizedCat on C++ Object without newPintSizedCat2009-11-19T17:00:50Z2009-11-19T17:00:50ZBrilliant, thanks.http://stackoverflow.com/questions/1571840/listing-files-in-java-without-using-java-ioComment by PintSizedCat on Listing files in Java without using java.ioPintSizedCat2009-10-15T11:50:02Z2009-10-15T11:50:02ZThis is a pretty crazy homework assignment if it is one. If it's not it's a pretty crazy requirement. Makes no sense at all.http://stackoverflow.com/questions/1529703/how-to-create-a-excel-file-with-sheets-in-c/1529758#1529758Comment by PintSizedCat on How to create a excel file with sheets in C#?PintSizedCat2009-10-15T09:31:38Z2009-10-15T09:31:38ZThis should be how you do it, don't use any kind of third party libraries. The PIAs are really easy to use though you have to make sure of the releasing at the end see <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;317109" rel="nofollow">support.microsoft.com/default.aspx?scid=kb;en-us;…</a> .http://stackoverflow.com/questions/725640/optimize-memory-usage-of-a-collection-of-strings-in-java/725866#725866Comment by PintSizedCat on Optimize memory usage of a collection of Strings in JavaPintSizedCat2009-08-27T14:59:21Z2009-08-27T14:59:21ZInterning a string will not mean that it will 'never go away', you can garbage collect the perm gen though it may not be so efficient it can and will get garbage collected if there are no strong references to it.http://stackoverflow.com/questions/1159500/winforms-combox-adding-item-to-a-databound-list-and-then-setting-that-to-be-theComment by PintSizedCat on WinForms Combox - Adding item to a databound list and then setting that to be the selecteditemPintSizedCat2009-07-21T14:32:50Z2009-07-21T14:32:50ZWhy are you doing Count + 1, I thought Count would be 1 base at least so if anything it'd be Count -1.http://stackoverflow.com/questions/1158667/why-use-finally-in-try-catch/1158683#1158683Comment by PintSizedCat on Why use Finally in Try ... CatchPintSizedCat2009-07-21T13:36:14Z2009-07-21T13:36:14ZWell, you can do something about it, you can design/write your code so it doesn't use Exceptions for flow control and don't use the finally block for similar things. Finally should be used for cleaning up, which should always occur.http://stackoverflow.com/questions/956749/how-can-i-transform-xml-into-a-liststring-or-stringComment by PintSizedCat on How can I transform XML into a List<string> or String[]?PintSizedCat2009-06-12T15:24:09Z2009-06-12T15:24:09ZYour answer is exactly what I wanted thank you, although I would like to list more than one as the correct answer I cannot but yours is the one I used.http://stackoverflow.com/questions/914588/setting-java-to-use-one-cpu/914664#914664Comment by PintSizedCat on Setting java to use one cpuPintSizedCat2009-05-28T08:25:58Z2009-05-28T08:25:58ZIt should do, taskset changes the results of availableProcessors().http://stackoverflow.com/questions/914588/setting-java-to-use-one-cpu/914635#914635Comment by PintSizedCat on Setting java to use one cpuPintSizedCat2009-05-27T08:42:54Z2009-05-27T08:42:54ZYeah, thanks, but unfortunatley that doesn't really answer my question.http://stackoverflow.com/questions/99880/generating-a-unique-machine-id/99904#99904Comment by PintSizedCat on Generating a unique machine idPintSizedCat2009-05-22T11:26:50Z2009-05-22T11:26:50ZMac address can be spoofedhttp://stackoverflow.com/questions/857016/php-how-to-create-count-down-timer/857066#857066Comment by PintSizedCat on PHP, how to create count down timer?PintSizedCat2009-05-13T10:56:56Z2009-05-13T10:56:56ZI don't really know how it works but if seconds <= 1 then if it takes them longer than a second to connect to the new host won't the js keep running and they could just keep trying to connect?http://stackoverflow.com/questions/856772/create-installer/856798#856798Comment by PintSizedCat on Create InstallerPintSizedCat2009-05-13T09:23:01Z2009-05-13T09:23:01Zoh, I see what you mean. so you install it when you compile as opposed to deploying an installation to a client/server machine?http://stackoverflow.com/questions/856772/create-installer/856815#856815Comment by PintSizedCat on Create InstallerPintSizedCat2009-05-13T08:59:55Z2009-05-13T08:59:55ZOnly since your last update and still you center around installation of jars which is very different from what is being asked and it clearly isn't 'java software' is it?http://stackoverflow.com/questions/856298/simple-way-to-rename-all-java-classes-fields-and-methods/856826#856826Comment by PintSizedCat on Simple way to rename all java classes, fields and methods?PintSizedCat2009-05-13T08:55:06Z2009-05-13T08:55:06ZIt'd be prone to messiness and takes a long time.