User - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:32:55Z http://stackoverflow.com/feeds/user/8456 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/966533/how-to-centralize-my-mail 0 How to centralize my mail [closed] tenshihan 2009-06-08T19:28:40Z 2009-06-08T22:16:18Z <p>Hi! I get a bunch of mail on about 20 different servers that I'd like to get to one. The boxes are running linux and right now my solution is to create a tcp relay... I want anytime traffic coming in on port 25 for it to be relayed over to a box somewhere else not on the same lan. I have a perl script which does roughly this but it's inefficent and can crash. I'd rather find a way using iptables/ipchains if there is such a way. I think there is but I don't have the tech skill to understand it.</p> http://stackoverflow.com/questions/344440/how-to-get-which-page-threw-an-exception-to-applicationerror-in-aspx 2 How to get which page threw an exception to Application_error in aspx tenshihan 2008-12-05T16:40:24Z 2008-12-07T13:24:52Z <p>I have a general exception handler, Application_error in my global.asx what I'm trying to isolate all the uncaught exceptions on all my many pages. I don't want to use Page_error to catch exception because it's inefficient to call that on so many pages. So where in the exception can I find what page actually caused the exception.</p> <p>anything would be apprecaited.</p> http://stackoverflow.com/questions/119609/how-to-route-in-linux 0 How to route in linux tenshihan 2008-09-23T07:35:04Z 2008-09-23T09:35:51Z <p>Hi,</p> <p>I have 20 ips from my isp. I have them bound to a router box running centos. What commands, and in what order, do I set up so that the other boxes on my lan, based either on their mac addresses or 192 ips can I have them route out my box on specific ips. For example I want mac addy xxx:xxx:xxx0400 to go out 72.049.12.157 and xxx:xxx:xxx:0500 to go out 72.049.12.158.</p> http://stackoverflow.com/questions/119559/c-determine-the-number-of-lines-within-a-text-file/119583#119583 1 Answer by tenshihan for c# determine the number of lines within a text file tenshihan 2008-09-23T07:29:43Z 2008-09-23T07:29:43Z <p>If by easy you mean a lines of code that are easy to decipher but per chance inefficient?</p> <p>string[] lines = System.IO.File.RealAllLines($filename); int cnt = lines.Count();</p> <p>That's prolly the quickest way to know how many lines. </p> <p>You could also do (depending on if you are buffering it in)</p> <h1>for large files</h1> <p>while (...reads into buffer){ string[] lines = Regex.Split(buffer,System.Enviorment.NewLine); }</p> <p>There are other numerous ways but one of the above are prolly what you'll go with.</p> http://stackoverflow.com/questions/116574/java-get-file-size-efficiently/116691#116691 0 Answer by tenshihan for java get file size efficiently tenshihan 2008-09-22T18:42:59Z 2008-09-22T18:42:59Z <p>This is kinda an off the wall solution. If you can capture the output of a ls or dir command from a system call and then parse it out from there. That seems like it would be fairly fast. Write a function in a static library Called QuickFileSize and then share it with us. Again, just throwing the idea out there.</p> http://stackoverflow.com/questions/104764/asp-net-c-and-logging-ip-access-on-every-page-and-frequency 0 Asp.net c# and logging ip access on every page and frequency tenshihan 2008-09-19T19:23:10Z 2008-09-22T18:40:53Z <p>Are there any prebuilt modules for this? Is there an event thats called everytime a page is loaded? I'm just trying to secure one of my more important admin sections.</p> http://stackoverflow.com/questions/116188/how-do-i-select-the-count-of-an-nhibernate-subquerys-results/116285#116285 0 Answer by tenshihan for How do I select the Count(*) of an nHibernate Subquery's results tenshihan 2008-09-22T17:34:25Z 2008-09-22T17:34:25Z <p>Do you need e.Id,e.Name?</p> <p>just do</p> <p>select count(*) from Object where.....</p> http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/104796#104796 0 Answer by tenshihan for How do you count your Lines of Code? tenshihan 2008-09-19T19:26:42Z 2008-09-19T19:26:42Z <p>If it were perl -- I would use the Perl::tidy module because it doesn't count lines of code but rather lines of command. Or rather, it doesn't actually count but it would be very easy to add in code to allow it to count. </p> <p>In other languages I would find a way to get that number from the interpreter/compiler or find one of many free tokenizers out there for source. Look for modules that help clean or tidy your code because they have built in tokenizers for each command and then it's a matter of adding a counter.</p> http://stackoverflow.com/questions/62963/how-do-you-extend-linq-to-sql/64612#64612 0 Answer by tenshihan for How do you extend Linq to SQL? tenshihan 2008-09-15T16:48:59Z 2008-09-15T16:48:59Z <p>DataContext x = new DataContext;</p> <p>//Something like this perhaps?</p> <p>var a = x.Where().with()...etc </p> <p>let's you have a much finer control over the sql.</p> http://stackoverflow.com/questions/64537/how-do-i-create-graphs-in-perl-on-windows/64556#64556 3 Answer by tenshihan for How do I create graphs in Perl on Windows? tenshihan 2008-09-15T16:43:39Z 2008-09-15T16:43:39Z <p>Spreadsheet::WriteExcel::Chart</p> <p>You might need something like strawberry or vanilla perl to get this to compile. Or ppm might have the module.</p> <p>Tutorial link: <a href="http://search.cpan.org/dist/Spreadsheet-WriteExcel/charts/charts.pod" rel="nofollow">http://search.cpan.org/dist/Spreadsheet-WriteExcel/charts/charts.pod</a></p> http://stackoverflow.com/questions/62503/c-int-or-int32-should-i-care/64511#64511 0 Answer by tenshihan for C#, int or Int32? Should I care? tenshihan 2008-09-15T16:37:44Z 2008-09-15T16:37:44Z <p>I remember the old borland days and int was not only dependant on your machine but on your compiler. So the real point here is -- if you are a sloppy coder then use whatever and continue being that way.</p> <p>If you are worried about memory management, then consider why c# is a strongly typed language and that you have int32,int64 and int16 for a reason. </p> <p>Consider this:</p> <p>for(int i=0;i&lt;100;i++){ } and for(Int16 i=0;i&lt;100;i++){ } and for(Int64 i=0;i&lt;100;i++{ }</p> <p>which one of these is most efficient. Int16! You could argue that in the IL they are the same but what if you have the calling function threaded 1000 times. That's already 4k (sic) of memory that you're wasting JUST THERE.</p> <p>Real programmers would use the smaller designation despite it possibly not being different because semantically it's more correct and might in some future compiling matter. The rest of you amateurs can go on not care about the minute details and your code will suck because you aren't caring about it. It's like a freekin' plant. Love it! Don't be sloppy!</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64352#64352 1 Answer by tenshihan for Stack overflow code golf tenshihan 2008-09-15T16:18:11Z 2008-09-15T16:18:11Z <p>try and put more than 4 patties on a single burger. stack overflow.</p> http://stackoverflow.com/questions/64193/ajax-control-toolkit-calendar-control-css/64317#64317 0 Answer by tenshihan for Ajax Control Toolkit Calendar Control CSS tenshihan 2008-09-15T16:13:52Z 2008-09-15T16:13:52Z <p>Open the page in firefox. However, first, download the firebug extension. Then, right click on the offending version and go down to inspect element.</p> <p>Firebug is awesome because it let's you navigate the css of any element. You have two options here:</p> <p>1) Assign the topmost element an css class and work it that way. or If that's not an option, you can use firebug to get the xpath to the offending element. Xpaths look like body/table/tr/td/table/tr[2]</p> <p>what you want to do with that in css is</p> <p>body table tr td table tr { /*css goes here */</p> <p>}</p> <p>Option 1 is definitely the better pick. Option 2 is more of a dirty way of getting things done when things like asp.net doesn't let us have the fine grain of control we want.</p> <p>It would be really awesome if you used a pastebin and posted the link to your rendered page's html. </p> http://stackoverflow.com/questions/104764/asp-net-c-and-logging-ip-access-on-every-page-and-frequency/104876#104876 Comment by on Asp.net c# and logging ip access on every page and frequency 2008-09-22T17:41:37Z 2008-09-22T17:41:37Z Is there anything like application Error that is called everytime ANY page is loaded? that's what i'm really looking for. http://stackoverflow.com/questions/104764/asp-net-c-and-logging-ip-access-on-every-page-and-frequency/105373#105373 Comment by on Asp.net c# and logging ip access on every page and frequency 2008-09-22T17:40:55Z 2008-09-22T17:40:55Z The question was a little too abstract for you to understand. I was looking for more of a global handler like Application_Error. As far as languages go -- .net is prolly the easiest of the compiled language and i really don't have problems with it unless it's some obscured knowledge.