User Gili - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T21:46:42Zhttp://stackoverflow.com/feeds/user/14731http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1301511/how-to-create-read-only-network-share-programmatically0How to create read-only network share programmatically?Gili2009-08-19T17:42:42Z2009-12-18T17:00:02Z
<p>How does one create an administrative network share [1] with read-only permissions from C/C++ or Python under Windows XP?</p>
<p>[1] Necessary in order to access C:\Program Files over the share.</p>
http://stackoverflow.com/questions/1882487/why-does-repaintlong-repaint-immediately1Why does repaint(long) repaint immediately?Gili2009-12-10T17:12:00Z2009-12-15T12:54:41Z
<p>According to the Javadoc, <a href="http://java.sun.com/javase/6/docs/api/java/awt/Component.html#repaint%28long%29" rel="nofollow">JComponent.repaint(long)</a> is supposed to schedule a repaint() sometime in the future. When I try using it it always triggers an immediate repaint. What am I doing wrong?</p>
<pre><code>import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.Timer;
public class Repaint
{
public static final boolean works = false;
private static class CustomComponent extends JPanel
{
private float alpha = 0;
@Override
protected void paintComponent(Graphics g)
{
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g;
g2d.setComposite(
AlphaComposite.getInstance(AlphaComposite.SRC_OVER, alpha));
g2d.setPaint(Color.BLACK);
g2d.fillRect(0, 0, getWidth(), getHeight());
alpha += 0.1;
if (alpha > 1)
alpha = 1;
System.out.println("alpha=" + alpha);
if (!works)
repaint(1000);
}
}
public static void main(String[] args)
{
final JFrame frame = new JFrame();
frame.getContentPane().add(new CustomComponent());
frame.setSize(800, 600);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.setVisible(true);
if (works)
{
new Timer(1000, new ActionListener()
{
@Override
public void actionPerformed(ActionEvent e)
{
frame.repaint();
}
}).start();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1244861/live-video-streaming-using-java0Live video streaming using Java?Gili2009-08-07T14:01:02Z2009-12-11T22:33:12Z
<p>Are there any good libraries for streaming live video using Java? Ideally both ends of the pipe should be written in Java but I am mostly concerned about the video player. What software would you recommend?</p>
<p><strong>UPDATE</strong>: It seems that VLC introduces a 1-2 second delay. I need video streaming that is truly live. The record-to-playback delay must be under 300ms.</p>
http://stackoverflow.com/questions/422956/java-swing-or-java-qt21Java Swing or Java Qt?Gili2009-01-08T01:54:50Z2009-12-11T18:58:38Z
<p>Can someone with extensive experience with both Qt and Java Swing please discuss whether you would use Swing or Qt under Java, and why?</p>
<p>Secondly, what is the business impact of using Qt? Is it reasonably popular or will I have a hard time finding experienced Qt developers? Are there any other business impacts I should be aware of?</p>
<p><strong>UPDATE</strong>: I am more interested in the technical and business impacts of Swing vs Qt than the license type/fee since in my case the cost is not a concern.</p>
http://stackoverflow.com/questions/957337/what-is-the-difference-between-dtr-dsr-and-rts-cts-flow-control6What is the difference between DTR/DSR and RTS/CTS flow control?Gili2009-06-05T18:21:25Z2009-12-04T21:19:57Z
<p>What's the difference between DTR/DSR and RTS/CTS hardware flow control? When is each one used? Why do we need more than one kind of hardware flow control? :)</p>
http://stackoverflow.com/questions/996843/when-is-crc-more-appropriate-to-use-than-md5-sha110When is CRC more appropriate to use than MD5/SHA1?Gili2009-06-15T15:43:51Z2009-12-03T08:36:56Z
<p>When is it appropriate to use CRC for error detection versus more modern hashing functions such as MD5 or SHA1? Is the former easier to implement on embedded hardware?</p>
http://stackoverflow.com/questions/599048/http-digest-authentication-versus-ssl2HTTP Digest Authentication versus SSLGili2009-03-01T01:18:55Z2009-11-30T21:52:33Z
<p>What is the difference between <code>HTTP Digest Authentication</code> and <code>SSL</code> from a performance, security and flexibility point of view?</p>
http://stackoverflow.com/questions/482041/how-to-select-first-item-in-jpopupmenu2How to select first item in JPopupMenu?Gili2009-01-27T01:25:35Z2009-11-27T23:30:51Z
<p>In the past, when one made a JPopupMenu visible it's first item would get selected by default: <a href="http://weblogs.java.net/blog/alexfromsun/archive/2008/02/jtrayicon_updat.html" rel="nofollow">http://weblogs.java.net/blog/alexfromsun/archive/2008/02/jtrayicon_updat.html</a></p>
<p>Nowadays the default behavior is to pop up the menu without any item selected. I would like create a JPopupMenu with a single item that will pop up selected and centered under the mouse pointer. I have managed to get the item to pop up centered under the mouse but I the JMenuItem refuses to render as if it is selected. If I move the mouse out of the item and back in it selects properly.</p>
<p>Any ideas?</p>
<p>Here is my testcase:</p>
<pre><code>import java.awt.Component;
import java.awt.Point;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.JFrame;
import javax.swing.JMenuItem;
import javax.swing.JPopupMenu;
public class Test extends JFrame
{
public static void main(String[] args)
{
JFrame frame = new JFrame();
frame.setSize(800, 600);
frame.getContentPane().addMouseListener(new MouseAdapter()
{
@Override
public void mousePressed(MouseEvent e)
{
if (e.isPopupTrigger())
popupTriggered(e);
}
@Override
public void mouseReleased(MouseEvent e)
{
if (e.isPopupTrigger())
popupTriggered(e);
}
private void popupTriggered(MouseEvent e)
{
JPopupMenu menu = new JPopupMenu();
final JMenuItem item = new JMenuItem("This is a JMenuItem");
menu.add(item);
Point point = e.getPoint();
int x = point.x - (item.getPreferredSize().width / 2);
int y = point.y - (item.getPreferredSize().height / 2);
menu.show((Component) e.getSource(), x, y);
}
});
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.setVisible(true);
}
}
</code></pre>
http://stackoverflow.com/questions/1578557/need-authoritative-source-for-why-you-shouldnt-throw-or-catch-java-lang-exceptio/1578601#15786010Answer by Gili for Need authoritative source for why you shouldn't throw or catch java.lang.ExceptionGili2009-10-16T14:58:17Z2009-10-16T14:58:17Z<p>I guess the point is that if you don't know how to handle a specific exception then you shouldn't catch it. It should propagate to a higher level in the hopes that it might know what to do with it. Catching exceptions too early leads to exceptions being swallowed silently and makes it impossible to do anything useful with them beyond logging.</p>
<p>Imagine what would happen if <code>FileInputStream</code>'s constructor were to log an exception internally if you tried opening a file that did not exist, but didn't indicate this failure to your code. It's fine that the error gets logged but your code would like to catch this exception and do something useful with it (such as prompting the user for a new filename). If they were to <code>catch (Exception)</code> you wouldn't be able to do this.</p>
http://stackoverflow.com/questions/1461913/does-c-monitor-wait-suffer-from-spurious-wakeups6Does C# Monitor.Wait() suffer from spurious wakeups?Gili2009-09-22T18:48:46Z2009-09-22T19:01:58Z
<p>Java's <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html#wait%28long%29" rel="nofollow">Object.wait()</a> warns against "spurious wakeups" but C#'s <a href="http://msdn.microsoft.com/en-us/library/syehfawa.aspx" rel="nofollow">Monitor.wait()</a> doesn't seem to mention it at all.</p>
<p>Seeing how Mono is implemented on top of Linux and Linux has <a href="http://en.wikipedia.org/wiki/Spurious%5Fwakeup#Spurious%5Fwakeup%5Fin%5FLinux" rel="nofollow">spurious wakeups</a>, shouldn't this be documented anywhere?</p>
http://stackoverflow.com/questions/1422390/how-to-implement-stringbuilder-replacestring-string-in-terms-of-string0How to implement StringBuilder.replace(String, String) in terms of String?Gili2009-09-14T15:47:48Z2009-09-14T16:14:52Z
<p><a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html" rel="nofollow">String</a> contains a bunch of useful methods such as <a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html#replace(java.lang.CharSequence,%20java.lang.CharSequence)" rel="nofollow">String.replace(CharSequence, CharSequence)</a> that are completely missing from <a href="http://java.sun.com/javase/6/docs/api/java/lang/StringBuilder.html" rel="nofollow">StringBuilder</a>. Is there a reason why?</p>
<p>Is there an easy way to implement these methods without the huge overhead of invoking <a href="http://java.sun.com/javase/6/docs/api/java/lang/StringBuilder.html#toString%28%29" rel="nofollow">StringBuilder.toString()</a> which copies the string every time?</p>
http://stackoverflow.com/questions/1391402/problem-receving-in-rxtx/1391868#13918680Answer by Gili for Problem receving in RXTXGili2009-09-08T03:47:42Z2009-09-08T03:47:42Z<p>I tried RXTX a few months ago and ran into similar problems. I suggest two things:</p>
<ol>
<li><p>Create a virtual comport using com0com. Enable trace logging. Compare the logs for when you use Hyperterminal versus when you run your own program. The difference will highlight what you are doing wrong.</p></li>
<li><p>In my humble opinion, RXTX's design is flawed and its implementation is quite buggy (take a look at its source-code, what a mess!). I've published an alternative library at <a href="http://kenai.com/projects/jperipheral" rel="nofollow">http://kenai.com/projects/jperipheral</a> with the following caveats: It's Windows-only and there are no pre-built binaries. Both of these will change in the near future. If you are interested in trying it out send me an email using <a href="http://desktopbeautifier.com/Main/contactus" rel="nofollow">http://desktopbeautifier.com/Main/contactus</a> and I'll send you a pre-built version.</p></li>
</ol>
http://stackoverflow.com/questions/1335427/why-does-c-generate-different-exes-for-the-same-source-code9Why does C# generate different EXEs for the same source-code?Gili2009-08-26T15:08:38Z2009-08-26T15:30:30Z
<p>Every time we recompile our C# application we end up with EXEs with different MD5 signatures. We are recompiling on the same machine, minutes apart. Why doesn't the same source-code yield the same output? Is there a way to fix this?</p>
http://stackoverflow.com/questions/1291993/downloading-the-jre-programmatically0Downloading the JRE programmatically?Gili2009-08-18T05:37:47Z2009-08-19T18:03:54Z
<p>Sun's <a href="http://java.sun.com/javase/6/docs/technotes/guides/jweb/deployment%5Fadvice.html#deplToolkit" rel="nofollow">Deployment Toolkit</a> contains a function for installing a specific JRE version, but it requires the use of a web browser. <strong>How can a desktop application download the JRE programmatically</strong> (without the use of a browser)?</p>
http://stackoverflow.com/questions/1238905/what-does-cancelio-do-with-bytes-that-have-already-been-read0What does CancelIo() do with bytes that have already been read?Gili2009-08-06T13:30:28Z2009-08-19T05:38:09Z
<p>What happens if I <code>ReadFile()</code> 10 bytes (in overlapped mode without a timeout) but invoke <code>CancelIo()</code> after 5 bytes have been read? The documentation for <code>CancelIo()</code> says that it cancels any pending I/O, but what happens to the 5 bytes already read? Are they lost? Are they re-enqueued so the next time I <code>ReadFile()</code> I'll get them again?</p>
<p>I'm looking for the specification to indicate one way or another. I don't want to rely on empirical evidence.</p>
http://stackoverflow.com/questions/1281229/how-to-use-jaroutputstream-to-create-a-jar-file1How to use JarOutputStream to create a JAR file?Gili2009-08-15T05:23:14Z2009-08-15T06:14:54Z
<p>How does one create a JAR file programmatically using <code>java.util.jar.JarOutputStream</code>? The JAR file produced by my program looks correct (it extracts fine) but when I try loading a library from it Java complains that it cannot find files which are clearly stored inside it. If I extract the JAR file and use Sun's <code>jar</code> command-line tool to re-compress it the resulting library works fine. In short, something is wrong with my JAR file.</p>
<p>Please explain how to create a JAR file programmatically, complete with a manifest file.</p>
http://stackoverflow.com/questions/1281229/how-to-use-jaroutputstream-to-create-a-jar-file/1281295#12812953Answer by Gili for How to use JarOutputStream to create a JAR file?Gili2009-08-15T06:14:54Z2009-08-15T06:14:54Z<p>Unfreaking believable...</p>
<p>It turns out that <code>JarOutputStream</code> has two undocumented quirks:</p>
<ol>
<li>Directory names must end with a slash '/'</li>
<li>All paths must use '/' style slashes, not '\'</li>
</ol>
<p>Here is the correct way to create a Jar file:</p>
<pre><code>public void run() throws IOException
{
Manifest manifest = new Manifest();
manifest.getMainAttributes().put(Attributes.Name.MANIFEST_VERSION, "1.0");
JarOutputStream target = new JarOutputStream(new FileOutputStream("output.jar"), manifest);
add(new File("inputDirectory"), target);
target.close();
}
private void add(File source, JarOutputStream target) throws IOException
{
BufferedInputStream in = null;
try
{
if (source.isDirectory())
{
String name = source.getPath().replace("\\", "/");
if (!name.isEmpty())
{
if (!name.endsWith("/"))
name += "/";
JarEntry entry = new JarEntry(name);
entry.setTime(source.lastModified());
target.putNextEntry(entry);
target.closeEntry();
}
for (File nestedFile: source.listFiles())
add(nestedFile, target);
return;
}
JarEntry entry = new JarEntry(source.getPath().replace("\\", "/"));
entry.setTime(source.lastModified());
target.putNextEntry(entry);
in = new BufferedInputStream(new FileInputStream(source));
byte[] buffer = new byte[1024];
while (true)
{
int count = in.read(buffer);
if (count == -1)
break;
target.write(buffer, 0, count);
}
target.closeEntry();
}
finally
{
if (in != null)
in.close();
}
}
</code></pre>
http://stackoverflow.com/questions/1276091/installer-generator-written-in-java2Installer generator written in Java?Gili2009-08-14T04:50:57Z2009-08-14T13:24:45Z
<p>I'm looking for a free cross-platform installer generator that is fully Java-driven (meaning workflow and plugins are written in Java). Ideally the installer should download the JRE on-demand instead of bundling it directly into the installer. Does something like this already exist?</p>
<p>Please note that InstallAnywhere no longer offers a free edition.</p>
http://stackoverflow.com/questions/204784/how-to-construct-a-relative-path-in-java-from-two-absolute-paths-or-urls/1269907#12699070Answer by Gili for How to construct a relative path in Java from two absolute paths (or URLs)?Gili2009-08-13T03:38:01Z2009-08-13T03:53:31Z<p>My version is loosely based on Matt and Steve's versions:</p>
<pre><code>/**
* Returns the path of one File relative to another.
*
* @param target the target directory
* @param base the base directory
* @return target's path relative to the base directory
* @throws IOException if an error occurs while resolving the files' canonical names
*/
public static File getRelativeFile(File target, File base) throws IOException
{
String[] baseComponents = base.getCanonicalPath().split(Pattern.quote(File.separator));
String[] targetComponents = target.getCanonicalPath().split(Pattern.quote(File.separator));
// skip common components
int index = 0;
for (; index < targetComponents.length && index < baseComponents.length; ++index)
{
if (!targetComponents[index].equals(baseComponents[index]))
break;
}
StringBuilder result = new StringBuilder();
if (index != baseComponents.length)
{
// backtrack to base directory
for (int i = index; i < baseComponents.length; ++i)
result.append(".." + File.separator);
}
for (; index < targetComponents.length; ++index)
result.append(targetComponents[index] + File.separator);
if (!target.getPath().endsWith("/") && !target.getPath().endsWith("\\"))
{
// remove final path separator
result.delete(result.length() - "/".length(), result.length());
}
return new File(result.toString());
}
</code></pre>
http://stackoverflow.com/questions/1252535/how-to-use-the-classes-parameter-of-javacompiler-gettask2How to use the "classes" parameter of JavaCompiler.getTask()?Gili2009-08-09T22:55:50Z2009-08-11T13:27:49Z
<p>I'm trying to understand <code>JavaCompiler.getTask()</code>. I understand all the parameters except for the second to last one called <code>classes</code>. The Javadoc read:</p>
<blockquote>
<p>class names (for annotation processing), null means no class names</p>
</blockquote>
<p>but I don't understand what they mean. I found plenty of websites referring to JavaCompiler online, but none of them explain this parameter. Any ideas?</p>
http://stackoverflow.com/questions/1238905/what-does-cancelio-do-with-bytes-that-have-already-been-read/1246422#12464221Answer by Gili for What does CancelIo() do with bytes that have already been read?Gili2009-08-07T18:55:15Z2009-08-07T18:55:15Z<p>According to <a href="http://groups.google.ca/group/microsoft.public.win32.programmer.kernel/browse_thread/thread/4fded0ac7e4ecfb4?hl=en" rel="nofollow">http://groups.google.ca/group/microsoft.public.win32.programmer.kernel/browse_thread/thread/4fded0ac7e4ecfb4?hl=en</a> </p>
<blockquote>
<p>It depends on how the driver writer implemented the device. The exact
semantics of cancel on an operation are not defined to that level. </p>
</blockquote>
http://stackoverflow.com/questions/1200545/hiding-minimized-title-bars-when-explorer-exe-is-dead0Hiding minimized title-bars when explorer.exe is deadGili2009-07-29T14:11:37Z2009-07-29T14:55:33Z
<p>I'm trying to secure the kiosk my application runs on. As part of that process, I've decided to kill explorer.exe and task manager. If I minimize an application while explorer.exe is dead it will show up as a minimized task-bar sitting on top of the desktop. The problem is that these title-bars sit on top of any foreground windows so they cause visual anomalies while my other applications are running.</p>
<p>How do I get minimized windows to be totally invisible?</p>
http://stackoverflow.com/questions/1200545/hiding-minimized-title-bars-when-explorer-exe-is-dead/1200877#12008770Answer by Gili for Hiding minimized title-bars when explorer.exe is deadGili2009-07-29T14:55:33Z2009-07-29T14:55:33Z<p>Answering my own question... Use</p>
<pre><code>Form.hide();
</code></pre>
<p>instead of</p>
<pre><code>Form.WindowState = FormWindowState.Minimized;
</code></pre>
http://stackoverflow.com/questions/1200235/how-to-pass-a-quoted-pipe-character-to-cmd-exe1How to pass a quoted pipe character to cmd.exe?Gili2009-07-29T13:23:43Z2009-07-29T13:39:10Z
<p>I want to invoke:</p>
<pre><code>"c:\(...)\devenv.com" foo.sln /build "Debug|Win32"
</code></pre>
<p>using cmd.exe. In my experience, cmd.exe either strips out the first pair of quotes (causing the executable to not be found) or the second pair of quotes (causing the pipe character to be misinterpreted). <strong>How do you pass a quoted pipe character to cmd.exe?</strong></p>
http://stackoverflow.com/questions/141128/does-tcp-ip-prevent-packet-replays0Does TCP/IP prevent packet replays?Gili2008-09-26T18:27:01Z2009-07-25T23:05:07Z
<p>Does TCP/IP prevent multiple copies of the same packet from reaching the destination? Or is it up to the endpoint to layer idempotency logic above it?</p>
<p>Please reference specific paragraphs from the TCP/IP specification if possible.</p>
http://stackoverflow.com/questions/90268/sleeping-problems-computer-addiction59Sleeping problems, computer addictionGili2008-09-18T05:24:55Z2009-07-22T06:05:31Z
<p>How do you keep your mind from racing late into the night, thinking about programming problems, keeping you awake? My sleeping disorder / computer addiction has impacted my personal life in a very negative way and I'm having a hard time doing anything about it.</p>
<p>Taking pills won't help because part of me <strong>wants</strong> to stay awake. I keep on telling myself "just 5 more minutes and I'll figure this out", but this goes on for hours.</p>
<p>Has anyone else experienced the same thing? How do you solve it?</p>
http://stackoverflow.com/questions/1052168/thread-safe-static-variables-without-mutexing0Thread-safe static variables without mutexing?Gili2009-06-27T05:30:49Z2009-07-11T19:03:46Z
<p>I remember reading that static variables declared inside methods is not thread-safe.</p>
<pre><code>Dog* MyClass::BadMethod()
{
static Dog dog("Lassie");
return &dog;
}
</code></pre>
<p>My library generates C++ code for end-users to compile as part of their application. The code it generates needs to initialize static variables in a thread-safe cross-platform manner. I'd like to use <code>boost::call_once</code> to mutex the variable initialization but then end-users are exposed to the Boost dependency.</p>
<p>Is there a way for me to do this without forcing extra dependencies on end-users?</p>
http://stackoverflow.com/questions/1093063/what-does-guidsysmouse-map-to0What does GUID_SysMouse map to?Gili2009-07-07T15:36:48Z2009-07-07T15:51:51Z
<p>We have software that runs fine under a normal Windows installation but when we try running it under a hardened Windows OS with device drivers stripped out it crashes horribly on this call:</p>
<pre><code>this.mouse = new Device(SystemGuid.Mouse)
</code></pre>
<p>underneath the hood <code>SystemGuid.Mouse</code> maps to <code>GUID_SysMouse</code>. If I knew what <code>GUID_SysMouse</code> was equal to I could figure out what device driver or registry value to put back.</p>
<p><strong>UPDATE</strong>: I found out that <code>GUID_SysMouse</code> maps to <code>{6f1d2b60-d5a0-11cf-bfc7-444553540000}</code> but this key doesn't exist in the registry. Where should I be looking?</p>
http://stackoverflow.com/questions/1084982/building-boost-without-filename-decorations2Building Boost without filename decorations?Gili2009-07-05T22:44:15Z2009-07-06T08:10:51Z
<p>The default naming convention for the Boost C++ libraries is:</p>
<p><code>libboost_regex-vc71-mt-d-1_34.lib</code></p>
<p>where all libraries are built into the same directory. I'd like to modify the build process so that the filename does not contain the target architecture or build type (versions are okay). I want the file to end up in a different directory depending on the architecture being built for:</p>
<p><code>vc71/debug/libboost-1_34.lib</code></p>
<p><code>vc71/release/libboost-1_34.lib</code></p>
<p>Any idea on how to do this?</p>
http://stackoverflow.com/questions/1046958/painting-directly-on-the-windows-desktop0Painting directly on the Windows desktopGili2009-06-26T01:31:49Z2009-06-30T02:00:11Z
<p>I'd like to play animations on the Windows desktop without relying on 3rd-party products such as <a href="http://www.stardock.com/products/deskscapes/" rel="nofollow">StarDock DeskScapes</a> or <a href="http://en.wikipedia.org/wiki/Windows%5FDreamScene" rel="nofollow">Windows DreamScene</a>. What APIs should I look into?</p>
http://stackoverflow.com/questions/422956/java-swing-or-java-qt/1765139#1765139Comment by Gili on Java Swing or Java Qt?Gili2009-11-23T23:09:05Z2009-11-23T23:09:05ZQuestionable. How is Qt more cross-platform than Swing? How is LGPL better than "GPL with classpath exception" which Swing ships with?http://stackoverflow.com/questions/1025377/an-svn-error-200-ok-when-checking-out-from-my-online-repo/1025387#1025387Comment by Gili on An SVN error (200 OK) when checking out from my online repoGili2009-10-24T18:45:33Z2009-10-24T18:45:33ZWorked for me. Thanks!http://stackoverflow.com/questions/1422390/how-to-implement-stringbuilder-replacestring-string-in-terms-of-string/1422421#1422421Comment by Gili on How to implement StringBuilder.replace(String, String) in terms of String?Gili2009-10-01T23:05:52Z2009-10-01T23:05:52ZI filed this RFE with Sun: <a href="http://bugs.sun.com/view_bug.do?bug_id=6882490" rel="nofollow">bugs.sun.com/view_bug.do?bug_id=6882490</a>http://stackoverflow.com/questions/138355/calling-net-assembly-from-java-jvm-crashesComment by Gili on Calling .NET assembly from Java: JVM crashesGili2009-09-25T16:08:58Z2009-09-25T16:08:58ZThe C++ code is actually C++/CLI right?http://stackoverflow.com/questions/1050592/do-spurious-wakeups-actually-happen/1051816#1051816Comment by Gili on Do spurious wakeups actually happen?Gili2009-09-22T19:05:50Z2009-09-22T19:05:50ZBetter explanation here: <a href="http://stackoverflow.com/questions/1461913/does-c-monitor-wait-suffer-from-spurious-wakeups/1461956#1461956" rel="nofollow" title="does c monitor wait suffer from spurious wakeups">stackoverflow.com/questions/1461913/…</a>http://stackoverflow.com/questions/1461913/does-c-monitor-wait-suffer-from-spurious-wakeups/1461956#1461956Comment by Gili on Does C# Monitor.Wait() suffer from spurious wakeups?Gili2009-09-22T19:03:32Z2009-09-22T19:03:32ZVery good explanation of spurious wake-ups. Thanks!http://stackoverflow.com/questions/709543/loadlibrary-fails-when-including-a-specific-file-during-dll-build/709818#709818Comment by Gili on LoadLibrary fails when including a specific file during DLL build.Gili2009-09-22T06:32:07Z2009-09-22T06:32:07Z"There are quite a few restrictions on what you can do until DllMain() has returned." ... such as? Link please...http://stackoverflow.com/questions/1422390/how-to-implement-stringbuilder-replacestring-string-in-terms-of-stringComment by Gili on How to implement StringBuilder.replace(String, String) in terms of String?Gili2009-09-14T16:54:53Z2009-09-14T16:54:53Z@Joachim: I thought of something similar to Ropes a few years back. I wonder why Sun hasn't bothered replacing their implementation with something similar...http://stackoverflow.com/questions/1238905/what-does-cancelio-do-with-bytes-that-have-already-been-read/1297957#1297957Comment by Gili on What does CancelIo() do with bytes that have already been read?Gili2009-08-28T17:28:08Z2009-08-28T17:28:08Z"Either it doesn't matter because you are using overlapped I/O"... Why doesn't it matter if you are using overlapped I/O?http://stackoverflow.com/questions/1335427/why-does-c-generate-different-exes-for-the-same-source-code/1335547#1335547Comment by Gili on Why does C# generate different EXEs for the same source-code?Gili2009-08-26T15:34:12Z2009-08-26T15:34:12ZGood answer. Thanks!http://stackoverflow.com/questions/1335427/why-does-c-generate-different-exes-for-the-same-source-code/1335450#1335450Comment by Gili on Why does C# generate different EXEs for the same source-code?Gili2009-08-26T15:24:16Z2009-08-26T15:24:16ZThe assembly version is already set to a static value.http://stackoverflow.com/questions/1335427/why-does-c-generate-different-exes-for-the-same-source-code/1335459#1335459Comment by Gili on Why does C# generate different EXEs for the same source-code?Gili2009-08-26T15:17:33Z2009-08-26T15:17:33ZIs this a guess?http://stackoverflow.com/questions/1301511/how-to-create-read-only-network-share-programmatically/1301707#1301707Comment by Gili on How to create read-only network share programmatically?Gili2009-08-19T19:19:22Z2009-08-19T19:19:22ZWe tried that. If you look at the documentation for the "shi2_permissions" field it reads "Note that Windows does not support share-level security". Maybe it's possible to do this with SHARE_INFO_502 instead? Any idea how to create read-only security descriptors for it?http://stackoverflow.com/questions/1301511/how-to-create-read-only-network-share-programmatically/1301707#1301707Comment by Gili on How to create read-only network share programmatically?Gili2009-08-19T19:07:56Z2009-08-19T19:07:56ZNetShareAdd() won't let you set permissions. The example uses no permissions.http://stackoverflow.com/questions/1291993/downloading-the-jre-programmatically/1295548#1295548Comment by Gili on Downloading the JRE programmatically?Gili2009-08-19T12:57:39Z2009-08-19T12:57:39ZFair enough, but then how do you download the Java Kernel installer programmatically?