qid int64 4 19.1M | question stringlengths 18 48.3k | answers list | date stringlengths 10 10 | metadata list |
|---|---|---|---|---|
129,560 | <p>What is the C# equivalent to the sql server 2005 real type?</p>
| [
{
"answer_id": 54152559,
"author": "George Nelson",
"author_id": 10902189,
"author_profile": "https://Stackoverflow.com/users/10902189",
"pm_score": 1,
"selected": false,
"text": "Single float String string Single float"
}
] | 2008/09/24 | [
"https://Stackoverflow.com/questions/129560",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
129,605 | <p>How would one go about profiling a few queries that are being run from an ASP.NET application? There is some software where I work that runs extremely slow because of the database (I think). The tables have indexes but it still drags because it's working with so much data. How can I profile to see where I can make a... | [
{
"answer_id": 131006,
"author": "Tim",
"author_id": 10363,
"author_profile": "https://Stackoverflow.com/users/10363",
"pm_score": 1,
"selected": false,
"text": "SET STATISTICS TIME ON\nSET STATISTICS IO ON\n"
}
] | 2008/09/24 | [
"https://Stackoverflow.com/questions/129605",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20471/"
] |
129,607 | <p>I am seeing both of them used in this script I am trying to debug and the literature is just not clear. Can someone demystify this for me?</p>
| [
{
"answer_id": 129652,
"author": "catfood",
"author_id": 12802,
"author_profile": "https://Stackoverflow.com/users/12802",
"pm_score": 3,
"selected": false,
"text": "man perlsub my local my local"
},
{
"answer_id": 129714,
"author": "J.J.",
"author_id": 21204,
"author... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129607",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3208/"
] |
129,618 | <p>I've installed TFS 2008, but I can't seem to access the server. When I try to connect to it in Visual Studio, I can't. If I try by browser on a remote PC, I get a generic page cannot be displayed. On the server, I get a 403. Nothing was touched in IIS and the service is running as a Network Service. Any ideas?</p>
| [
{
"answer_id": 43316098,
"author": "Hassan Faghihi",
"author_id": 1260751,
"author_profile": "https://Stackoverflow.com/users/1260751",
"pm_score": 0,
"selected": false,
"text": "ERR_CONNECTION_TIMED_OUT http://fserver:8080/tfs"
}
] | 2008/09/24 | [
"https://Stackoverflow.com/questions/129618",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21318/"
] |
129,628 | <p>I keep hearing this term tossed around in several different contexts. What is it?</p>
| [
{
"answer_id": 129823,
"author": "Joel Coehoorn",
"author_id": 3043,
"author_profile": "https://Stackoverflow.com/users/3043",
"pm_score": -1,
"selected": false,
"text": "foreach (object item in MyList)\n{\n DoSomething(item);\n}\n MyList.ForEach(DoSometing);\n"
},
{
"answer_id... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129628",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3208/"
] |
129,642 | <p>With C#, How do I play (Pause, Forward...) a sound file (mp3, ogg)? The file could be on the hard disk, or on the internet.</p>
<p>Is there any library or Class out there that can ease me the work ?</p>
| [
{
"answer_id": 129750,
"author": "Ryan Lundy",
"author_id": 5486,
"author_profile": "https://Stackoverflow.com/users/5486",
"pm_score": 3,
"selected": false,
"text": "var audio = new Microsoft.VisualBasic.Devices.Audio();\naudio.Play(\"some file path\");\n"
},
{
"answer_id": 2172... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129642",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20709/"
] |
129,650 | <p>Let's say I have many-to-many relationship (using the ActiveRecord attribute HasAndBelongsToMany) between Posts and Tags (domain object names changed to protect the innocent), and I wanted a method like <pre>FindAllPostByTags(IList<Tag> tags)</pre> that returns all Posts that have all (not just some of) the Ta... | [
{
"answer_id": 130339,
"author": "Sander Rijken",
"author_id": 5555,
"author_profile": "https://Stackoverflow.com/users/5555",
"pm_score": 0,
"selected": false,
"text": "Junction c = Expression.Conjunction();\nforeach(Tag t in tags)\n c = c.Add( Expression.Eq(\"Tag\", t);\n\nreturn se... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129650",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14064/"
] |
129,651 | <p>In the following HTML, I'd like the frame around the image to be snug -- not to stretch out and take up all the available width in the parent container. I know there are a couple of ways to do this (including horrible things like manually setting its width to a particular number of pixels), but what is the <em>right... | [
{
"answer_id": 129706,
"author": "Jim",
"author_id": 8427,
"author_profile": "https://Stackoverflow.com/users/8427",
"pm_score": 6,
"selected": true,
"text": ".pictureframe {\n display: inline-block;\n}\n"
},
{
"answer_id": 129798,
"author": "Keeth",
"author_id": 20588... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129651",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7598/"
] |
129,677 | <p>Is there a catchall function somewhere that works well for sanitizing user input for SQL injection and XSS attacks, while still allowing certain types of HTML tags?</p>
| [
{
"answer_id": 129767,
"author": "Peter Bailey",
"author_id": 8815,
"author_profile": "https://Stackoverflow.com/users/8815",
"pm_score": 6,
"selected": false,
"text": "strip_tags() htmlspecialchars()"
},
{
"answer_id": 130323,
"author": "troelskn",
"author_id": 18180,
... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129677",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10680/"
] |
129,693 | <p>I ruined several unit tests some time ago when I went through and refactored them to make them more <a href="http://en.wikipedia.org/wiki/Don%27t_repeat_yourself" rel="noreferrer">DRY</a>--the intent of each test was no longer clear. It seems there is a trade-off between tests' readability and maintainability. If ... | [
{
"answer_id": 130038,
"author": "ddaa",
"author_id": 11549,
"author_profile": "https://Stackoverflow.com/users/11549",
"pm_score": 6,
"selected": false,
"text": "assertPegFitsInHole assertPegIsGood"
},
{
"answer_id": 143699,
"author": "spiv",
"author_id": 22701,
"aut... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129693",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4766/"
] |
129,695 | <p>I need to serialize a huge amount of data (around 2gigs) of small objects into a single file in order to be processed later by another Java process. Performance is kind of important. Can anyone suggest a good method to achieve this?</p>
| [
{
"answer_id": 129751,
"author": "sblundy",
"author_id": 4893,
"author_profile": "https://Stackoverflow.com/users/4893",
"pm_score": 0,
"selected": false,
"text": "Serializable"
}
] | 2008/09/24 | [
"https://Stackoverflow.com/questions/129695",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/16389/"
] |
129,740 | <p>Can someone suggest a good module in perl which can be used to store collection of objects?</p>
<p>Or is ARRAY a good enough substitute for most of the needs?</p>
<p><strong>Update:</strong>
I am looking for a collections class because I want to be able to do an operation like compute collection level property fro... | [
{
"answer_id": 129763,
"author": "ethyreal",
"author_id": 18159,
"author_profile": "https://Stackoverflow.com/users/18159",
"pm_score": 0,
"selected": false,
"text": " @names = ('Paul','Michael','Jessica','Megan');\n my %petsounds = (\"cat\" => \"meow\",\n \"dog\" => \"woof\"... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129740",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4406/"
] |
129,746 | <p>I am trying to set up JBoss 4.2.2 and JConsole for remote monitoring. As per many of the how-to's I have found on the web to do this you need to enable jmxremote by setting the following options in run.conf. (I realize the other two opts disable authentication)</p>
<pre><code>JAVA_OPTS="$JAVA_OPTS -Dcom.sun.manag... | [
{
"answer_id": 129872,
"author": "Chris Vest",
"author_id": 13251,
"author_profile": "https://Stackoverflow.com/users/13251",
"pm_score": 2,
"selected": false,
"text": "ssh -XCA"
},
{
"answer_id": 830932,
"author": "anikitin",
"author_id": 102381,
"author_profile": "h... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129746",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4419/"
] |
129,773 | <p>When you create your mapping files, do you map your properties to fields or properties :</p>
<pre><code><hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="Foo" namespace="Foo.Bar" >
<class name="Foo" table="FOOS" batch-size="100">
[...]
<property name="FooProperty1" access="fie... | [
{
"answer_id": 130199,
"author": "Matt Hinze",
"author_id": 2676,
"author_profile": "https://Stackoverflow.com/users/2676",
"pm_score": 1,
"selected": false,
"text": "set access=\"field.camelcase-underscore\""
},
{
"answer_id": 212889,
"author": "kͩeͣmͮpͥ ͩ",
"author_id":... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129773",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/971/"
] |
129,815 | <p>I am working on a geometry problem that requires finding the intersection of two parabolic arcs in any rotation. I was able to intesect a line and a parabolic arc by rotating the plane to align the arc with an axis, but two parabolas cannot both align with an axis. I am working on deriving the formulas, but I woul... | [
{
"answer_id": 129889,
"author": "Nils Pipenbrinck",
"author_id": 15955,
"author_profile": "https://Stackoverflow.com/users/15955",
"pm_score": 4,
"selected": true,
"text": " x(t) = ax² + bx + c\n y(t) = t;\n s = sin(angle)\n c = cos(angle)\n\n matrix = | c -s |\n | s c ... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129815",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/15032/"
] |
129,828 | <p>My workplace filters our internet traffic by forcing us to go through a proxy, and unfortunately sites such as IT Conversations and Libsyn are blocked. However, mp3 files in general are not filtered, if they come from sites not on the proxy's blacklist.</p>
<p>So is there a website somewhere that will let me give ... | [
{
"answer_id": 1383922,
"author": "Eli Courtwright",
"author_id": 1694,
"author_profile": "https://Stackoverflow.com/users/1694",
"pm_score": 1,
"selected": true,
"text": "#!/usr/local/bin/python\n\nimport cgitb; cgitb.enable()\nimport cgi\nfrom urllib2 import urlopen\n\ndef tohex(data):... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129828",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1694/"
] |
129,861 | <p>It is a bit of a "chicken or egg" kind of query, but can someone dreamup a query that can return the name of the current database instance in which the query executes? Believe me when I say I understand the paradox: why do you need to know the name of the database instance if you're already connected to execute the ... | [
{
"answer_id": 129879,
"author": "Dana",
"author_id": 7856,
"author_profile": "https://Stackoverflow.com/users/7856",
"pm_score": 6,
"selected": false,
"text": "SELECT DB_NAME()\n"
},
{
"answer_id": 129882,
"author": "Community",
"author_id": -1,
"author_profile": "ht... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129861",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/470/"
] |
129,877 | <p>I'm writing a function to find <a href="http://projecteuler.net/index.php?section=problems&id=12" rel="noreferrer">triangle numbers</a> and the natural way to write it is recursively:</p>
<pre><code>function triangle (x)
if x == 0 then return 0 end
return x+triangle(x-1)
end
</code></pre>
<p>But attempti... | [
{
"answer_id": 129881,
"author": "Jon Ericson",
"author_id": 1438,
"author_profile": "https://Stackoverflow.com/users/1438",
"pm_score": 2,
"selected": false,
"text": "function memoize (f)\n local cache = {}\n return function (x)\n if cache[x] then\n return... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129877",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1438/"
] |
129,884 | <p>I look for a tool/framework to make automatic acceptance-testing. The interface to create new tests should be so easy, that a non-programmer (customer, boss) will be able to add specifications for which will be tested automatically.</p>
<p>It should be some way to execute the tests from command-line, to include a r... | [
{
"answer_id": 3330126,
"author": "Bryan Ash",
"author_id": 104219,
"author_profile": "https://Stackoverflow.com/users/104219",
"pm_score": 0,
"selected": false,
"text": "Feature: Acceptance testing framework\n\n Scenario: an example speaks volumes\n Given a text example\n When it... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129884",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21005/"
] |
129,890 | <p>I'm getting lost in pointer land, I believe. I've got this (code syntax might be a little off, I am not looking at the machine with this code on it...but all the pertinent details are correct):</p>
<pre><code>NSMutableArray *tmp = [[NSMutableArray alloc] init];
</code></pre>
<p>I them pass that to a routine in an... | [
{
"answer_id": 130310,
"author": "Chris Hanson",
"author_id": 714,
"author_profile": "https://Stackoverflow.com/users/714",
"pm_score": 2,
"selected": false,
"text": "NSMutableArray *array = [[NSMutableArray alloc] initWithCapacity:0];\n\narray = [foo bar];\n array"
},
{
"answer_... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129890",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/232/"
] |
129,898 | <p>I have a database that stores events in it and a page with a calendar object on it. When rendering the days it looks through the months events and if any match the current day being rendered it creates a linkbutton to represent the event in the day on the calendar and adds it to that cell. I add some javascript to t... | [
{
"answer_id": 130646,
"author": "David Robbins",
"author_id": 19799,
"author_profile": "https://Stackoverflow.com/users/19799",
"pm_score": 1,
"selected": false,
"text": "<script>\nfunction OpenWindow(eventId, editMode)\n{\n var window = window.open(\"popup.aspx?eventId=\" + eventId ... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129898",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/16820/"
] |
129,915 | <p>What property in Netbeans to I need to change to set the name of my java swing app in the OS X menubar and dock? I found info.plist, but changing @PROJECTNAMEASIDENTIFIEER@ in multiple keys here had no effect.</p>
<p>Thanks,
hating netbeans.</p>
| [
{
"answer_id": 129931,
"author": "Jeremy",
"author_id": 4419,
"author_profile": "https://Stackoverflow.com/users/4419",
"pm_score": 2,
"selected": false,
"text": "nbproject/project.properties\n\nnbproject/project.xml\n"
}
] | 2008/09/24 | [
"https://Stackoverflow.com/questions/129915",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10597/"
] |
129,917 | <p>It's common knowledge that using System.Diagnostics.Process.Start is the way to launch a url from a C# applicaiton:</p>
<p>System.Diagnostics.Process.Start("<a href="http://www.mywebsite.com" rel="nofollow noreferrer">http://www.mywebsite.com</a>");</p>
<p>However, if this url is invalid the application seems to h... | [
{
"answer_id": 129956,
"author": "Troels Thomsen",
"author_id": 20138,
"author_profile": "https://Stackoverflow.com/users/20138",
"pm_score": 4,
"selected": true,
"text": "try\n{\n var url = new Uri(\"http://www.example.com/\");\n\n Process.Start(url.AbsoluteUri);\n}\ncatch (UriFor... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129917",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/9251/"
] |
129,920 | <p>I have developed a couple of extensions for Firefox, and am annoyed that it is so hard to get the extension signed. When an extension isn't signed, it says "Author not verified" when it is installed, and to me that just looks wrong.</p>
<p>I have a simple build script that builds my .xpi file from sources, and I h... | [
{
"answer_id": 27707675,
"author": "Joscha",
"author_id": 217357,
"author_profile": "https://Stackoverflow.com/users/217357",
"pm_score": 1,
"selected": false,
"text": "openssl pkcs12 -in key.p12 -nodes -out private.key -nocerts Public Key of Certum Level III CA -----BEGIN CERTIFICATE---... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129920",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/13394/"
] |
129,927 | <p>I have a page in my vb.net web application that needs to toss a bunch of data into a text file and then present it to the user for download. What's the best / most efficient way to build such a text file on a .net web server?</p>
<p>Edit: to answer a question down below, this is going to be a download once and the... | [
{
"answer_id": 129953,
"author": "Community",
"author_id": -1,
"author_profile": "https://Stackoverflow.com/users/-1",
"pm_score": 2,
"selected": false,
"text": "private void Button1_Click(object sender, System.EventArgs e)\n{\n StringBuilder output = new StringBuilder;\n /... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129927",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19074/"
] |
129,945 | <p>Can someone explain what exactly the string "0 but true" means in Perl? As far as I understand, it equals zero in an integer comparison, but evaluates to true when used as a boolean. Is this correct? Is this a normal behavior of the language or is this a special string treated as a special case in the interpreter?</... | [
{
"answer_id": 129970,
"author": "Daniel Papasian",
"author_id": 7548,
"author_profile": "https://Stackoverflow.com/users/7548",
"pm_score": 3,
"selected": false,
"text": "if (int(\"0 but true\")) { print \"zero\"; } if (\"0 but true\") { print \"true\"; }"
},
{
"answer_id": 1299... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129945",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12523/"
] |
129,958 | <p>I have several different locations in a fairly wide area, each with a Linux server storing company data. This data changes every day in different ways at each different location. I need a way to keep this data up-to-date and synced between all these locations.</p>
<p>For example:</p>
<p>In one location someone pla... | [
{
"answer_id": 130736,
"author": "Dan Udey",
"author_id": 21450,
"author_profile": "https://Stackoverflow.com/users/21450",
"pm_score": 2,
"selected": false,
"text": "pyinotify spreadsheet.doc"
},
{
"answer_id": 130795,
"author": "Jeremy Cantrell",
"author_id": 18866,
... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129958",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21885/"
] |
129,968 | <p>Is it possible to convert a <code>com.vividsolutions.jts.geom.Geometry</code> (or a subclass of it) into a class that implements <code>java.awt.Shape</code>? Which library or method can I use to achieve that goal?</p>
| [
{
"answer_id": 129995,
"author": "tim_yates",
"author_id": 6509,
"author_profile": "https://Stackoverflow.com/users/6509",
"pm_score": 3,
"selected": true,
"text": "com.vividsolutions.jump.workbench.ui.renderer.java2D.Java2DConverter\n"
},
{
"answer_id": 30752409,
"author": "... | 2008/09/24 | [
"https://Stackoverflow.com/questions/129968",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21005/"
] |
130,015 | <p>I have a Rails 2.0.2 application running with a postgresql db. The machine will receive data on a TCP port. I already have coded a working ruby multithreaded tcp server to receive the requests, but I need this code to run alongside my Rails app.</p>
<p>So I guess I need to know how to span a new process inside Rail... | [
{
"answer_id": 130772,
"author": "Ian Terrell",
"author_id": 9269,
"author_profile": "https://Stackoverflow.com/users/9269",
"pm_score": 2,
"selected": true,
"text": "win32-service win32utils"
}
] | 2008/09/24 | [
"https://Stackoverflow.com/questions/130015",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/18879/"
] |
130,020 | <p>Can anyone recommend a dropdownlist control for asp.net (3.5) that can render option groups? Thanks</p>
| [
{
"answer_id": 130046,
"author": "Joel Coehoorn",
"author_id": 3043,
"author_profile": "https://Stackoverflow.com/users/3043",
"pm_score": 7,
"selected": true,
"text": "'This codes makes the dropdownlist control recognize items with \"--\"\n'for the label or items with an OptionGroup att... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130020",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14072/"
] |
130,032 | <p>Is there a built-in editor for a multi-line string in a <code>PropertyGrid</code>.</p>
| [
{
"answer_id": 130168,
"author": "fryguybob",
"author_id": 4592,
"author_profile": "https://Stackoverflow.com/users/4592",
"pm_score": 7,
"selected": true,
"text": "System.Design.dll System.ComponentModel.Design.MultilineStringEditor public class Stuff\n{\n [Editor(typeof(MultilineStr... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130032",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4592/"
] |
130,074 | <p>python's time module seems a little haphazard. For example, here is a list of methods in there, from the docstring:</p>
<pre><code>time() -- return current time in seconds since the Epoch as a float
clock() -- return CPU time since process start as a float
sleep() -- delay for a number of seconds given as a float
... | [
{
"answer_id": 130134,
"author": "Mark Roddy",
"author_id": 9940,
"author_profile": "https://Stackoverflow.com/users/9940",
"pm_score": 2,
"selected": false,
"text": "import time\ndef mkgmtime(t):\n \"\"\"Convert UTC tuple to seconds since Epoch\"\"\"\n return time.mktime(t)-time.t... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130074",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2900/"
] |
130,092 | <p>Rails uses the concept of migrations to deal with model changes using the ActiveRecord API.</p>
<p>CouchDB uses JSON (nested maps and arrays) to represent its model objects.</p>
<p>In working with CouchDB so far, I don't see good ways of recognizing when the document's structure has changed (other than being disci... | [
{
"answer_id": 141086,
"author": "Paul J. Davis",
"author_id": 129506,
"author_profile": "https://Stackoverflow.com/users/129506",
"pm_score": 4,
"selected": true,
"text": "{\n _id: \"foo-post\",\n _rev: \"23490AD\",\n type: \"post\",\n typevers: 0,\n moon_phase: \"full\"\n}\n"... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130092",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19784/"
] |
130,112 | <p>How can you get the directory of the script that was run and use it within the .cmd file?</p>
| [
{
"answer_id": 130118,
"author": "Kev",
"author_id": 419,
"author_profile": "https://Stackoverflow.com/users/419",
"pm_score": 7,
"selected": true,
"text": "%CD% set OLDDIR=%CD% .. do stuff .. chdir /d %OLDDIR% &rem restore current directory pushd popd %CD% set _=%CD%\\curfile.txt cd ...... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130112",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3153/"
] |
130,116 | <p>How can I read the first line from a text file using a Windows batch file? Since the file is large I only want to deal with the first line.</p>
| [
{
"answer_id": 130154,
"author": "Ross Fuhrman",
"author_id": 9431,
"author_profile": "https://Stackoverflow.com/users/9431",
"pm_score": 4,
"selected": false,
"text": "@echo off\n\nfor /f %%a in (sample.txt) do (\n echo %%a\n exit /b\n)\n @echo off\n\nfor /f \"skip=4 tokens=1-4\" %%a ... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130116",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/9822/"
] |
130,117 | <p>Most people say <em>never</em> throw an exception out of a destructor - doing so results in undefined behavior. Stroustrup makes the point that <em>"the vector destructor explicitly invokes the destructor for every element. This implies that if an element destructor throws, the vector destruction fails... There is r... | [
{
"answer_id": 130123,
"author": "Martin York",
"author_id": 14065,
"author_profile": "https://Stackoverflow.com/users/14065",
"pm_score": 9,
"selected": true,
"text": "#include <iostream>\n\nclass Bad\n{\n public:\n // Added the noexcept(false) so the code keeps its original m... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130117",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5963/"
] |
130,120 | <p>Has anyone worked with the StarTeam COM API (Specifically, intergrating with C#).</p>
<p>I need to write a helper function that returns a directory structure out of Starteam, but all I've been able to retrieve using this API has been a list of views.</p>
<p>Has anyone else tried this?</p>
| [
{
"answer_id": 131528,
"author": "Tim Jarvis",
"author_id": 10387,
"author_profile": "https://Stackoverflow.com/users/10387",
"pm_score": 2,
"selected": false,
"text": "void BtnFindClick(object sender, EventArgs e)\n{\n Borland.StarTeam.View v = StarTeamFinder.OpenView(\"username:pwd@... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130120",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1965/"
] |
130,132 | <p>My form receives asynchronous callbacks from another object on random worker threads. I have been passing the data to the main thread (where it can be used to update onscreen controls) using delegates as shown below. Performance is dreadful -- once I reach 500 updates per second, the program completely locks up. ... | [
{
"answer_id": 130247,
"author": "Brian ONeil",
"author_id": 21371,
"author_profile": "https://Stackoverflow.com/users/21371",
"pm_score": 0,
"selected": false,
"text": "MyStatus MarshalByRefObject this.InvokeRequired"
},
{
"answer_id": 137922,
"author": "Community",
"aut... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130132",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4540/"
] |
130,161 | <p>I've gotten used to the idea that if I want/need to use alpha-trans PNGs in a cross-browser manner, that I use a background image on a div and then, in IE6-only CSS, mark the background as "none" and include the proper "filter" argument.</p>
<p>Is there another way? A better way? Is there a way to do this with the ... | [
{
"answer_id": 161860,
"author": "Ian Oxley",
"author_id": 1904,
"author_profile": "https://Stackoverflow.com/users/1904",
"pm_score": 1,
"selected": false,
"text": "/* for IE 6 */\n#banner {\n background:url(../images/banner.gif);\n}\n\n/* for other browsers */\nhtml > #banner {\n ... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130161",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/9414/"
] |
130,165 | <p>I have a form with some radio buttons that are disabled by default. </p>
<p>When a value gets entered into a text box, the radio buttons are enabled via javascript. The user then selects one of the radio buttons and clicks on a submit button which posts back to the server.</p>
<p>When I get back to the server, the... | [
{
"answer_id": 130181,
"author": "Craig",
"author_id": 7861,
"author_profile": "https://Stackoverflow.com/users/7861",
"pm_score": 4,
"selected": true,
"text": "control.enabled = false control.enabled = false control.attributes.add(\"disabled\", \"disabled\")"
},
{
"answer_id": 1... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130165",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6624/"
] |
130,166 | <p>I am trying to write a macro that would "click" a command button that is in another workbook. Is that possible? Without changing any of the code within that other workbook?</p>
| [
{
"answer_id": 130325,
"author": "Ozgur Ozcitak",
"author_id": 976,
"author_profile": "https://Stackoverflow.com/users/976",
"pm_score": 1,
"selected": false,
"text": "Application.Run Run \"OtherWorkbook.xls!MyOtherMacro\"\n"
},
{
"answer_id": 130330,
"author": "Per Hornshøj-... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130166",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
130,186 | <p>I'm having an unusual problem with an IE document with contentEditable set to true. Calling select() on a range that is positioned at the end of a text node that immediately precedes a block element causes the selection to be shifted to the right one character and appear where it shouldn't. I've submitted a bug to... | [
{
"answer_id": 822802,
"author": "Alconja",
"author_id": 68727,
"author_profile": "https://Stackoverflow.com/users/68727",
"pm_score": 1,
"selected": false,
"text": "range.select() selection.createRange() .select() if (range.boundingWidth == 0)\n{\n //looks like its already at the sta... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130186",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8458/"
] |
130,187 | <p>I want to index this view but because it has subquery i cant index. Can anyone suggest how to change this view so that i can index it.</p>
<pre><code>ALTER VIEW [dbo].[Recon2]
WITH SCHEMABINDING
AS
SELECT
dbo.Transactions.CustomerCode,
dbo.Customer_Master.CustomerName,
dbo.Transactions.TransDate,
dbo.Transa... | [
{
"answer_id": 130279,
"author": "Corbin March",
"author_id": 7625,
"author_profile": "https://Stackoverflow.com/users/7625",
"pm_score": 2,
"selected": false,
"text": "SELECT\ndbo.Transactions.CustomerCode, \ndbo.Customer_Master.CustomerName, \ndbo.Transactions.TransDate, \ndbo.Transact... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130187",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14752/"
] |
130,192 | <p>I was wondering if there is a clean way to represent an is-a relationship as illustrated by this example:</p>
<p>This DB stores recording times for three types of programs: movies, game shows, drama. In an object oriented sense each of these is-a program. Each of these subclasses have different properties. Here are... | [
{
"answer_id": 130211,
"author": "Ron Savage",
"author_id": 12476,
"author_profile": "https://Stackoverflow.com/users/12476",
"pm_score": 2,
"selected": false,
"text": "Programs:\n id,\n name,\n type_id,\n length,\n etc...\n ProgramType\n type_id,\n type_name,\n etc...\n"... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130192",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21906/"
] |
130,193 | <p>Is it possible to modify a registry value (whether string or DWORD) via a .bat/.cmd script?</p>
| [
{
"answer_id": 130202,
"author": "Rui Vieira",
"author_id": 143732,
"author_profile": "https://Stackoverflow.com/users/143732",
"pm_score": 6,
"selected": true,
"text": "Syntax:\n\n REG QUERY [ROOT\\]RegKey /v ValueName [/s]\n REG QUERY [ROOT\\]RegKey /ve --This returns the (default... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130193",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3153/"
] |
130,208 | <p>Assuming I have only the class name of a generic as a string in the form of "MyCustomGenericCollection(of MyCustomObjectClass)" and don't know the assembly it comes from, what is the easiest way to create an instance of that object? </p>
<p>If it helps, I know that the class implements IMyCustomInterface and is fro... | [
{
"answer_id": 130241,
"author": "Jonathan Rupp",
"author_id": 12502,
"author_profile": "https://Stackoverflow.com/users/12502",
"pm_score": 4,
"selected": true,
"text": "Type t1 = Type.GetType(\"MyCustomGenericCollection\");\nType t2 = Type.GetType(\"MyCustomObjectClass\");\nType t3 = t... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130208",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5287/"
] |
130,227 | <p>Suppose you have a large file made up of a bunch of fixed size blocks. Each of these blocks contains some number of variable sized records. Each record must fit completely within a single block and then such records by definition are never larger than a full block. Over time, records are added to and deleted from th... | [
{
"answer_id": 130321,
"author": "Derek Park",
"author_id": 872,
"author_profile": "https://Stackoverflow.com/users/872",
"pm_score": 2,
"selected": false,
"text": "// records should be sorted by size in memory (probably in a balanced BST)\nrecords = read last N blocks on disk;\n\nforeac... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130227",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1553/"
] |
130,240 | <p>I have a bunch a values I would like to add together which are entered into a form. Right now, the form has 11 lines but it could get larger in the future. I can easily add all the values together with something like:</p>
<pre><code>$total = $value1 + $value2 + ... + $value11;
</code></pre>
<p>All the values I wan... | [
{
"answer_id": 130244,
"author": "Lasar",
"author_id": 9438,
"author_profile": "https://Stackoverflow.com/users/9438",
"pm_score": 4,
"selected": true,
"text": "for ($i = 1 ; $i <= 3 ; $i++){\n $varName = \"pBalance\".$i;\n $tempTotal += $$varName;\n}\n"
},
{
"answer_id": ... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130240",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/16292/"
] |
130,262 | <p>The Python list comprehension syntax makes it easy to filter values within a comprehension. For example:</p>
<pre><code>result = [x**2 for x in mylist if type(x) is int]
</code></pre>
<p>Will return a list of the squares of integers in mylist. However, what if the test involves some (costly) computation and you ... | [
{
"answer_id": 130276,
"author": "Nick",
"author_id": 5222,
"author_profile": "https://Stackoverflow.com/users/5222",
"pm_score": 5,
"selected": false,
"text": "result = [y for y in (expensive(x) for x in mylist) if y]\n"
},
{
"answer_id": 130278,
"author": "Dan Udey",
"a... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130262",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5222/"
] |
130,268 | <h3>Background</h3>
<p>Normal rails eager-loading of collections works like this:</p>
<pre><code>Person.find(:all, :include=>:companies)
</code></pre>
<p>This generates some sql which does</p>
<pre><code>LEFT OUTER JOIN companies ON people.company_id = companies.id
</code></pre>
<h3>Question</h3>
<p>However, I... | [
{
"answer_id": 131247,
"author": "Toby Hede",
"author_id": 14971,
"author_profile": "https://Stackoverflow.com/users/14971",
"pm_score": 3,
"selected": false,
"text": "Contractors.find(\n :all, \n :include => {:council_areas => :suburbs},\n :conditions => [\"suburbs.postcode = ?\", cu... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130268",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/234/"
] |
130,273 | <p>I'm trying to automate a program I made with a test suite via a .cmd file.</p>
<p>I can get the program that I ran's return code via %errorlevel%. </p>
<p>My program has certain return codes for each type of error.</p>
<p>For example: </p>
<p>1 - means failed for such and such a reason</p>
<p>2 - means failed f... | [
{
"answer_id": 130291,
"author": "mattlant",
"author_id": 14642,
"author_profile": "https://Stackoverflow.com/users/14642",
"pm_score": 1,
"selected": false,
"text": "C:\\Users\\matt.MATTLANT>help call\nCalls one batch program from another.\n\nCALL [drive:][path]filename [batch-parameter... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130273",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3153/"
] |
130,292 | <p>What is the proper way to inject a data access dependency when I do lazy loading?</p>
<p>For example I have the following class structure</p>
<pre><code>class CustomerDao : ICustomerDao
public Customer GetById(int id) {...}
class Transaction {
int customer_id; //Transaction always knows this value
Customer ... | [
{
"answer_id": 131059,
"author": "Toran Billups",
"author_id": 2701,
"author_profile": "https://Stackoverflow.com/users/2701",
"pm_score": 1,
"selected": false,
"text": "public class Product\n{\n private int mProductID;\n private Supplier mSupplier;\n private ISupplierService mS... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130292",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5056/"
] |
130,322 | <p>I am trying to pass a member function within a class to a function that takes a member function class pointer. The problem I am having is that I am not sure how to properly do this within the class using the this pointer. Does anyone have suggestions?</p>
<p>Here is a copy of the class that is passing the member ... | [
{
"answer_id": 130402,
"author": "Matt Cruikshank",
"author_id": 8643,
"author_profile": "https://Stackoverflow.com/users/8643",
"pm_score": 4,
"selected": false,
"text": "boost::bind boost::function"
},
{
"answer_id": 130528,
"author": "Commodore Jaeger",
"author_id": 46... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130322",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20229/"
] |
130,328 | <p>How do I get the caller's IP address in a WebMethod?</p>
<pre><code>[WebMethod]
public void Foo()
{
// HttpRequest... ? - Not giving me any options through intellisense...
}
</code></pre>
<p>using C# and ASP.NET</p>
| [
{
"answer_id": 130343,
"author": "Troels Thomsen",
"author_id": 20138,
"author_profile": "https://Stackoverflow.com/users/20138",
"pm_score": 2,
"selected": false,
"text": "WebService Context.Request HttpContext.Current HttpRequest"
},
{
"answer_id": 130345,
"author": "Aaron ... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130328",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1463/"
] |
130,354 | <p>I need to simulate a low bandwidth, high latency connection to a server in order to emulate the conditions of a VPN at a remote site. The bandwidth and latency should be tweakable so I can discover the best combination in order to run our software package.</p>
| [
{
"answer_id": 130465,
"author": "heckj",
"author_id": 19477,
"author_profile": "https://Stackoverflow.com/users/19477",
"pm_score": 5,
"selected": false,
"text": "/etc/rc.firewall.56k ipfw add pipe 1 ip from any to any out\nipfw add pipe 2 ip from any to any in \nipfw pipe 1 config b... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130354",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/190298/"
] |
130,396 | <p>Is there a way to use constants in <strong>JavaScript</strong>?</p>
<p>If not, what's the common practice for specifying variables that are used as constants?</p>
| [
{
"answer_id": 130398,
"author": "Jason Bunting",
"author_id": 1790,
"author_profile": "https://Stackoverflow.com/users/1790",
"pm_score": 5,
"selected": false,
"text": "const"
},
{
"answer_id": 130399,
"author": "John Millikin",
"author_id": 3560,
"author_profile": "... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130396",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10708/"
] |
130,404 | <p>I'm trying to find a way to "pretty print" a JavaScript data structure in a human-readable form for debugging.</p>
<p>I have a rather big and complicated data structure being stored in JS and I need to write some code to manipulate it. In order to work out what I'm doing and where I'm going wrong, what I r... | [
{
"answer_id": 130420,
"author": "John Millikin",
"author_id": 3560,
"author_profile": "https://Stackoverflow.com/users/3560",
"pm_score": 4,
"selected": false,
"text": "Firebug console.debug (\"%o\", my_object)"
},
{
"answer_id": 130479,
"author": "Jason Bunting",
"autho... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130404",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/17121/"
] |
130,427 | <p>Here's the situation. I have a webservice (C# 2.0), which consists of (mainly) a class inheriting from System.Web.Services.WebService. It contains a few methods, which all need to call a method that checks if they're authorized or not.</p>
<p>Basically something like this (pardon the architecture, this is purely as... | [
{
"answer_id": 130690,
"author": "Timothy Lee Russell",
"author_id": 12919,
"author_profile": "https://Stackoverflow.com/users/12919",
"pm_score": 4,
"selected": true,
"text": "public class ServiceAuthHeader : SoapHeader\n{\n public string SiteKey;\n public string Password;\n\n ... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130427",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/909/"
] |
130,438 | <p>Okay. I know this looks like the typical <em>"Why didn't he just Google it or go to <a href="http://www.unicode.org/" rel="noreferrer">www.unicode.org</a> and look it up?"</em> question, but for such a simple question the answer still eludes me after checking both sources.</p>
<p>I am pretty sure that all three of ... | [
{
"answer_id": 280182,
"author": "Artelius",
"author_id": 31945,
"author_profile": "https://Stackoverflow.com/users/31945",
"pm_score": 6,
"selected": false,
"text": "\\ \\n \\xFF \\x \\xF \\xFF strstr()"
}
] | 2008/09/24 | [
"https://Stackoverflow.com/questions/130438",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/30018/"
] |
130,467 | <p>How does AOP (<em>Aspect Oriented Programming</em>) work in Drupal?</p>
<p>I have learned about AOP in terms of using it for logging and security, but how does it apply to Drupal?</p>
| [
{
"answer_id": 11432384,
"author": "J-P",
"author_id": 327153,
"author_profile": "https://Stackoverflow.com/users/327153",
"pm_score": 2,
"selected": false,
"text": "mymodule_init() subscribe mymodule to \"hook events\" of type init\n module_invoke_all('init') notify all subscribers to \... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130467",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3208/"
] |
130,486 | <p>Does a hash shrink in Perl as you delete elements. </p>
<p>More specifically I had a perl program that I inherited that would parse a huge file ( 1 GB ) and load up a hash of hashes. it would do that same for another file and then do a comparison of different elements. The memory consumption was huge during this pr... | [
{
"answer_id": 130516,
"author": "Michael Carman",
"author_id": 8233,
"author_profile": "https://Stackoverflow.com/users/8233",
"pm_score": 4,
"selected": true,
"text": "tie"
},
{
"answer_id": 131102,
"author": "Eric Wilhelm",
"author_id": 11580,
"author_profile": "ht... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130486",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3208/"
] |
130,492 | <p>I assume there must be a system and language independent way to just stick the "current" EOL character into a text file, but my MSDN-fu seems to be weak today. Bonus points if there is a way to do this in a web application that will put the correct EOL character for the current client's machine's OS, not the web se... | [
{
"answer_id": 130503,
"author": "Adrian Clark",
"author_id": 148,
"author_profile": "https://Stackoverflow.com/users/148",
"pm_score": 1,
"selected": false,
"text": "Environment.NewLine"
}
] | 2008/09/24 | [
"https://Stackoverflow.com/questions/130492",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19074/"
] |
130,494 | <p>I use the commercial version of Jalopy for my Java projects but it doesn't work on Groovy files. IntelliJ has a serviceable formatter but I don't like requiring a particular IDE.</p>
| [
{
"answer_id": 41039877,
"author": "Gizmomogwai",
"author_id": 204070,
"author_profile": "https://Stackoverflow.com/users/204070",
"pm_score": 2,
"selected": false,
"text": "groovyc JAVA_OPTS -Dantlr.ast groovyc test.groovy"
},
{
"answer_id": 43545532,
"author": "zsoobhan",
... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130494",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19113/"
] |
130,496 | <p>When running an old MFC application in Visual Studio's debugger I've seen a lot of warnings in the Output window like the following:</p>
<blockquote>
<p>Warning: skipping non-radio button in group.</p>
</blockquote>
<p>I understand that in MFC you put radio buttons in groups to indicate which sets of radio butto... | [
{
"answer_id": 130571,
"author": "ChrisN",
"author_id": 3853,
"author_profile": "https://Stackoverflow.com/users/3853",
"pm_score": 4,
"selected": true,
"text": "WS_GROUP"
}
] | 2008/09/24 | [
"https://Stackoverflow.com/questions/130496",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/13728/"
] |
130,500 | <p>We use oracle as the back-end database for our product. I have been running series of stress tests on our system and I have started noticing that oracle is much faster right after the database was restarted. Over time (a couple hours or so) the database seems to get slower and slower and I will see the database mach... | [
{
"answer_id": 130514,
"author": "dacracot",
"author_id": 13930,
"author_profile": "https://Stackoverflow.com/users/13930",
"pm_score": 0,
"selected": false,
"text": "select\n username,\n osuser,\n lockwait,\n status,\n sql_text\nfrom\n v$session,\n v$sqltext\nwhere\n username is... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130500",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20134/"
] |
130,506 | <p>I recently inherited a small Java program that takes information from a large database, does some processing and produces a detailed image regarding the information. The original author wrote the code using a single thread, then later modified it to allow it to use multiple threads. </p>
<p>In the code he defines a... | [
{
"answer_id": 130541,
"author": "Derek Park",
"author_id": 872,
"author_profile": "https://Stackoverflow.com/users/872",
"pm_score": 2,
"selected": false,
"text": "availableProcessors()"
}
] | 2008/09/24 | [
"https://Stackoverflow.com/questions/130506",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7613/"
] |
130,507 | <p>I'd really like to get into some D3D coding, but I don't have the time lately to learn C++ for what will amount to a hobby project.</p>
| [
{
"answer_id": 130541,
"author": "Derek Park",
"author_id": 872,
"author_profile": "https://Stackoverflow.com/users/872",
"pm_score": 2,
"selected": false,
"text": "availableProcessors()"
}
] | 2008/09/24 | [
"https://Stackoverflow.com/questions/130507",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/16942/"
] |
130,511 | <p>How can I know what encoding will be used by PHP when sending data to the browser? I.e. with the Cotent-Type header, for instance: iso-8859-1.</p>
| [
{
"answer_id": 130517,
"author": "William Keller",
"author_id": 17095,
"author_profile": "https://Stackoverflow.com/users/17095",
"pm_score": 0,
"selected": false,
"text": "header('Content-type: xxx/yyy');"
},
{
"answer_id": 130566,
"author": "dirtside",
"author_id": 2090... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130511",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5295/"
] |
130,526 | <p>Probably a very stupid question but I can't figure how to rename an object in PowerPoint.. For example, all my Graphs are called by default "Graph 1" etc.
Could someone help me on that?
Thanks!</p>
| [
{
"answer_id": 130684,
"author": "Community",
"author_id": -1,
"author_profile": "https://Stackoverflow.com/users/-1",
"pm_score": 1,
"selected": false,
"text": "ActiveWindow.Selection.ShapeRange(1).Name = \"newname\"\n"
},
{
"answer_id": 223880,
"author": "KnomDeGuerre",
... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130526",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
130,547 | <p>Ok I followed the steps for setting up ruby and rails on my Vista machine and I am having a problem connecting to the database.</p>
<h2>Contents of <code>database.yml</code></h2>
<pre><code>development:
adapter: sqlserver
database: APPS_SETUP
Host: WindowsVT06\SQLEXPRESS
Username: se
Password: paswd
</co... | [
{
"answer_id": 131501,
"author": "hectorsq",
"author_id": 14755,
"author_profile": "https://Stackoverflow.com/users/14755",
"pm_score": 2,
"selected": false,
"text": "gem install activerecord-sqlserver-adapter --source=http://gems.rubyonrails.org\n"
},
{
"answer_id": 1268226,
... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130547",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/453046/"
] |
130,564 | <p>I am writing a page where I need an HTML table to maintain a set size. I need the headers at the top of the table to stay there at all times but I also need the body of the table to scroll no matter how many rows are added to the table. Think a mini version of excel. This seems like a simple task but almost every so... | [
{
"answer_id": 130568,
"author": "Chris Marasti-Georg",
"author_id": 96,
"author_profile": "https://Stackoverflow.com/users/96",
"pm_score": 3,
"selected": false,
"text": "<html>\n <head>\n <title>Blah</title>\n <style type=\"text/css\">\n table { width:300px; }\n tbody { ... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130564",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4491/"
] |
130,570 | <p>We have recently moved back to InstallShield 2008 from rolling our own install. So, I am still trying to get up the learning curve on it. </p>
<p>We are using Firebird and a usb driver, that we couldn't find good msi install solutions. So, we have a cmd line to install firebird silently and the usb driver mostly si... | [
{
"answer_id": 144881,
"author": "Chris Tybur",
"author_id": 741,
"author_profile": "https://Stackoverflow.com/users/741",
"pm_score": 0,
"selected": false,
"text": "string sRemove;\nnumber nBuffer;\n\nnBuffer = 256;\nif (MsiGetProperty(ISMSI_HANDLE, \"REMOVE\", sRemove, nBuffer) = ERROR... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130570",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12425/"
] |
130,573 | <p>The <a href="http://msdn.microsoft.com/en-us/library/ms724284(VS.85).aspx" rel="nofollow noreferrer"><code>FILETIME</code> structure</a> counts from January 1 1601 (presumably the start of that day) according to the Microsoft documentation, but does this include leap seconds?</p>
| [
{
"answer_id": 3603011,
"author": "Ian Boyd",
"author_id": 12597,
"author_profile": "https://Stackoverflow.com/users/12597",
"pm_score": 5,
"selected": true,
"text": "FILETIME FILETIME FileTimeToSystemTime FileTimeToSystemTime 0..59 FILETIME var\n systemTime: TSystemTime;\n fileTim... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130573",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10168/"
] |
130,574 | <p>I seek an algorithm that will let me represent an incoming sequence of bits as letters ('a' .. 'z' ), in a minimal matter such that the stream of bits can be regenerated from the letters, without ever holding the entire sequence in memory.</p>
<p>That is, given an external bit source (each read returns a practicall... | [
{
"answer_id": 130670,
"author": "Commodore Jaeger",
"author_id": 4659,
"author_profile": "https://Stackoverflow.com/users/4659",
"pm_score": 3,
"selected": false,
"text": "a 0000\nb 0001\nc 0010\nd 0011\ne 0100\nf 0101\ng 01100\nh 01101\ni 01110\nj 01111\nk 10000\nl 10001\nm 10010\nn 10... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130574",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
130,604 | <p>I use int.MaxValue as a penalty and sometimes I am computing the penalties together. Is there a function or how would you create one with the most grace and efficiency that does that. </p>
<p>ie. </p>
<p>50 + 100 = 150</p>
<p>int.Max + 50 = int.Max and not int.Min + 50 </p>
| [
{
"answer_id": 130660,
"author": "Derek Park",
"author_id": 872,
"author_profile": "https://Stackoverflow.com/users/872",
"pm_score": 3,
"selected": true,
"text": "int penaltySum(int a, int b)\n{\n return (int.MaxValue - a < b) ? int.MaxValue : a + b;\n}\n int penaltySum(int a, int b)... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130604",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4694/"
] |
130,605 | <p>I have a table of Users that includes a bitmask of roles that the user belongs to. I'd like to select users that belong to one or more of the roles in a bitmask value. For example:</p>
<pre>select *
from [User]
where UserRolesBitmask | 22 = 22</pre>
<p>This selects all users that have the roles '2', '4' or '16'... | [
{
"answer_id": 130691,
"author": "KevDog",
"author_id": 13139,
"author_profile": "https://Stackoverflow.com/users/13139",
"pm_score": 4,
"selected": true,
"text": "from u in DataContext.Users\nwhere UserRolesBitmask | 22 == 22\nselect u\n"
},
{
"answer_id": 130716,
"author": ... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130605",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14072/"
] |
130,614 | <p>I've got a dictionary, something like</p>
<pre><code>Dictionary<Foo,String> fooDict
</code></pre>
<p>I step through everything in the dictionary, e.g.</p>
<pre><code>foreach (Foo foo in fooDict.Keys)
MessageBox.show(fooDict[foo]);
</code></pre>
<p>It does that in the order the foos were added to the di... | [
{
"answer_id": 130816,
"author": "Asmor",
"author_id": 18210,
"author_profile": "https://Stackoverflow.com/users/18210",
"pm_score": 0,
"selected": false,
"text": " public void sortSections()\n {\n //OMG THIS IS UGLY!!!\n KeyValuePair<ListViewItem, TextSection>[] ... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130614",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/18210/"
] |
130,616 | <p>I'm trying to start a service as a user and things work fine, until I try a user that doesn't have a password. Then, it fails to start (due to log-on error).</p>
<p>Am I doing something wrong or is this "by design"?</p>
<p>The code to register this service:</p>
<pre><code> SC_HANDLE schService = CreateService(... | [
{
"answer_id": 130658,
"author": "1800 INFORMATION",
"author_id": 3146,
"author_profile": "https://Stackoverflow.com/users/3146",
"pm_score": 0,
"selected": false,
"text": "strPassword SC_HANDLE schService = CreateService( \n schSCManager, \n strNameNoSpac... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130616",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20208/"
] |
130,617 | <p>I got a program that writes some data to a file using a method like the one below.</p>
<pre><code>
public void ExportToFile(string filename)
{
using(FileStream fstream = new FileStream(filename,FileMode.Create))
using (TextWriter writer = new StreamWriter(fstream))
{
// try catch block for w... | [
{
"answer_id": 130641,
"author": "Josh",
"author_id": 11702,
"author_profile": "https://Stackoverflow.com/users/11702",
"pm_score": 7,
"selected": true,
"text": "public void ExportToFile(string filename)\n{\n var permissionSet = new PermissionSet(PermissionState.None); \n var wr... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130617",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1361/"
] |
130,618 | <p>I would like to find out if a particular python datetime object is older than X hours or minutes. I am trying to do something similar to: </p>
<pre><code>if (datetime.now() - self.timestamp) > 100
# Where 100 is either seconds or minutes
</code></pre>
<p>This generates a type error. </p>
<p>What is the proper... | [
{
"answer_id": 130623,
"author": "William Keller",
"author_id": 17095,
"author_profile": "https://Stackoverflow.com/users/17095",
"pm_score": 0,
"selected": false,
"text": "datetime.fromtimestamp"
},
{
"answer_id": 130647,
"author": "Jerub",
"author_id": 14648,
"autho... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130618",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20794/"
] |
130,636 | <p>When I try to compile the newest version of Clisp on Ubuntu 8.04 I always get this error after running configure:</p>
<pre><code>Configure findings:
FFI: no (user requested: default)
readline: yes (user requested: yes)
libsigsegv: no, consider installing GNU libsigsegv
./configure: libsigsegv was not detec... | [
{
"answer_id": 130752,
"author": "Luís Oliveira",
"author_id": 2967,
"author_profile": "https://Stackoverflow.com/users/2967",
"pm_score": 3,
"selected": true,
"text": "sudo apt-get install libsigsegv-dev libreadline5-dev\n\n# as of 7.10, Ubuntu's libffcall1-dev is broken and I had to ge... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130636",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19922/"
] |
130,637 | <p>I am trying to figure out a crash in my application.
WinDbg tells me the following: (using dashes in place of underscores)</p>
<p><br><b>LAST-CONTROL-TRANSFER: from 005f5c7e to 6e697474
<br>DEFAULT-BUCKET-ID: BAD_IP
<br>BUGCHECK-STR: ACCESS-VIOLATION</b></p>
<p>It is obvious to me that 6e697474 is NOT a valid a... | [
{
"answer_id": 133212,
"author": "Mike Dimmick",
"author_id": 6970,
"author_profile": "https://Stackoverflow.com/users/6970",
"pm_score": 0,
"selected": false,
"text": "vfptr"
}
] | 2008/09/24 | [
"https://Stackoverflow.com/questions/130637",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
130,640 | <p>I would like to be able to say things like</p>
<p><strong>cd [.fred]</strong> and have my default directory go there,
and my prompt change to indicate the full path to my current location.</p>
| [
{
"answer_id": 131275,
"author": "chimp",
"author_id": 18364,
"author_profile": "https://Stackoverflow.com/users/18364",
"pm_score": 3,
"selected": false,
"text": "cd:==set default $ cd:==set default $ set prompt='f$env(\"default\")'"
},
{
"answer_id": 223455,
"author": "Luc ... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130640",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7734/"
] |
130,664 | <p>I have a command line executable that alters some bits in a file that i want to use from my program.
Is it possible to create my own executable that uses this tool and distribute only one executable?</p>
<p>[edit] Clarification:</p>
<p>The command line tool takes an offset and some bits and changes the bits at thi... | [
{
"answer_id": 130685,
"author": "Adam Pierce",
"author_id": 5324,
"author_profile": "https://Stackoverflow.com/users/5324",
"pm_score": 2,
"selected": false,
"text": "Open destination file\nOpen main exe as a binary file\nCopy main exe to destination file\noffset = size of main exe\nOpe... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130664",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14587/"
] |
130,698 | <p>I want to wrap a <a href="https://en.wikipedia.org/wiki/One-liner_program#Perl" rel="nofollow noreferrer">Perl one-liner</a> in a batch file. For a (trivial) example, in a Unix shell, I could quote up a command like this:</p>
<pre><code>perl -e 'print localtime() . "\n"'
</code></pre>
<p>But DOS chokes on that wit... | [
{
"answer_id": 130726,
"author": "brian d foy",
"author_id": 2766176,
"author_profile": "https://Stackoverflow.com/users/2766176",
"pm_score": 5,
"selected": true,
"text": "perl -e \"print scalar localtime() . qq(\\n)\"\n -l perl -le \"print scalar localtime()\"\n"
},
{
"answer_i... | 2008/09/24 | [
"https://Stackoverflow.com/questions/130698",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21938/"
] |
130,708 | <p>I am developing an ASP.NET Ajax form, and decided to make most of the site in one page, because it isn't a very involved site (it's more of a form). In the codebehind, I have been making my code more organized by adding regions to it (inside are the click events of the controls, etc).</p>
<p>When I expand a region,... | [
{
"answer_id": 130722,
"author": "Ben Hoffstein",
"author_id": 4482,
"author_profile": "https://Stackoverflow.com/users/4482",
"pm_score": 2,
"selected": false,
"text": "Ctrl + M, Ctrl + M Collapse or expand the block you?re currently in.\nCtrl + M, Ctrl + O Collapse all blocks in the ... | 2008/09/25 | [
"https://Stackoverflow.com/questions/130708",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20900/"
] |
130,711 | <p>I wonder how long it would usually take for:</p>
<ol>
<li>Professional</li>
<li>Average</li>
<li>Beginner</li>
</ol>
<p>to setup and configure CI for a new project?</p>
| [
{
"answer_id": 131284,
"author": "Jörg W Mittag",
"author_id": 2988,
"author_profile": "https://Stackoverflow.com/users/2988",
"pm_score": 3,
"selected": true,
"text": "rake"
}
] | 2008/09/25 | [
"https://Stackoverflow.com/questions/130711",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/15396/"
] |
130,720 | <p>In certain cases, I can't seem to get components to receive events.</p>
<p>[edit] </p>
<p>To clarify, the example code is just for demonstration sake, what I was really asking was if there was a central location that a listener could be added, to which one can reliably dispatch events to and from arbitrary objects... | [
{
"answer_id": 131046,
"author": "Antti",
"author_id": 6037,
"author_profile": "https://Stackoverflow.com/users/6037",
"pm_score": 0,
"selected": false,
"text": "this btnMenu this this"
},
{
"answer_id": 133032,
"author": "Verdant",
"author_id": 450527,
"author_profil... | 2008/09/25 | [
"https://Stackoverflow.com/questions/130720",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/16258/"
] |
130,721 | <p>My DBA requires all database access to be done through trusted domain account. This can be done if you set the web.config . This requires the user to login or to be on the domain for IE pass the credentials through. I want to impersonate a user by using code. I am using the code found in this knowledgebase arti... | [
{
"answer_id": 130808,
"author": "Kev",
"author_id": 419,
"author_profile": "https://Stackoverflow.com/users/419",
"pm_score": 1,
"selected": false,
"text": "<alwaysFlowImpersonationPolicy>"
}
] | 2008/09/25 | [
"https://Stackoverflow.com/questions/130721",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/678/"
] |
130,730 | <p>I have an immutable class with some private fields that are set during the constructor execution. I want to unit test this constructor but I'm not sure the "best practice" in this case.</p>
<p><strong>Simple Example</strong></p>
<p>This class is defined in Assembly1:</p>
<pre><code>public class Class2Test
{
... | [
{
"answer_id": 130732,
"author": "Eric Schoonover",
"author_id": 3957,
"author_profile": "https://Stackoverflow.com/users/3957",
"pm_score": 1,
"selected": false,
"text": "[InternalsVisibleTo] public class Class2Test\n{\n private readonly string _StringProperty;\n internal string S... | 2008/09/25 | [
"https://Stackoverflow.com/questions/130730",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3957/"
] |
130,734 | <p>It's been a while since I've had to do any HTML-like code in <code>Vim</code>, but recently I came across this again. Say I'm writing some simple <code>HTML</code>:</p>
<pre><code><html><head><title>This is a title</title></head></html>
</code></pre>
<p>How do I write those clos... | [
{
"answer_id": 130741,
"author": "Ian P",
"author_id": 10853,
"author_profile": "https://Stackoverflow.com/users/10853",
"pm_score": 6,
"selected": true,
"text": "Functions and mappings to close open HTML/XML tags\n"
},
{
"answer_id": 134990,
"author": "hakamadare",
"auth... | 2008/09/25 | [
"https://Stackoverflow.com/questions/130734",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10098/"
] |
130,740 | <p>I have the following program:</p>
<pre><code>~/test> cat test.cc
int main()
{
int i = 3;
int j = __sync_add_and_fetch(&i, 1);
return 0;
}
</code></pre>
<p>I'm compiling this program using GCC 4.2.2 on Linux running on a multi-cpu 64-bit Intel machine:</p>
<pre><code>~/test> uname --all
Linux doom ... | [
{
"answer_id": 130754,
"author": "Dan Udey",
"author_id": 21450,
"author_profile": "https://Stackoverflow.com/users/21450",
"pm_score": 5,
"selected": true,
"text": "__sync_add_and_fetch_4"
},
{
"answer_id": 130813,
"author": "Bruno Rijsman",
"author_id": 21435,
"auth... | 2008/09/25 | [
"https://Stackoverflow.com/questions/130740",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21435/"
] |
130,748 | <p>I've got a form where I have two radio buttons and two interchangeable controls (made up of a ListView and a handful of buttons). Based on which radio button is selected I want to display the proper control to the user.</p>
<p>The way I'm doing this now is just loading both controls and setting up an OnRadioButtonS... | [
{
"answer_id": 130805,
"author": "Lloyd Cotten",
"author_id": 21807,
"author_profile": "https://Stackoverflow.com/users/21807",
"pm_score": 3,
"selected": true,
"text": "private void OnRadioButtonCheckedChanged(object sender, EventArgs e)\n{\n Control1.Visible = RadioButton1.Checked;\... | 2008/09/25 | [
"https://Stackoverflow.com/questions/130748",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1512/"
] |
130,753 | <p>On Sql Server 2000, is there a way to find out the date and time when a stored procedure was last executed? </p>
| [
{
"answer_id": 130758,
"author": "Ben Hoffstein",
"author_id": 4482,
"author_profile": "https://Stackoverflow.com/users/4482",
"pm_score": 5,
"selected": false,
"text": "declare @proc_nm sysname\n\n-- select the procedure name here\nset @proc_nm = 'usp_test'\n\nselect s.last_execution_ti... | 2008/09/25 | [
"https://Stackoverflow.com/questions/130753",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3294/"
] |
130,763 | <p>I want my Python script to copy files on Vista. When I run it from a normal <code>cmd.exe</code> window, no errors are generated, yet the files are NOT copied. If I run <code>cmd.exe</code> "as administator" and then run my script, it works fine.</p>
<p>This makes sense since User Account Control (UAC) normally pre... | [
{
"answer_id": 138970,
"author": "jfs",
"author_id": 4279,
"author_profile": "https://Stackoverflow.com/users/4279",
"pm_score": 0,
"selected": false,
"text": "runas /user:Administrator \"python your_script.py\"\n"
},
{
"answer_id": 11746382,
"author": "Jorenko",
"author_... | 2008/09/25 | [
"https://Stackoverflow.com/questions/130763",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10559/"
] |
130,775 | <p>As far as variable naming conventions go, should iterators be named <code>i</code> or something more semantic like <code>count</code>? If you don't use <code>i</code>, why not? If you feel that <code>i</code> is acceptable, are there cases of iteration where it shouldn't be used?</p>
| [
{
"answer_id": 130807,
"author": "Ian P",
"author_id": 10853,
"author_profile": "https://Stackoverflow.com/users/10853",
"pm_score": 3,
"selected": false,
"text": "foreach (Product p in ProductList)\n{\n // Do something with p\n}\n"
},
{
"answer_id": 130810,
"author": "Jos... | 2008/09/25 | [
"https://Stackoverflow.com/questions/130775",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/13281/"
] |
130,789 | <p>I heard that decision tables in relational database have been researched a lot in academia. I also know that business rules engines use decision tables and that many BPMS use them as well.
I was wondering if people today use decision tables within their relational databases?</p>
| [
{
"answer_id": 132483,
"author": "S.Lott",
"author_id": 10661,
"author_profile": "https://Stackoverflow.com/users/10661",
"pm_score": 2,
"selected": true,
"text": "def decision_table( aRow ):\n result= connection.execute( \"SELECT replacement_value FROM transformation WHERE old_value ... | 2008/09/25 | [
"https://Stackoverflow.com/questions/130789",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19272/"
] |
130,790 | <p>I have some C# code in an ASP.Net application that does this:</p>
<p>Bitmap bmp = new Bitmap(1184, 1900);</p>
<p>And occasionally it throws an exception "Parameter is not valid". Now i've been googling around and apparently GDI+ is infamous for throwing random exceptions, and lots of people have had this problem, ... | [
{
"answer_id": 170946,
"author": "Frank Krueger",
"author_id": 338,
"author_profile": "https://Stackoverflow.com/users/338",
"pm_score": 3,
"selected": false,
"text": "using System.Windows.Media.Imaging;\nclass Program {\n public static void Main(string[] args) {\n var bmp = ne... | 2008/09/25 | [
"https://Stackoverflow.com/questions/130790",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
130,794 | <p>There have been several questions already posted with specific questions about <a href="http://en.wikipedia.org/wiki/Dependency_injection" rel="noreferrer">dependency injection</a>, such as when to use it and what frameworks are there for it. However,</p>
<p><strong>What is dependency injection and when/why should ... | [
{
"answer_id": 130862,
"author": "wds",
"author_id": 10098,
"author_profile": "https://Stackoverflow.com/users/10098",
"pm_score": 12,
"selected": true,
"text": "SomeClass() public SomeClass() {\n myObject = Factory.getObject();\n}\n myObject SomeClass() myObject myObject public SomeC... | 2008/09/25 | [
"https://Stackoverflow.com/questions/130794",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1354/"
] |
130,801 | <p>I'm using GNU autotools for the build system on a particular project. I want to start writing automated tests for verifcation. I would like to just type "make check" to have it automatically run these. My project is in C++, although I am still curious about writing automated tests for other languages as well.</p>
<... | [
{
"answer_id": 174142,
"author": "jonner",
"author_id": 78437,
"author_profile": "https://Stackoverflow.com/users/78437",
"pm_score": 6,
"selected": true,
"text": "make check TESTS TESTS=my-test-executable\n make check TESTS TESTS=my-first-test my-second-test my-third-test\n"
},
{
... | 2008/09/25 | [
"https://Stackoverflow.com/questions/130801",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5963/"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.