User Ramiro Berrelleza - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T14:29:03Z http://stackoverflow.com/feeds/user/548 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1479081/wcf-there-was-no-endpoint-listening-at-net-tcp-querier-svc-that-could-ac/1488956#1488956 0 Answer by Ramiro Berrelleza for WCF - There was no endpoint listening at net.tcp://..../Querier.svc that could accept the message Ramiro Berrelleza 2009-09-28T19:37:47Z 2009-09-28T19:37:47Z <p>When you browse to the service (<a href="http://myserver/SearchQueryService/Querier.svc" rel="nofollow">http://myserver/SearchQueryService/Querier.svc</a>), do you get any error messages?</p> <p>I also noticed that your client is calling the net.tcp endpoint on port 9000. Does this configuration matches the IIS net.tcp configuration? In a default configuration, a call to your service should be pointed to net.tcp://myserver/SearchQueryService/Querier.svc </p> http://stackoverflow.com/questions/1487218/wcf-service-unable-to-load-referenced-assemblies-from-the-gac/1488106#1488106 0 Answer by Ramiro Berrelleza for WCF service unable to load referenced assemblies from the GAC Ramiro Berrelleza 2009-09-28T16:45:42Z 2009-09-28T16:45:42Z <p>One thing you could try is using the fully qualified assembly name of your service. It is my understanding that when dealing to the GAC, that's the only way to go.</p> <p>Apart from that, you could enable Fusion logs to see from where is your application try to load the assembly from, and why its'failing. Scott Hanselman has a pretty good tutorial on <a href="http://www.hanselman.com/blog/BackToBasicsUsingFusionLogViewerToDebugObscureLoaderErrors.aspx" rel="nofollow">how to use them.</a> </p> http://stackoverflow.com/questions/354738/tag-cloud-in-c/354776#354776 4 Answer by Ramiro Berrelleza for Tag Cloud in C# Ramiro Berrelleza 2008-12-10T00:54:27Z 2008-12-10T00:54:27Z <p>Building a tag cloud is, as I see it, a two part process:</p> <p>First, you need to split and count your tokens. Depending on how the document is structured, as well as the language it is written in, this could be as easy as counting the space-separated words. However, this is a very naive approach, as words like the, of, a, etc... will have the biggest word-count and are not very useful as tags. I would suggest implementing some sort of word black list, in order to exclude the most common and meaningless tags. </p> <p>Once you have the result in a (tag, count) way, you could use something similar to the following code:</p> <p>(Searches is a list of SearchRecordEntity, SearchRecordEntity holds the tag and its count, SearchTagElement is a subclass of SearchRecordEntity that has the TagCategory attribute,and ProcessedTags is a List of SearchTagElements which holds the result)</p> <pre><code>double max = Searches.Max(x =&gt; (double)x.Count); List&lt;SearchTagElement&gt; processedTags = new List&lt;SearchTagElement&gt;(); foreach (SearchRecordEntity sd in Searches) { var element = new SearchTagElement(); double count = (double)sd.Count; double percent = (count / max) * 100; if (percent &lt; 20) { element.TagCategory = "smallestTag"; } else if (percent &lt; 40) { element.TagCategory = "smallTag"; } else if (percent &lt; 60) { element.TagCategory = "mediumTag"; } else if (percent &lt; 80) { element.TagCategory = "largeTag"; } else { element.TagCategory = "largestTag"; } processedTags.Add(element); } </code></pre> http://stackoverflow.com/questions/331879/project-types-in-asp-net/331883#331883 2 Answer by Ramiro Berrelleza for Project Types in ASP.NET Ramiro Berrelleza 2008-12-01T19:20:48Z 2008-12-01T19:20:48Z <p>There is a similar question here thats already answered: <a href="http://stackoverflow.com/questions/43019/what-does-vs-2008s-convert-to-website-mean">http://stackoverflow.com/questions/43019/what-does-vs-2008s-convert-to-website-mean</a></p> <p>Hope it helps</p> http://stackoverflow.com/questions/311131/add-wpf-control-at-runtime/330360#330360 0 Answer by Ramiro Berrelleza for Add WPF control at runtime Ramiro Berrelleza 2008-12-01T09:22:17Z 2008-12-01T09:22:17Z <p>In case you want to add the control to a Grid instead of a Canvas you can specify all the Grid properties through the Grid static class as follows:</p> <pre><code>Label newLabel = new Label(); label.Content = "New Element"; Main.Children.Add(newLabel); Grid.SetColumn(newLabel, 0); Grid.SetRow(newLabel, 0); </code></pre> http://stackoverflow.com/questions/329682/where-to-find-the-status-of-the-wpf-image-control/330323#330323 2 Answer by Ramiro Berrelleza for Where to find the status of the WPF Image Control? Ramiro Berrelleza 2008-12-01T09:07:46Z 2008-12-01T09:07:46Z <p>As long as your ImageSource is a BitmapImage you could use the BitmapImage.DownloadCompleted event. The only problem I have found so far is that it only works from C#, so you would lose some flexibility. I'm guessing you could access that event from XAML, but I'm not sure how. The following sample starts loading the image with the click of a button, and updates a label when the image finished loading.</p> <p>XAML:</p> <pre><code>&lt;Grid&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="50" /&gt; &lt;RowDefinition Height="50" /&gt; &lt;RowDefinition Height="*" /&gt; &lt;/Grid.RowDefinitions&gt; &lt;Image x:Name="image" Grid.Row="2"/&gt; &lt;Label x:Name="label" Content="aaa" Grid.Row="1" /&gt; &lt;Button Click="Button_Click" Content="Click to load image" Grid.Row="0" /&gt; &lt;/Grid&gt; </code></pre> <p>Code:</p> <pre><code>private void Button_Click(object sender, RoutedEventArgs e) { BitmapImage bi = new BitmapImage(); bi.BeginInit(); bi.DecodePixelHeight = 100; bi.CacheOption = BitmapCacheOption.OnLoad; bi.UriSource = new Uri("bigImageUri"); bi.EndInit(); bi.DownloadCompleted += new EventHandler(bi_DownloadCompleted); image.Source = bi; } void bi_DownloadCompleted(object sender, EventArgs e) { label.Content = "dl completed"; } </code></pre> <p>Hope it helps!</p> http://stackoverflow.com/questions/184683/play-audio-from-a-stream-using-c/285194#285194 0 Answer by Ramiro Berrelleza for Play Audio from a Stream using C# Ramiro Berrelleza 2008-11-12T20:18:25Z 2008-11-12T20:18:25Z <p>I haven't tryed it from a WebRequest, but both the Windows Media Player activex and the MediaElement (from WPF) components are capable of playing and buffering mp3 streams. </p> <p>I use it to play data coming from a shoutcast stream and it worked great, however, I'm not sure if it will work on the scenario you propose.</p> http://stackoverflow.com/questions/205336/which-sms-aggregators-also-provide-voicemail-services/207408#207408 1 Answer by Ramiro Berrelleza for Which SMS aggregators also provide voicemail services? Ramiro Berrelleza 2008-10-16T04:04:33Z 2008-10-19T20:01:36Z <p>I've used <a href="http://web21c.bt.com/" rel="nofollow">BT's phone/sms services</a> in the past. It's a great service for sending sms as well as automating calls. I particularly like the fact that everything is open sourced, and they have wrappers for a lot of main stream languages, plus the API is quite simple.</p> <p>I was introduced to it in a course I took with the BT guys, and it took me a couple of days to have something not trivial running.</p> http://stackoverflow.com/questions/3553/one-piece-of-advice/13026#13026 18 Answer by Ramiro Berrelleza for One piece of advice Ramiro Berrelleza 2008-08-16T06:29:16Z 2008-08-16T06:29:16Z <p>A few things:</p> <p>1: When you pick your firsts real jobs, pick something you really love. Don't waste your time doing something you don't like just because it will give you experience, or even just because it pays well. Take advantage of the fact that early on your career you have way less to lose. Later (once you are married, or have kids, or are in dept, or all of the above) life will be harder, and you will have to make bigger compromises.</p> <p>2: Get involved in every project you can think of during college. Contribute to a locally organized conference, work on a school software project, work on a codeplex|sourceforge|googlecode project. Party. </p> <p>3: Have fun while doing all of the above.</p> http://stackoverflow.com/questions/5043/how-can-i-get-rich-just-programming/5314#5314 4 Answer by Ramiro Berrelleza for How can I get rich just programming Ramiro Berrelleza 2008-08-07T21:07:55Z 2008-08-07T21:07:55Z <P>I guess there aren't may millonarie programmers, but a very famous one is <A href="http://en.wikipedia.org/wiki/Charles_Simonyi" rel="nofollow">Charles Simonyi</A>, the father of Office. He was a programmer at Xerox Labs in Palo Alto before going to Microsoft. There he lead the Word and Excel teams.</P> <P>By the time he quit from Microsoft he was a millonaire (thanks to all the stock options he received as a Microsoft employee). Now he is a CEO of his own company, but he was rich before doing that.</P> <P>PS. By the way, he do has enough money to <A href="http://www.spaceadventures.com/index.cfm?fuseaction=news.viewnews&amp;newsid=501" rel="nofollow">travel to the space station</A>, jeje.</P> http://stackoverflow.com/questions/1469263/wcf-address-does-not-match-what-i-specify-in-my-web-config/1470462#1470462 Comment by Ramiro Berrelleza on WCF address does not match what I specify in my web.config Ramiro Berrelleza 2009-09-28T20:45:59Z 2009-09-28T20:45:59Z You can specify absolute addresses on the endpoint, but they have to match the base address of IIS+Application. For instance, if your application is hosted on server MyServer and the Application is MyApp, you could add an absolute endpoint like this: &lt;endpoint address=&quot;net.tcp://myserver/myapp/fakesubdir/endpoint1&quot; binding=&quot;netTcpBinding&quot; bindingConfiguration=&quot;Binding1&quot; contract=&quot;Querier.WCF.IQuerier&quot; /&gt; http://stackoverflow.com/questions/387594/c-open-source-project-namespace/388346#388346 Comment by Ramiro Berrelleza on C# Open Source Project Namespace Ramiro Berrelleza 2008-12-23T08:54:08Z 2008-12-23T08:54:08Z IMHO &quot;invading&quot; the .net official namespace is not a good idea. If the code is 3rd party, it should belong on a 3rd party namespace. Not knowing that some of your code uses external components could lead to lots of hard to debug/find trouble.