User Scott Cowan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T19:04:43Z http://stackoverflow.com/feeds/user/253 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1687473/log4j-custom-fields 1 Log4J Custom Fields Scott Cowan 2009-11-06T13:02:46Z 2009-11-06T13:53:23Z <h1>Introduction:</h1> <p>I'm trying to get additional fields to log with log4j, and its working but only when I create an appender in code and not in the log4j.properties</p> <h1>Progress:</h1> <ol> <li>Used this article <a href="http://www.jajakarta.org/log4j/jakarta-log4j-1.1.3/docs/deepExtension.html" rel="nofollow">Adding Conversion Characters to PatternLayout</a> for log4j 1.1.3</li> <li>Made a <a href="http://github.com/scottcowan/spikes/tree/master/log4j/CustomFields/" rel="nofollow">sample app for log4j 1.2</a></li> </ol> <h1>Problem:</h1> <p>using the properties file it will run but won't use AppServerPatternLayout so the custom fields aren't displayed.</p> <h1><a href="http://github.com/scottcowan/spikes/tree/master/log4j/CustomFields/" rel="nofollow">Download Code</a></h1> <h3>customlog.properties</h3> <pre><code>log4j.rootLogger=FATAL log4j.logger.some.log=INFO,stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=logging.AppServerPatternLayout log4j.appender.stdout.layout.ConversionPattern=-----------------using log file------------------------%nTime: %d%nHost: %h%nServer: %s%nComponent: %b%nVersion: %v%nPriority: %p%nThread Id: %t%nContext: %x%nMessage: %m%n </code></pre> <h3>Main.java logging without a log4j properties file</h3> <pre><code>AppServerLoggerFactory factory; factory = new AppServerLoggerFactory("MyServer", "MyComponent", "1.0"); AppServerLogger.setFactory(factory); Logger logger = AppServerLogger.getLogger("some.log"); PatternLayout layout = new AppServerPatternLayout( formatString ); logger.addAppender( new ConsoleAppender(layout) ); logger.info("Hello"); </code></pre> <h3>Main.java logging with a log4j properties file</h3> <pre><code>PropertyConfigurator.configure("customlog.properties"); AppServerLoggerFactory factory; factory = new AppServerLoggerFactory("MyServer", "MyComponent", "1.0"); AppServerLogger.setFactory(factory); Logger logger = AppServerLogger.getLogger("some.log"); logger.info("Hello"); </code></pre> <h3>Expected output</h3> <pre><code>----------------using in code appender---------------------- Time: 2009-11-06 12:55:05,785 Host: M1330 Server: MyServer Component: MyComponent Version: 1.0 Priority: INFO Thread Id: main Context: Message: logging config from code </code></pre> <h3>Actual output</h3> <pre><code>-----------------using log file------------------------ Time: 2009-11-06 12:56:17,983 Host: Server: Component: Version: Priority: INFO Thread Id: main Context: Message: logging config from customlog.properties </code></pre> <h1>Solution</h1> <p>Using MDC you can add custom fields like</p> <pre><code>MDC.put("Version", versionName); Logger log = LogManager.getLogger("some.log"); log.info("Hello"); </code></pre> <p>and pull it out in the log4j.properties with a UPPER case X</p> <pre><code>log4j.appender.stdout.layout.ConversionPattern=%X{Version} </code></pre> http://stackoverflow.com/questions/1177619/xml-validation-with-an-external-dtd-in-java 0 XML validation with an external DTD in Java Scott Cowan 2009-07-24T13:22:29Z 2009-09-11T15:27:49Z <p>How can I test an xml string to see if it validates against and dtd file?</p> <p>I've read <a href="http://stackoverflow.com/questions/1096365/validate-an-xml-file-against-local-dtd-file-with-java">this question</a> but they only see to be talking about replacing the dtd declaration on an xml file.</p> <p>Person.DTD</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!ELEMENT person (id)&gt; &lt;!ELEMENT id (#PCDATA)&gt; </code></pre> <p>Test </p> <pre><code>@Test public void should_serialize_a_shootout_to_xml_and_validate_against_a_dtd(){ String xml = "&lt;person&gt;&lt;id&gt;12&lt;/id&gt;&lt;/person&gt;"; Assert.assertTrue(validate_xml("person.dtd",xml)); } boolean validate_xml(String dtd_filename,String xml){ //check xml and throw validation errors throw new NotImplementedException(); } </code></pre> <p>Thanks!</p> <p><strong>Edit:</strong></p> <p>sorry I'm still having problems with this</p> http://stackoverflow.com/questions/211411/using-nutch-crawler-with-solr 2 Using Nutch crawler with Solr Scott Cowan 2008-10-17T08:32:39Z 2009-09-11T15:24:30Z <p>Am I able to integrate Apache Nutch crawler with the Solr Index server?</p> <p><strong>Edit:</strong></p> <p>One of our devs came up with a solution from these posts</p> <ol> <li><a href="http://wiki.apache.org/nutch/RunningNutchAndSolr" rel="nofollow">Running Nutch and Solr</a></li> <li><a href="http://www.mail-archive.com/nutch-commits@lucene.apache.org/msg02227.html" rel="nofollow">Update for Running Nutch and Solr</a></li> </ol> <p><strong>Answer</strong></p> <p>Yes</p> http://stackoverflow.com/questions/1290466/fluent-nhibernate-duplicatemappingexception-with-automapping 1 Fluent NHibernate DuplicateMappingException with AutoMapping Scott Cowan 2009-08-17T21:09:31Z 2009-08-19T07:35:56Z <p><strong>Summary:</strong></p> <p>I want to save two classes of the same name and different namespaces with the Fluent NHibernate Automapper</p> <p><strong>Context</strong></p> <p>I'm writing having to import a lot of different objects to database for testing. I'll eventually write mappers to a proper model.</p> <p>I've been using code gen and Fluent NHibernate to take these DTOs and dump them straight to db.</p> <p><strong>the exception does say to (try using auto-import="false")</strong></p> <p><strong>Code</strong></p> <pre><code>public class ClassConvention : IClassConvention { public void Apply(IClassInstance instance) { instance.Table(instance.EntityType.Namespace.Replace(".", "_")); } } namespace Sample.Models.Test1 { public class Test { public virtual int Id { get; set; } public virtual string Something { get; set; } } } namespace Sample.Models.Test2 { public class Test { public virtual int Id { get; set; } public virtual string SomethingElse { get; set; } } } </code></pre> <p>And here's the actual app code</p> <pre><code> var model = AutoMap.AssemblyOf&lt;Service1&gt;() .Where(t =&gt; t.Namespace.StartsWith("Sample.Models")) .Conventions.AddFromAssemblyOf&lt;Service1&gt;(); var cfg = Fluently.Configure() .Database( MySQLConfiguration.Standard.ConnectionString( c =&gt; c.Is("database=test;server=localhost;user id=root;Password=;"))) .Mappings(m =&gt; m.AutoMappings.Add(model)) .BuildConfiguration(); new SchemaExport(cfg).Execute(false, true, false); </code></pre> <p>Thanks I really appreciate any help</p> <p><strong>Update</strong> using Fluent Nhibernate RC1</p> http://stackoverflow.com/questions/1290466/fluent-nhibernate-duplicatemappingexception-with-automapping/1298326#1298326 1 Answer by Scott Cowan for Fluent NHibernate DuplicateMappingException with AutoMapping Scott Cowan 2009-08-19T07:35:56Z 2009-08-19T07:35:56Z <p><a href="http://groups.google.com/group/fluent-nhibernate/browse%5Fthread/thread/9d24d864d2ebe64e" rel="nofollow">solution from fluent-nhibernate forums</a> by James Gregory</p> <blockquote> <p>Got around to having a proper look at this tonight. Basically, it is down to the AutoImport stuff the exception mentioned; when NHibernate is given the first mapping it sees that the entity is named with the full assembly qualified name and creates an import for the short name (being helpful!), and then when you add the second one it then complains that this import is now going to conflict. So the solution is to turn off the auto importing; unfortunately, we don't have a way to do that in the RC... I've just commited a fix that adds in the ability to change this in a convention. So if you get the latest binaries or source, you should be able to change your Conventions line in your attached project to do this: </p> </blockquote> <pre><code>.Conventions.Setup(x =&gt; { x.AddFromAssemblyOf&lt;Program&gt;(); x.Add(AutoImport.Never()); }); </code></pre> <blockquote> <p>Which adds all the conventions you've defined in your assembly, then uses one of the helper conventions to turn off auto importing.</p> </blockquote> http://stackoverflow.com/questions/754195/teamcity-and-jira/1144885#1144885 3 Answer by Scott Cowan for TeamCity and JIRA ? Scott Cowan 2009-07-17T18:17:18Z 2009-07-17T18:17:18Z <p>TeamCity 5 EAP has support for showing issues from Jira on the tabs of your build. </p> <p><a href="http://www.jetbrains.net/confluence/display/TW/Darjeeling+5.0+EAP+Release+Notes" rel="nofollow">EAP Release Notes</a></p> <p>you still don't have the integration in Jira itself which I would prefer</p> <p><img src="http://www.jetbrains.net/confluence/download/attachments/15802980/issuepopup.png" alt="alt text" /></p> <p><img src="http://www.jetbrains.net/confluence/download/attachments/15802980/issuestab.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1130165/making-software-money-while-travelling 1 Making Software/Money while travelling? Scott Cowan 2009-07-15T07:25:11Z 2009-07-15T14:12:56Z <p>I keep hearing stories of developers having an endless summer on the back of their iphone fart apps and such. </p> <p>do you have any stories of a development style thats let you set your own schedule more.</p> <p>I tend to contract for 8 months and work on startups from home for 4 months over summer. This seems to just take me out of a cubicle.</p> http://stackoverflow.com/questions/760142/whats-the-best-screen-scraping-language/786647#786647 1 Answer by Scott Cowan for Whats the best screen scraping language? Scott Cowan 2009-04-24T16:36:21Z 2009-07-15T07:36:30Z <p><a href="http://www.codeplex.com/htmlagilitypack" rel="nofollow">HTML Agility Pack (c#)</a></p> <ol> <li>XPath is borked, the way the html is cleaned to make it xml compliant it will drop tags and you have to adjust the expression to get it to work.</li> <li>simple to use</li> </ol> <p><a href="http://mozillaparser.sourceforge.net/" rel="nofollow">Mozilla Parser (Java)</a></p> <ol> <li>Solid XPath support</li> <li>you have to set enviroment variables before it will work which is a pain</li> <li>casting between org.dom4j.Node and org.w3c.dom.Node to get different properties is a real pain</li> <li>dies on non-standard html <strong>(0.3 fixes this)</strong></li> <li>best solution for XPath</li> <li><p>problems accessing data on Nodes in a NodeList </p> <p>use a for(int i=1;i&lt;=list_size;i++) to get around that</p></li> </ol> <p><a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">Beautiful Soup (Python)</a></p> <p>I don't have much experience but here's what I've found</p> <ol> <li>no XPath support</li> <li>nice interface to pathing html</li> </ol> <p><hr /></p> <p>I prefer Mozilla HTML Parser</p> http://stackoverflow.com/questions/165814/code-coverage-for-mono 3 Code Coverage for Mono? Scott Cowan 2008-10-03T05:45:23Z 2009-06-17T06:17:10Z <p>mono creates its own debug targets called .mdb files when you use the mcs compiler.</p> <p>is there a way of using NCover or another code coverage tool with Mono?</p> <p>a commandline tool would be better so I can add it to our continuous integration server.</p> http://stackoverflow.com/questions/959526/nhibernate-search-without-attributes/959542#959542 1 Answer by Scott Cowan for NHibernate Search without attributes Scott Cowan 2009-06-06T12:01:26Z 2009-06-06T12:01:26Z <p>Ayende has said that he'll add xml mapping to NHibernate Search if someone wants to do it for him. So I wouldn't hold your breath.</p> <p>I wonder if you can do programatic mapping, I'll check on that.</p> http://stackoverflow.com/questions/179466/executing-and-then-deleting-a-dll-in-c 2 Executing and then Deleting a DLL in c# Scott Cowan 2008-10-07T17:12:07Z 2009-05-29T06:48:41Z <p>I'm creating a self updating app where I have the majority of the code in a seperate DLL. It's command line and will eventually be run on Mono. I'm just trying to get this code to work in C# on windows at the command line.</p> <p>How can I create a c# application that I can delete a supporting dll while its running?</p> <pre><code>AppDomain domain = AppDomain.CreateDomain("MyDomain"); ObjectHandle instance = domain.CreateInstance( "VersionUpdater.Core", "VersionUpdater.Core.VersionInfo"); object unwrap = instance.Unwrap(); Console.WriteLine(((ICommand)unwrap).Run()); AppDomain.Unload(domain); Console.ReadLine(); </code></pre> <p>at the ReadLine the VersionUpdater.Core.dll is still locked from deletion</p> <p>The ICommand interface is in VersionUpdater.Common.dll which is referenced by both the Commandline app and VersionUpdater.Core.dll</p> http://stackoverflow.com/questions/3143/using-mbunit-in-teamcity 2 Using MBUnit in TeamCity Scott Cowan 2008-08-06T07:41:11Z 2009-05-18T23:07:43Z <p>I'm compiling a NAnt project on linux with TeamCity Continuous Integration server. I have been able to generate a test report by running NAnt on mono thru a Command Line Runner but don't have the options of using the report like a NAnt Runner. I'm also using MBUnit for the testing framework.</p> <p>How can I merge in the test report and display "Tests failed: 1 (1 new), passed: 3049" for the build?</p> <p><strong>Update:</strong> take a look at MBUnitTask its a NAnt task that uses sends messages that TeamCity expects from NUnit so it lets you use all of TeamCity's features for tests.</p> <p><a href="http://code.google.com/p/nant-extensions/wiki/MbUnitTask" rel="nofollow">MBUnitTask</a></p> <p><strong>Update:</strong> Galio has better support so you just have to reference the Galio MBUnit 3.5 dlls instead of the MBUnit 3.5 dlls and switch to the galio runner to make it work.</p> http://stackoverflow.com/questions/204519/java-lucene-integration-with-net 2 Java Lucene integration with .Net Scott Cowan 2008-10-15T12:27:12Z 2009-05-18T06:38:53Z <p>I've got nutch and lucene setup to crawl and index some sites and I'd like to use a .net website instead of the JSP site that comes with nutch.</p> <p>Can anyone recommend some solutions?</p> <p>I've seen solutions where there was an app running on the index server which the .Net site used remoting to connect to.</p> <p>Speed is a consideration obviously so can this still perform well?</p> <p><strong>Edit:</strong> could NHibernate.Search work for this?</p> <p><strong>Edit:</strong> We ended up going with Solr index servers being used by our ASP.net site with the <a href="http://code.google.com/p/solrnet/" rel="nofollow">solrnet</a> library.</p> http://stackoverflow.com/questions/443638/as-a-programmer-what-are-some-telltale-signs-that-youre-about-to-get-fired-or-l/447696#447696 16 Answer by Scott Cowan for As a programmer, what are some telltale signs that you're about to get fired or laid off? Scott Cowan 2009-01-15T17:33:29Z 2009-05-07T00:08:30Z <p>All of these have happened to me. I've been layed off once and worked for two companies that went under. I've never been fired though.</p> <p>you may be getting laid off if...</p> <ol> <li>You walk by a meeting of your team that no one told you about</li> <li>when the boss is introducing someone around the office they skip you</li> <li>your boss distances himself with you</li> <li>All the developers move to a new office except you</li> </ol> <p>you may be on the road to getting fired if...</p> <ol> <li>you get a formal warning for something trivial</li> <li>Your team leads alternative to paired programming is to tell you he's going to throw you out the window because of your code.</li> </ol> <p>your company may be going under if...</p> <ol> <li>You notice people asking "have you got your paycheck yet?"</li> <li>The CEO moves the company to his mom's basement</li> <li>On failing to acquire a company after the due diligence</li> <li>The CEO sends around a survey that includes the question "what do you think of my hair cut"</li> <li>The sales guy is on gross commission</li> <li>The time estimate of the main project was taken from a developer that left the company before the project started and halfed</li> <li>People expect the companies product to fail.</li> </ol> http://stackoverflow.com/questions/810797/which-is-better-return-value-or-out-parameter/810802#810802 0 Answer by Scott Cowan for Which is better, return value or out parameter? Scott Cowan 2009-05-01T09:39:48Z 2009-05-01T09:39:48Z <p>It's preference mainly</p> <p>I prefer returns and if you have multiple returns you can wrap them in a Result DTO</p> <pre><code>public class Result{ public Person Person {get;set;} public int Sum {get;set;} } </code></pre> http://stackoverflow.com/questions/54802/how-many-hours-per-week-on-average-do-you-put-in-for-your-workplace/785822#785822 1 Answer by Scott Cowan for How Many Hours per Week on Average do you put in for your Workplace? Scott Cowan 2009-04-24T13:20:51Z 2009-04-24T13:20:51Z <p>35-55 of actual work</p> <p>I've using <a href="http://www.pomodorotechnique.com/" rel="nofollow">pomodoro technique</a> to time box my work to 25mins and I'm logging what I do each day</p> <p>I average 35h-55h for 6 days of actual work with sunday off</p> <p>this includes</p> <ol> <li>starting at 530am</li> <li>finishing at 10pm</li> </ol> <p>this excludes</p> <ol> <li>breaks, meals, twitter, stackoverflow, blog reading etc.. </li> <li>2h commute 5d/week</li> </ol> <p>I've had weeks of 65h's but I burn out and follow it up with an &lt;35h week. It means that I can gain 10h one week but have to pay it back with at least 20h the next week.</p> <p>My context is</p> <ol> <li>I contract during the day</li> <li>I work on a startup mornings,evenings and weekends</li> </ol> <p>My goal is to trend my productivity so I can find a sweet spot between the hours I sit at a desk and ammount of work I get done.</p> http://stackoverflow.com/questions/767437/tool-to-refactor-boolean-expressions/767485#767485 1 Answer by Scott Cowan for Tool to refactor boolean expressions Scott Cowan 2009-04-20T09:02:25Z 2009-04-20T09:02:25Z <p>I'm not sure about a tool but take a look at <a href="http://en.wikipedia.org/wiki/Boolean%5Falgebra%5F%28structure%29" rel="nofollow">Boolean Algebra</a></p> <p>you can draw a grid of all the inputs and output to try and find a minimal boolean expression</p> http://stackoverflow.com/questions/760712/nhibernate-logging-during-unit-testings/760870#760870 1 Answer by Scott Cowan for nHibernate logging during unit testings Scott Cowan 2009-04-17T15:25:16Z 2009-04-17T15:25:16Z <p>using log4net in DEBUG will give you all NHibernate has to tell. </p> <p>show_sql is a great option if you just want to see the SQL output</p> <p><a href="http://nhforge.org/wikis/howtonh/configure-log4net-for-use-with-nhibernate.aspx" rel="nofollow">Configure Log4Net for use with NHibernate</a></p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;configuration&gt; &lt;configSections&gt; &lt;!-- Others sections --&gt; &lt;section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" /&gt; &lt;/configSections&gt; &lt;!-- Some others configurations --&gt; &lt;!-- This section contains the log4net configuration settings --&gt; &lt;log4net debug="false"&gt; &lt;appender name="console" type="log4net.Appender.ConsoleAppender, log4net"&gt; &lt;layout type="log4net.Layout.PatternLayout,log4net"&gt; &lt;param name="ConversionPattern" value="%d{ABSOLUTE} %-5p %c{1}:%L - %m%n" /&gt; &lt;/layout&gt; &lt;/appender&gt; &lt;!-- Setup the root category, add the appenders and set the default priority --&gt; &lt;root&gt; &lt;priority value="DEBUG" /&gt; &lt;appender-ref ref="console" /&gt; &lt;/root&gt; &lt;/log4net&gt; &lt;/configuration&gt; </code></pre> http://stackoverflow.com/questions/522996/teamcity-twitter-notifier/682165#682165 8 Answer by Scott Cowan for TeamCity Twitter Notifier? Scott Cowan 2009-03-25T15:45:36Z 2009-03-27T16:46:29Z <p>I saw this post and thought I'd write you a plugin. </p> <p><a href="http://sleepoverrated.com/archive/2009/03/twitter-notifications-with-teamcity/" rel="nofollow">here's the blog post on how to do it</a></p> <p>and here's the google code project</p> <p><a href="http://code.google.com/p/teamcity-twitter-notifier/" rel="nofollow">teamcity-twitter-notifier</a></p> <p><img src="http://sleepoverrated.com/wp-content/uploads/2009/03/ttn-05.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/676132/can-you-configure-teamcity-artifacts-to-be-checked-back-into-source-control/681040#681040 1 Answer by Scott Cowan for Can you configure TeamCity "Artifacts" to be checked back into source control? Scott Cowan 2009-03-25T10:37:39Z 2009-03-25T10:37:39Z <p>The two ways I can think of are</p> <ul> <li>VCS Labeling</li> </ul> <p>specify a path in your working directory to label and the location relative to the trunk to check it in. <a href="http://www.jetbrains.net/confluence/display/TCD4/VCS%2BLabeling" rel="nofollow">jetbrains explains it here</a></p> <pre><code>/project/trunk/dist=&gt;/project/tags/%system.build.number% </code></pre> <ul> <li>from the build script</li> </ul> <p>manually checkin the artifacts from the build script and add an ignore to the place where your checking in to so it doesn't trigger the build again.</p> <pre><code>e.g. use -:user=devA:project/sources/** to prevent build triggering after a change of VCS user devA made in subfolder project/sources/** </code></pre> http://stackoverflow.com/questions/677038/how-to-use-regular-expressions-to-parse-html-in-java/677088#677088 3 Answer by Scott Cowan for How to use regular expressions to parse HTML in Java? Scott Cowan 2009-03-24T11:56:12Z 2009-03-24T11:56:12Z <p>If you want to go down the html parsing route, which Dave and I recommend here's the code to parse a String Data for anchor tags and print their href.</p> <p>since your just using anchor tags you should be ok with just regex but if you want to do more go with a parser. The <a href="http://mozillaparser.sourceforge.net/" rel="nofollow">Mozilla HTML Parser</a> is the best out there.</p> <pre><code>File parserLibraryFile = new File("lib/MozillaHtmlParser/native/bin/MozillaParser" + EnviromentController.getSharedLibraryExtension()); String parserLibrary = parserLibraryFile.getAbsolutePath(); // mozilla.dist.bin directory : final File mozillaDistBinDirectory = new File("lib/MozillaHtmlParser/mozilla.dist.bin."+ EnviromentController.getOperatingSystemName()); MozillaParser.init(parserLibrary,mozillaDistBinDirectory.getAbsolutePath()); MozillaParser parser = new MozillaParser(); Document domDocument = parser.parse(data); NodeList list = domDocument.getElementsByTagName("a"); for (int i = 0; i &lt; list.getLength(); i++) { Node n = list.item(i); NamedNodeMap m = n.getAttributes(); if (m != null) { Node attrNode = m.getNamedItem("href"); if (attrNode != null) System.out.println(attrNode.getNodeValue()); </code></pre> http://stackoverflow.com/questions/531859/net-own-configuration-file/531937#531937 0 Answer by Scott Cowan for .NET own configuration file Scott Cowan 2009-02-10T11:28:26Z 2009-02-17T18:17:42Z <p>If you're using log4net you can specify your configuration file in the AssemblyInfo.cs</p> http://stackoverflow.com/questions/531635/how-do-you-keep-track-of-your-programming-todos/531929#531929 2 Answer by Scott Cowan for How do you keep track of your programming TODOs? Scott Cowan 2009-02-10T11:26:28Z 2009-02-11T16:09:24Z <p>I created a build task that picks out //TODO: lines from my code files and generates a report I include in team city. It gives you a quick way of see any outstandings on a project without having to check it out.</p> <p>you can also use the <a href="http://trac-hacks.org/wiki/CodeTagsPlugin" rel="nofollow">CodeTagsPlugin</a> with <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a></p> http://stackoverflow.com/questions/182044/how-do-teamcity-artifact-paths-work/190573#190573 3 Answer by Scott Cowan for How do Teamcity artifact paths work? Scott Cowan 2008-10-10T08:53:35Z 2009-01-20T20:07:25Z <p>So you'll just need:</p> <pre><code>Source\Code\MyProject\bin\Release\* =&gt; dist Source\**\* =&gt; source </code></pre> <p>This will put all the files in release into a artifact folder called dist and everything in Source into a artifact folder called source.</p> <p>If you have subfolders in Release try:</p> <pre><code>Source\Code\MyProject\bin\Release\**\* =&gt; dist </code></pre> http://stackoverflow.com/questions/386319/css-box-model-pushing-element-lower-on-the-page 3 CSS box model pushing element lower on the page Scott Cowan 2008-12-22T14:09:15Z 2008-12-22T17:49:29Z <p>Hi I'm trying to fix a bit of test html to work with opera/chrome. It's using the <a href="http://www.alistapart.com/articles/holygrail" rel="nofollow">holygrail box model from matt levine</a>. </p> <p>In IE and firefox it looks like</p> <p><img src="http://img187.imageshack.us/img187/4049/writedn1.jpg" alt="correct layout" /></p> <p>In chrome, opera and safari it pushes the sidebar element down. I've played with the margin and paddings but it still doesn't work. am I missing something?</p> <p><img src="http://img73.imageshack.us/img73/6279/wrongpx8.jpg" alt="wrong layout" /></p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;style type="text/css"&gt; body { min-width:500px; padding: 0 106px; } #center, #left, #right,#sidebar,#main { position:relative; float:left; } #center { width:100%; background:#CCC; } #left { width:106px; margin-left: -100%; right:106px; background:#C0C; } #right { width:106px; margin-right: -106px; background:#CC0; } #header{ width:100%; background:#0CC; } #footer{ width:100%; background:#A0E; clear:both; } #content{ padding-right:330px; background:#F00; } #main{ width:100%; padding:5px 15px; } #sidebar{ width:300px; margin-right: -300px; background:#33C; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="center"&gt; &lt;div id="header"&gt;header&lt;/div&gt; &lt;div id="content"&gt; &lt;div id="main"&gt; copy &lt;/div&gt; &lt;div id="sidebar"&gt; side &lt;/div&gt; &lt;/div&gt; &lt;div id="footer"&gt;footer&lt;/div&gt; &lt;/div&gt; &lt;div id="left"&gt; left &lt;/div&gt; &lt;div id="right"&gt; right &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/212263/how-do-i-move-from-java-to-c/212664#212664 0 Answer by Scott Cowan for How do I move from Java to C#? Scott Cowan 2008-10-17T15:32:20Z 2008-12-16T11:33:13Z <ol> <li>Install Visual Studio 2008 and Resharper with IntelliJ IDEA key bindings. This gives you things like prompting you to include namespaces if you start using them.</li> <li>Start a new project and start writing Java code, when you run into something that doesn't work properly or its unable to find the class your trying to use google "PrintLn in c#". </li> <li>Write tests or code snippets for sanity checks, like you may want to check if == works for strings (it does)</li> <li>realize that c# alias Data Types (int is an alias for System.Int32, string for System.String)</li> <li>look at other peoples code I recommend <a href="http://code.google.com/p/jpboodhoo/" rel="nofollow">JP Boodhoos google code</a> </li> <li>Take a job in C#, there's lots of jobs requiring both Java and C# especially in support. </li> <li>Know your libraries, most Java libraries have been ported and most of the time the name is either like (Hibernate => NHibernate) or (Xstream => Xstream.Net). Not every library has an obvious name so just start looking into random ones you hear about here. ie (Rhino.Mocks,HTMLAgilityPack,MBUnit,Rhino.Commons,Castle Project)</li> <li>Go to usergroup meetings look for a DNUG (Dot Net User Group) they'll be helpful and you can get some good advice.</li> </ol> http://stackoverflow.com/questions/358999/how-to-retrieve-build-status-in-xml-from-teamcity/368856#368856 1 Answer by Scott Cowan for How to retrieve Build Status in XML from TeamCity Scott Cowan 2008-12-15T16:09:22Z 2008-12-15T16:09:22Z <p>I've been working on this problem for a little while now</p> <p><a href="http://stackoverflow.com/questions/190587/how-can-i-pull-artifacts-from-teamcity">Here's a post showing you how to login to teamcity in code in c#</a></p> <p>then its just a matter of using HTMLAgilityPack to look at the table.</p> <p>if you turn on guest access its even easier. I'm cleaning up the code for release shortly if that helps. If your developing in another language I can help there too.</p> http://stackoverflow.com/questions/361386/thorough-tutorial-on-setting-up-jetbrains-teamcity-ci-server/363098#363098 3 Answer by Scott Cowan for "Thorough", tutorial on setting up Jetbrain's TeamCity CI server Scott Cowan 2008-12-12T15:36:53Z 2008-12-12T15:36:53Z <ol> <li>get nant to compile your code and run tests </li> <li>download and install teamcity </li> <li>setup your test report as a build artifact in the general settings</li> </ol> <p>nunit is a good place to start because it works well with teamcity.</p> <p>teamcity is really nice to setup, post back it you have any problems with it</p> <p>here's some links to help</p> <ul> <li><a href="http://blog.jpboodhoo.com/NAntStarterSeries.aspx" rel="nofollow">JPBoodhoo NAnt Starter Series</a></li> <li><a href="http://nant.sourceforge.net/release/latest/help/introduction/" rel="nofollow">NAnt intro</a></li> </ul> http://stackoverflow.com/questions/362955/is-it-a-good-idea-to-have-a-factory-class-using-generics-to-instantiate-objects/363023#363023 0 Answer by Scott Cowan for Is it a good idea to have a factory class using generics to instantiate objects? Scott Cowan 2008-12-12T15:07:46Z 2008-12-12T15:07:46Z <p>using generics for your constructor is called the abstract factory pattern. </p> <p>Its good but only if you're using it, in this example you've got some of the defaults in the factory at least.</p> <pre><code>static class AnimalFactory { public static Animal Create&lt;T&gt;() where T : Animal { return Create&lt;T&gt;("blue"); } public static Animal Create&lt;T&gt;(string colour) where T : Animal, new() { return new T() {Colour = colour}; } } </code></pre> http://stackoverflow.com/questions/362872/nhibernate-share-references/362921#362921 2 Answer by Scott Cowan for nHibernate Share References? Scott Cowan 2008-12-12T14:33:41Z 2008-12-12T14:33:41Z <p><a href="http://forum.hibernate.org/viewtopic.php?p=2273553" rel="nofollow">quick google says</a> </p> <pre><code> rel Group n --- 1 User m ^ | | inh | rel | --------- n Member </code></pre> <blockquote> <p>rel stands for relation (association) inh stands for inheritance</p> <p>The exception is thrown after Member objects have successfully been created and then have been read from the database. After the last Member object was read the transaction is committed but this fails.</p> </blockquote> <p>what do your mappings look like?</p> http://stackoverflow.com/questions/1687473/log4j-custom-fields/1687536#1687536 Comment by Scott Cowan on Log4J Custom Fields Scott Cowan 2009-11-06T14:16:37Z 2009-11-06T14:16:37Z you may be right, when I switched back to a PatternLayout in the properties it showed the %h in the log. so it must have been loading. http://stackoverflow.com/questions/1687473/log4j-custom-fields/1687564#1687564 Comment by Scott Cowan on Log4J Custom Fields Scott Cowan 2009-11-06T13:44:04Z 2009-11-06T13:44:04Z ya the package seems ok, it looks like MDC is the way to go, just trying to get it to work http://stackoverflow.com/questions/1687473/log4j-custom-fields/1687536#1687536 Comment by Scott Cowan on Log4J Custom Fields Scott Cowan 2009-11-06T13:22:03Z 2009-11-06T13:22:03Z AppServerPatternLayour doesn't have a dependency on AppServerLoggerFactory. All its doing is creating a AppServerPatternParser which is then checking if its getting an instanceof AppServerLoggingEvent using its properties http://stackoverflow.com/questions/1210037/error-with-nhibernate-2-1-and-oracle-10g-client/1212735#1212735 Comment by Scott Cowan on Error with NHibernate 2.1 and Oracle 10g client Scott Cowan 2009-10-01T21:29:49Z 2009-10-01T21:29:49Z thanks that saved my day http://stackoverflow.com/questions/1290466/fluent-nhibernate-duplicatemappingexception-with-automapping Comment by Scott Cowan on Fluent NHibernate DuplicateMappingException with AutoMapping Scott Cowan 2009-08-17T21:32:51Z 2009-08-17T21:32:51Z updating my code to Fluent NHibernate RC1 http://stackoverflow.com/questions/211411/using-nutch-crawler-with-solr/1249651#1249651 Comment by Scott Cowan on Using Nutch crawler with Solr Scott Cowan 2009-08-10T21:13:10Z 2009-08-10T21:13:10Z ya thats the definitive article for nutch/solr http://stackoverflow.com/questions/522996/teamcity-twitter-notifier/682165#682165 Comment by Scott Cowan on TeamCity Twitter Notifier? Scott Cowan 2009-07-17T18:06:54Z 2009-07-17T18:06:54Z I added support for custom messages in the latest release http://stackoverflow.com/questions/1130165/making-software-money-while-travelling Comment by Scott Cowan on Making Software/Money while travelling? Scott Cowan 2009-07-15T08:56:23Z 2009-07-15T08:56:23Z switched to community wiki http://stackoverflow.com/questions/165814/code-coverage-for-mono/992108#992108 Comment by Scott Cowan on Code Coverage for Mono? Scott Cowan 2009-06-16T21:57:35Z 2009-06-16T21:57:35Z sorry but mono uses different debug files .mdb instead of the .pdb files from the ms clr. so conventional code coverage tools like ncover don't work http://stackoverflow.com/questions/973890/nhibernate-on-azure Comment by Scott Cowan on NHibernate on Azure? Scott Cowan 2009-06-16T21:54:31Z 2009-06-16T21:54:31Z I'm going to have to try this, let us know what you find out too http://stackoverflow.com/questions/179466/executing-and-then-deleting-a-dll-in-c Comment by Scott Cowan on Executing and then Deleting a DLL in c# Scott Cowan 2009-06-01T15:19:19Z 2009-06-01T15:19:19Z There may be a solution in using MEF or Mono Addins to do this http://stackoverflow.com/questions/179466/executing-and-then-deleting-a-dll-in-c/924702#924702 Comment by Scott Cowan on Executing and then Deleting a DLL in c# Scott Cowan 2009-06-01T15:15:14Z 2009-06-01T15:15:14Z wow thats super obscure, thanks. Of course it would be the same to check for the latest version on startup which is what I'm currently doing http://stackoverflow.com/questions/3143/using-mbunit-in-teamcity/880219#880219 Comment by Scott Cowan on Using MBUnit in TeamCity Scott Cowan 2009-05-19T12:12:40Z 2009-05-19T12:12:40Z ya I updated this the other day to include that, galio makes life so much easier http://stackoverflow.com/questions/204519/java-lucene-integration-with-net/876477#876477 Comment by Scott Cowan on Java Lucene integration with .Net Scott Cowan 2009-05-19T12:11:38Z 2009-05-19T12:11:38Z lucene.net has no Hadoop provider which is why we're on solr now http://stackoverflow.com/questions/754195/teamcity-and-jira Comment by Scott Cowan on TeamCity and JIRA ? Scott Cowan 2009-04-24T11:07:23Z 2009-04-24T11:07:23Z I'm setting up our company jira so I'll be doing this next week, I can't use guest access so its pretty much what you get from rss and status widget pages <a href="http://www.jetbrains.net/confluence/display/TCD4/Enabling+the+Status+Widget+for+Build+Configurations" rel="nofollow">jetbrains.net/confluence/display/&hellip;</a>