User Ed Haber - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T09:45:31Zhttp://stackoverflow.com/feeds/user/2926http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/163098/how-do-i-shrink-the-transaction-log-on-ms-sql-2000-databases2How do I shrink the transaction log on MS SQL 2000 databases?Ed Haber2008-10-02T15:44:10Z2009-09-29T11:08:57Z
<p>I have several databases where the transaction log (.LDF) is many times larger than the database file (.MDF).</p>
<p>What can I do to automatically shrink these or keep them from getting so large?</p>
http://stackoverflow.com/questions/598906/how-can-i-create-a-search-block-with-taxonomy-terms-and-keyword-search-in-drupal0How can I create a search block with Taxonomy terms and Keyword search in drupal 5?Ed Haber2009-02-28T23:44:38Z2009-08-28T19:34:26Z
<p>I'm trying to create a search block like the one on <a href="http://www.topnotchthemes.com/browse?page=1" rel="nofollow">Top Notch Themes</a> where the users can choose one or more taxonomy terms and then do a keyword search within content that matches those terms. I was trying to figure out how to do this with Views but that didn't work right. It wanted to suggest the terms and then filter the view.</p>
<p>So I found <a href="http://drupal.org/project/faceted%5Fsearch" rel="nofollow">Faceted Search</a> on drupal.org. I'm testing that now, and I'm going to try Views Fast Search as suggested by Jeff</p>
http://stackoverflow.com/questions/1248824/how-do-i-get-the-current-published-version-in-a-net-application0How do I get the current published version in a .NET application?Ed Haber2009-08-08T12:58:55Z2009-08-08T14:04:22Z
<p>I want to be able to display the current version of a .NET application that I have deployed using the publish wizard. There is a nice option to automatically update the version number every time I publish my application.</p>
<p>I found another question(<a href="http://stackoverflow.com/questions/650/automatically-update-version-number">Automatically update version number</a>) that had this to get the current version. </p>
<pre><code>Assembly.GetExecutingAssembly().GetName().Version
</code></pre>
<p>This gets you the version you set in the project properties but not the version that is automatically incremented each time you publish.</p>
http://stackoverflow.com/questions/1248824/how-do-i-get-the-current-published-version-in-a-net-application/1248838#12488381Answer by Ed Haber for How do I get the current published version in a .NET application?Ed Haber2009-08-08T13:02:18Z2009-08-08T13:02:18Z<p>I ended up using this little bit of code to get the current deployed version or if it isn't deployed the current assembly version.</p>
<pre><code>private Version GetRunningVersion()
{
try
{
return System.Deployment.Application.ApplicationDeployment.CurrentDeployment.CurrentVersion;
}
catch
{
return Assembly.GetExecutingAssembly().GetName().Version;
}
}
</code></pre>
<p>I had to add a reference to System.Deployment.</p>
http://stackoverflow.com/questions/543105/what-is-the-best-way-to-assign-different-default-content-filters-to-different-use/544345#5443451Answer by Ed Haber for What is the best way to assign different default content filters to different user roles in Drupal 5Ed Haber2009-02-13T01:19:48Z2009-02-13T01:19:48Z<p>I'm a fan of the <a href="http://drupal.org/project/filter_default" rel="nofollow">Filter Default</a> module, but they are pointing users to <a href="http://drupal.org/project/better_formats" rel="nofollow">Better Formats</a> module if you are on Drupal 6.</p>
<p>So if you are on Drupal 6 go with <a href="http://drupal.org/project/better_formats" rel="nofollow">Better Formats</a>. Drupal 5 use <a href="http://drupal.org/project/filter_default" rel="nofollow">Filter Default</a></p>
<p>-Ed</p>
http://stackoverflow.com/questions/413049/write-location-data-in-drupal/413232#4132321Answer by Ed Haber for Write location data in DrupalEd Haber2009-01-05T14:21:45Z2009-01-05T19:29:44Z<p>Is the location field a new field you want to add to your custom nodes?</p>
<p>You are going to have to handle a couple of hooks.
<a href="http://api.drupal.org/api/function/hook_insert/5" rel="nofollow">insert</a>,
<a href="http://api.drupal.org/api/function/hook_update/5" rel="nofollow">update</a>,
<a href="http://api.drupal.org/api/function/hook_delete/5" rel="nofollow">delete</a>,
<a href="http://api.drupal.org/api/function/hook_load/5" rel="nofollow">load</a>,
<a href="http://api.drupal.org/api/function/hook_form/5" rel="nofollow">form</a>,
<a href="http://api.drupal.org/api/function/hook_view/5" rel="nofollow">view</a>.</p>
<p>So you need to add the field to your table. Display the field in the form. Save it when inserting a new node. Update the node when editing the node. Load the field back into the node. Delete the row when the node is deleted. And display the field when node is viewed (teaser or full). <a href="http://api.drupal.org/api/file/developer/hooks/node.php/5" rel="nofollow">node reference</a>.</p>
<p>At the bottom of every one of those hook pages is an example using {mytable} and a field called 'extra'.</p>
<p>[edit] <em>additional information.</em></p>
<p>The <a href="http://drupal.org/project/location" rel="nofollow">location module</a> adds the fields $node->location and $node->locations.
So I think to answer your question. Yes. You can modify them through the $node object.</p>
http://stackoverflow.com/questions/384780/drupal-how-to-see-document-attached-to-node-for-anonymous-users/384881#3848814Answer by Ed Haber for Drupal How to see document attached to Node for anonymous usersEd Haber2008-12-21T20:03:58Z2008-12-21T20:03:58Z<p>You need to give anonymous users permission to view uploaded files.
I'm guessing that you used the upload module.
The permissions page is at /admin/user/permissions and under the group "upload module" you are looking for "view uploaded files".</p>
<p>-Ed</p>
http://stackoverflow.com/questions/333997/in-drupal-how-can-i-create-a-front-page-with-a-set-of-menus-as-the-content/334346#3343462Answer by Ed Haber for In Drupal, how can I create a front page with a set of menus as the content?Ed Haber2008-12-02T15:35:53Z2008-12-02T15:42:12Z<p>That looks like the Panels module
<a href="http://drupal.org/project/panels" rel="nofollow">http://drupal.org/project/panels</a></p>
<p>You can create mini panels and create multi column pages that include other small pieces of content.</p>
<p>Edit: Looking at the source of the page they are running drupal and they are using panels module (included /sites/all/modules/panels/js/panels.js)</p>
<p>-Ed</p>
http://stackoverflow.com/questions/165401/how-to-compare-validate-sql-schema/165440#1654401Answer by Ed Haber for how to compare/validate sql schemaEd Haber2008-10-03T02:30:43Z2008-10-03T02:30:43Z<p>If you are looking for a tool that can compare two databases and show you the difference Red Gate makes <a href="http://www.red-gate.com/products/SQL_Compare/index.htm" rel="nofollow">SQL Compare</a></p>
http://stackoverflow.com/questions/156116/whats-the-css-filter-alternative-for-firefox/158021#1580210Answer by Ed Haber for What's the CSS Filter alternative for Firefox?Ed Haber2008-10-01T14:53:07Z2008-10-01T14:53:07Z<p>How about using <a href="http://developer.mozilla.org/en/SVG_in_Firefox" rel="nofollow">SVG</a> in firefox?</p>
http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/157847#1578474Answer by Ed Haber for Do you have a hobby development project?Ed Haber2008-10-01T14:21:55Z2008-10-01T14:21:55Z<p>I had a hobby of making asteroids clones. In whatever language i was learning at the time. I wrote 2 in java. 2 in c++ (one directdraw and then again in direct 3d)</p>
<p>I keep meaning to open the code up and do something with it.</p>
http://stackoverflow.com/questions/157689/fstreams-c/157707#1577071Answer by Ed Haber for Fstreams C++Ed Haber2008-10-01T13:55:25Z2008-10-01T13:55:25Z<p>You want to append to the file. Use ios::app as the file mode when creating the ofstream.</p>
<p>Appending will automatically seek to the end of the file.</p>
http://stackoverflow.com/questions/154542/how-important-is-it-to-make-your-website-layout-fit-on-low-res-displays/154599#1545996Answer by Ed Haber for How important is it to make your website layout fit on low-res displays?Ed Haber2008-09-30T19:34:27Z2008-09-30T19:34:27Z<p>I just checked the <a href="https://www.google.com/analytics/" rel="nofollow">Google Analytics</a> data for all of the domains I monitor. The screen resolution for less than 800x600 is zero and for 800x600 it is 3-6%</p>
<p>Maybe you can get Google Analytics setup on the domain ahead of time and gather some information about the visitors. </p>
http://stackoverflow.com/questions/18719/how-can-i-prevent-a-server-from-becoming-locked-after-a-remote-desktop-session/154546#1545460Answer by Ed Haber for How can I prevent a server from becoming locked after a Remote Desktop sessionEd Haber2008-09-30T19:24:09Z2008-09-30T19:24:09Z<p>With the most recent terminal services client you can connect to the console using the /ADMIN switch.</p>
<p>So "Computer:" will be something like:</p>
<pre><code>myworkstation.mydomain.local /ADMIN
</code></pre>
<p>-Ed</p>
http://stackoverflow.com/questions/102496/compatible-encryption-between-c-and-php-coldfusion-ruby-python/102643#1026432Answer by Ed Haber for Compatible encryption between C# and PHP, ColdFusion, Ruby, PythonEd Haber2008-09-19T15:10:21Z2008-09-19T15:10:21Z<p>I would use AES for the bulk data encryption and RSA for encrypting the AES Key.
If the data is small enough then just encrypt the whole thing with RSA.</p>
http://stackoverflow.com/questions/51352/how-to-show-a-spinner-while-loading-an-image-via-javascript/52597#525972Answer by Ed Haber for How to show a spinner while loading an image via JavaScriptEd Haber2008-09-09T18:51:31Z2008-09-09T18:51:31Z<p>I've used something like this to preload an image and then automatically call back to my javascript when the image is finished loading. You want to check complete before you setup the callback because the image may already be cached and it may not call your callback.</p>
<pre><code>function PreloadImage(imgSrc, callback){
var objImagePreloader = new Image();
objImagePreloader.src = imgSrc;
if(objImagePreloader.complete){
callback();
objImagePreloader.onload=function(){};
}
else{
objImagePreloader.onload = function() {
callback();
// clear onLoad, IE behaves irratically with animated gifs otherwise
objImagePreloader.onload=function(){};
}
}
}
</code></pre>
http://stackoverflow.com/questions/33386/best-ways-to-debug-a-release-mode-application/33401#334010Answer by Ed Haber for Best Ways to Debug a Release Mode ApplicationEd Haber2008-08-28T21:06:29Z2008-08-28T21:06:29Z<p>I agree on log file debugging to narrow it down.</p>
<p>I've used "Entering FunctionName" "Leaving FunctionName" until I can find what method it enters before the crash. Then I add more log messages re-compile and re-release.</p>
http://stackoverflow.com/questions/28716/which-php-opcode-cacher-should-i-use-to-improve-performance/28859#288592Answer by Ed Haber for Which PHP opcode cacher should I use to improve performance?Ed Haber2008-08-26T19:00:26Z2008-08-26T19:00:26Z<p>I use APC because it was easy to install in windows and I'm developing on WAMP.</p>
<p>Integrating APC into PHP6 was discussed here:
<a href="http://www.php.net/~derick/meeting-notes.html#add-an-opcode-cache-to-the-distribution-apc" rel="nofollow">http://www.php.net/~derick/meeting-notes.html#add-an-opcode-cache-to-the-distribution-apc</a></p>
<p>And there are directions on installing APC on Debian Etch here:
<a href="http://www.howtoforge.com/apc-php5-apache2-debian-etch" rel="nofollow">http://www.howtoforge.com/apc-php5-apache2-debian-etch</a></p>
http://stackoverflow.com/questions/1248824/how-do-i-get-the-current-published-version-in-a-net-applicationComment by Ed Haber on How do I get the current published version in a .NET application?Ed Haber2009-08-08T13:05:02Z2009-08-08T13:05:02ZMaybe I meant publish and not deploy. I can go change that in the question. When I run through the publish wizard it automatically updates a publish version. In code it is referred to as the Deployed version.http://stackoverflow.com/questions/598906/how-can-i-create-a-search-block-with-taxonomy-terms-and-keyword-search-in-drupal/598929#598929Comment by Ed Haber on How can I create a search block with Taxonomy terms and Keyword search in drupal 5?Ed Haber2009-03-01T00:25:39Z2009-03-01T00:25:39ZThanks Jeff, I'll check that out. I also just ran into Faceted search while browsing the Taxonomy modules on drupal.orghttp://stackoverflow.com/questions/163098/how-do-i-shrink-the-transaction-log-on-ms-sql-2000-databases/163218#163218Comment by Ed Haber on How do I shrink the transaction log on MS SQL 2000 databases?Ed Haber2008-10-02T16:40:22Z2008-10-02T16:40:22ZThis worked great!http://stackoverflow.com/questions/157938/hiding-a-password-in-a-python-script/157975#157975Comment by Ed Haber on Hiding a password in a (python) scriptEd Haber2008-10-01T14:47:10Z2008-10-01T14:47:10ZI agree. The base64 encoded password looks much more mysterious.