User OJ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T13:28:16Z http://stackoverflow.com/feeds/user/611 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1664030/mvvm-command-routing-between-controls/1664143#1664143 1 Answer by OJ for MVVM Command Routing Between Controls OJ 2009-11-02T22:27:50Z 2009-11-02T22:27:50Z <p>You should create a command object which is a static object on a class that both the window and the control can see.</p> <pre><code> public static class MyCommands { public static RoutedUICommend CoolCommand .....; } </code></pre> <p>Then you can bind the control's Command property to the command object, for example:</p> <pre><code>&lt;Button Command="cmd:MyCommands.CoolCommand" /&gt; </code></pre> <p>Then you simply need to handle the command binding at the window level using the CommandBinding XAML element.</p> <pre><code>&lt;CommandBinding Command="cmd:MyCommands.CoolCommand" Executed="My_Handler" /&gt; </code></pre> http://stackoverflow.com/questions/1664026/wpf-change-styles-brush-color/1664114#1664114 1 Answer by OJ for WPF Change Style's Brush Color OJ 2009-11-02T22:22:15Z 2009-11-02T22:22:15Z <p>The easiest way to do this would be to use databinding instead. Bind the view to an object which has a property that contains the value of the colour you want to change. Then bind that property value to the gradient. When the button is clicked, modify that property and the databinding mechanism will update the colour on screen for you. Just make sure you either implement INotifyPropertyChanged or make the property a dependency property.</p> <p>Good luck!</p> http://stackoverflow.com/questions/1598649/asp-net-which-type-of-collection-should-i-use/1598660#1598660 1 Answer by OJ for ASP.NET which type of collection should I use? OJ 2009-10-21T04:03:14Z 2009-10-21T04:03:14Z <p>Create a class, and store that class in a collection.</p> <pre><code>class Search { public string Name { get; set; } public List&lt;string&gt; State { get; set; } public string Company { get; set; } } </code></pre> <p>Then you can have multiple states per search. Add instances of this to List and away you to.</p> http://stackoverflow.com/questions/1536205/running-another-program-in-windows-bat-file-and-not-create-child-process/1552400#1552400 1 Answer by OJ for Running another program in Windows bat file and not create child process. OJ 2009-10-12T02:18:05Z 2009-10-12T02:18:05Z <p>Use:</p> <pre><code>start cmd /c "your command" </code></pre> <p>Cheers.</p> http://stackoverflow.com/questions/1408243/hosted-svn-repositoryhosting-com/1408273#1408273 1 Answer by OJ for Hosted SVN - RepositoryHosting.com OJ 2009-09-10T23:36:00Z 2009-09-10T23:36:00Z <p>I'm not a hosted SVN fan (I'm not an SVN fan!) but I would say stick with your own internal hosting and perhaps back up to the cloud if you're worried about data loss.</p> <p>I'm sure that most people haven't had an issue, so you're probably safe. But if you're that concerned, the only person to trust is yourself :)</p> http://stackoverflow.com/questions/1408065/in-wpf-how-can-i-handle-an-event-in-an-itemscontrol-controltemplate/1408241#1408241 0 Answer by OJ for In WPF, how can I handle an event in an ItemsControl ControlTemplate OJ 2009-09-10T23:27:19Z 2009-09-10T23:27:19Z <p>Instead of using button click events, create a new Command, bind the Command property of the Button to the Command you created, and then add a CommandBinding to your user control to handle the command when it is executed.</p> <p>See <a href="http://www.switchonthecode.com/tutorials/wpf-tutorial-command-bindings-and-custom-commands" rel="nofollow">here</a> <a href="http://www.dev102.com/2008/12/10/using-command-binding-to-enhance-any-wpf-control/" rel="nofollow">for</a> more information.</p> http://stackoverflow.com/questions/1408199/xml-repair-in-c/1408219#1408219 1 Answer by OJ for XML repair in C# OJ 2009-09-10T23:20:42Z 2009-09-10T23:20:42Z <p>Use a regular expression to clean the xml first.</p> <p>something like:</p> <pre><code>s/([^\s"]+)=([^\s"]+="[^"]*")/\1\2/ </code></pre> <p>Obviously this would need to be ported to your Regex engine of choice :)</p> http://stackoverflow.com/questions/1408165/simple-way-to-handle-time-in-c/1408207#1408207 0 Answer by OJ for Simple way to handle time in C#? OJ 2009-09-10T23:15:31Z 2009-09-10T23:15:31Z <p>So you're only interested in the time component of the date.</p> <pre><code>if(DateTime.Now.TimeOfDay &gt; startHour.TimeOfDay) { // do stuff } </code></pre> <p>What's wrong with doing this?</p> http://stackoverflow.com/questions/1408139/what-is-wrong-with-this-simple-piece-of-code/1408191#1408191 1 Answer by OJ for What is wrong with this simple piece of code? OJ 2009-09-10T23:10:26Z 2009-09-10T23:10:26Z <p>I was under the impression (and I might be wrong) that you can't push values into memory addresses like that. You have to go via registers:</p> <pre><code>MOV EAX, 123 MOV [EBP-4], EAX </code></pre> <p>As I said, I might be wrong. But give it a go. Check out the instruction set manual as well. It'll show you what operations you can do on what addressing modes.</p> http://stackoverflow.com/questions/1263607/c-c-preprocesser-macro/1264021#1264021 0 Answer by OJ for C, C++ preprocesser macro OJ 2009-08-12T03:07:18Z 2009-08-12T03:07:18Z <p>Wierd. So far nobody has mentioned that the inline function option is type-safe, where the macro isn't!</p> http://stackoverflow.com/questions/1263618/wpf-groupbox-contextmenu-now-showing-unless-the-border-header-clicked 0 WPF GroupBox ContextMenu now showing unless the border/header clicked OJ 2009-08-12T00:04:08Z 2009-08-12T00:47:18Z <p>Hi everyone,</p> <p>I've got a scenario where I have a GroupBox which has a bit of content in it. I'm looking to add ContextMenu to that GroupBox and have that menu shown when the user right-clicks anywhere in the box.</p> <p>The problem I have is that the context menu only appears when the border or the header of the group box is clicked. If you click somewhere inside the box then the context menu of the parent is what's displayed.</p> <p>Here's some XAML that demonstrates the problem:</p> <pre><code>&lt;Window x:Class="Dummy.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300"&gt; &lt;Window.ContextMenu&gt; &lt;ContextMenu&gt; &lt;MenuItem Header="Window menu" /&gt; &lt;/ContextMenu&gt; &lt;/Window.ContextMenu&gt; &lt;GroupBox Header="GroupBox"&gt; &lt;GroupBox.ContextMenu&gt; &lt;ContextMenu&gt; &lt;MenuItem Header="GroupBox menu" /&gt; &lt;/ContextMenu&gt; &lt;/GroupBox.ContextMenu&gt; &lt;/GroupBox&gt; &lt;/Window&gt; </code></pre> <p>So when you click inside the groupbox, you always get the "Window menu" coming up, but I want the "Group menu" instead.</p> <p>Does anyone know why this is happening and potentially how I go about resolving it?</p> <p>Many thanks.</p> <p>OJ</p> http://stackoverflow.com/questions/1220262/creating-paths-on-different-threads-and-rendering-to-the-same-canvas 0 Creating Paths on Different Threads and Rendering to the Same Canvas OJ 2009-08-03T00:21:11Z 2009-08-03T01:39:20Z <p>Hi all,</p> <p>I'm currently working on a WPF (with C# behind the scenes) system which requires rendering of data from many different files. Most of those files are AutoCAD documents. Each file comes with a set of data that we need to draw on screen essentially on the same canvas. Think of each file as a potential "layer" or overlay that needs to appear on screen.</p> <p>At the moment, each graphics source is parsed and converted to a set of <a href="http://msdn.microsoft.com/en-us/library/system.windows.shapes.path.aspx" rel="nofollow">Path</a> objects. Each collection of paths is rendered to it's own <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.canvas.aspx" rel="nofollow">Canvas</a> so that its visibility can be toggled on or off. Each of these canvases is made a child of a parent canvas which has a set of transforms applied to it. Those transforms are basic scale and translate render transforms which are used to support panning and zooming of the image that is being viewed.</p> <p>This functionality currently works fine, but it's slow. We're rendering quite a few Path objects on screen and loading/creating those Path instances is taking quite a while.</p> <p>The load speed in itself isn't so much of an issue; what really is the issue is that I need to create the Path instances on the UI thread, otherwise I can't render them all on the same canvas. Hence, while loading, the <strong>entire UI is locked up</strong> and the user can't do anything.</p> <p>I have searched extensively on the web but can't seem to find a solution to the problem. I did stumble on one article (unfortunately I don't have the link anymore) which described a method of hosting items created on different threads on the same <em>window</em>. This didn't work for me at all. I tried a combination of things that I found in the article but I couldn't get anything to render at all.</p> <p>So I guess the crux of my question is: Is it possible to create a set of UI objects, in particular Path objects, on different threads, then load them into a parent canvas on the main UI thread and have them all play nicely together? Any references, articles or tutorials would be greatly appreciated.</p> <p>I'm looking forward to your help! Thanks for reading.</p> <p>OJ</p> <p><strong>Edit 1:</strong> Each of the Path instances is just a single line with a colour. They aren't complicated. But it seems that creation of those objects themselves is what is taking the time (I might be wrong). Thanks!</p> http://stackoverflow.com/questions/649831/wpf-scroll-bar/649852#649852 1 Answer by OJ for WPF Scroll bar OJ 2009-03-16T10:18:25Z 2009-06-24T11:54:18Z <p>Yes there is.</p> http://stackoverflow.com/questions/979182/learning-c-from-boost-library-source-code/979193#979193 9 Answer by OJ for learning c++ from boost library source code OJ 2009-06-11T03:36:26Z 2009-06-11T03:36:26Z <p>I can't give advice on how to read boost code, but I can offer some other advice.</p> <p>Stop reading and start <strong>writing</strong> :) Reading is valuable, but you won't learn anywhere near as much unless you start writing code yourself. Start with the basics. Read the beginners books and <em>type out the samples</em> (don't copy and paste). You'll learn by having to fix the errors that are the result of you mistyping. Play with some of your own ideas for simple applications and go from there.</p> <p>Starting off by reading boost source code is a sure fire way of scaring yourself off the language and/or ending up very confused with a lot of questions.</p> <p>Start small, work your way up.</p> http://stackoverflow.com/questions/979174/does-an-stl-map-always-give-the-same-ordering-when-iterating-from-begin-to-end/979181#979181 -2 Answer by OJ for Does an STL map always give the same ordering when iterating from begin() to end()? OJ 2009-06-11T03:32:31Z 2009-06-11T03:32:31Z <p>On the same data set under the same implementation of STL, yes. It's not guaranteed to be the same across different implementations as far as I'm aware.</p> http://stackoverflow.com/questions/979164/c-cli-change-all-files-to-unmanaged-by-default/979175#979175 0 Answer by OJ for C++ / CLI - Change all files to UNMANAGED by default OJ 2009-06-11T03:31:11Z 2009-06-11T03:31:11Z <p>From what I can see, no there is no way of, by default, setting each .cpp file to native inside of VS or on the command line. You'll have to do it manually in the IDE (or script something that modifies the proj file).</p> http://stackoverflow.com/questions/979129/is-there-a-decent-tool-for-automatically-cleaning-the-crap-out-of-vs-solution-dir/979157#979157 4 Answer by OJ for Is there a decent tool for automatically cleaning the crap out of VS solution directories? OJ 2009-06-11T03:22:50Z 2009-06-11T03:22:50Z <p><a href="http://www.hanselman.com/blog/TheWeeklySourceCode42TreeTrimPluginsAndMEF.aspx" rel="nofollow">TrimTree and CleanSources++</a> ?? :)</p> http://stackoverflow.com/questions/979118/trouble-coming-up-with-good-names-for-functions/979146#979146 0 Answer by OJ for Trouble coming up with good names for functions. OJ 2009-06-11T03:18:24Z 2009-06-11T03:18:24Z <p>Your functions should really state what it is they do! But not in an overly verbose manner. This is something that you will master over time, it takes a bit of practice getting a function right.</p> <p>Have a quick read of <a href="http://buffered.io/2007/07/20/avoid-writing-unintuitive-code/" rel="nofollow">this</a> to see some stuff I wrote about this kind of thing a while back :) Make sure you follow through to the <a href="http://blog.kirupa.com/?p=111" rel="nofollow">other article</a> that inspired me to write it and check out the comments.</p> http://stackoverflow.com/questions/964792/how-to-edit-the-log-on-as-user-in-a-net-windows-service/964837#964837 1 Answer by OJ for How to edit the "log on as" user in a .Net Windows Service OJ 2009-06-08T13:08:14Z 2009-06-08T13:08:14Z <p>You will need to use the <a href="http://msdn.microsoft.com/en-us/library/system.serviceprocess.serviceinstaller%5Fmembers.aspx" rel="nofollow">ServiceInstaller</a> class in conjuction with the <a href="http://msdn.microsoft.com/en-us/library/system.serviceprocess.serviceinstaller%5Fmembers.aspx" rel="nofollow">ServiceProcessInstaller</a> class. To set the account to run the service under, you need to set the <a href="http://msdn.microsoft.com/en-us/library/system.serviceprocess.serviceprocessinstaller.account.aspx" rel="nofollow">Account</a> property.</p> http://stackoverflow.com/questions/946019/restrict-number-of-user-account-sign-ups-in-a-period/964794#964794 0 Answer by OJ for Restrict number of user account sign-ups in a period ??? OJ 2009-06-08T12:59:44Z 2009-06-08T12:59:44Z <p>I would recommend implementing a different authentication mechanism such as OpenID, or are Alex said, force the users to specify a valid email and send them confirmation links via email before accounts get created.</p> <p>My preference is OpenID for sure.</p> http://stackoverflow.com/questions/964743/why-is-person-not-a-ref-class/964767#964767 0 Answer by OJ for Why is PERSON not a ref class??? OJ 2009-06-08T12:51:44Z 2009-06-08T12:51:44Z <p>Shouldn't you be putting:</p> <pre><code>#using &lt;mscorlib.dll&gt; </code></pre> <p>at the top of your header files? I'm not sure if that would fix the issue to be honest.</p> <p>Try making your <code>Person</code> class <code>abstract</code>.</p> http://stackoverflow.com/questions/964233/cant-compile-c-code/964262#964262 0 Answer by OJ for can't compile c code OJ 2009-06-08T10:31:58Z 2009-06-08T10:31:58Z <p>Looks like you might be missing some libraries.</p> http://stackoverflow.com/questions/964170/how-do-i-bind-a-stackpanel-to-my-viewmodel/964252#964252 0 Answer by OJ for How do I bind a StackPanel to my ViewModel? OJ 2009-06-08T10:29:29Z 2009-06-08T10:29:29Z <p>Have you tried using a <code>Border</code> or just a plain <code>Grid</code>?</p> <pre><code>&lt;Border Content="{Binding FormFields}" /&gt; </code></pre> <p>Still, I'm questioning the design. The Form Fields should live in a view, and the view should be specified in data template which is instantiated based on the view model type. I wouldn't personally do what you're doing in code.</p> <p>Cheers.</p> http://stackoverflow.com/questions/923822/whats-the-use-of-do-while0-when-we-define-a-macro/923828#923828 -3 Answer by OJ for What's the use of do while(0) when we define a macro? OJ 2009-05-29T00:08:09Z 2009-05-29T00:08:09Z <p>My guess would be something to do with portability across platforms and compilers.</p> http://stackoverflow.com/questions/871745/is-this-a-correct-way-of-writing-the-haskell-foldr-function/871767#871767 4 Answer by OJ for Is this a correct way of writing the Haskell foldr function? OJ 2009-05-16T05:27:05Z 2009-05-16T05:27:05Z <p>Yours is broken. Try it with something that doesn't end up with a single numeric result.</p> <pre><code>eg: listFoldr (++) "a" ["b", "c", "d"] </code></pre> <p>You're processing in the wrong direction.</p> http://stackoverflow.com/questions/670464/dropdownlist-doesnt-reset-on-page-reload/670480#670480 0 Answer by OJ for dropdownlist doesn't reset on page reload OJ 2009-03-22T02:55:00Z 2009-03-22T02:55:00Z <p>Try <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.enableviewstate.aspx" rel="nofollow">disabling veiwstate</a> on the checkbox if you don't need it.</p> http://stackoverflow.com/questions/645728/what-is-a-module-in-net/645737#645737 6 Answer by OJ for What is a module in .NET? OJ 2009-03-14T10:29:16Z 2009-03-14T10:38:17Z <p>A module is a logical collection of code within an Assembly. You can have multiple modules inside an Assembly, and each module can be written in different .NET languages (VS, as far as I'm aware, doesn't support creation of multi-module assemblies).</p> <p>Assemblies contain modules. Modules contain classes. Classes contain functions.</p> <p>Yes you can access assemblies, modules, classes, functions, properties, fields etc all via reflection at runtime.</p> <blockquote> <p>A module is sub-assembly (satellite assembly).</p> </blockquote> <p>I really don't agree with that. Any chance you pass a link that backs that up?</p> http://stackoverflow.com/questions/645622/app-config-and-f-interactive-not-working/645653#645653 0 Answer by OJ for App.config and F# Interactive not working OJ 2009-03-14T08:51:49Z 2009-03-14T09:03:46Z <p>The problem is that FSI is a different exe running behind the scenes and does some crazy tricks with on-the-fly compilation and generation of binaries. Check to see which <a href="http://msdn.microsoft.com/en-us/library/system.reflection.assembly.getexecutingassembly.aspx" rel="nofollow">assembly FSI thinks is running</a>. You might be surprised what you find :)</p> <p>It will throw an error:</p> <blockquote> <p>System.NotSupportedException: The invoked member is not supported in a dynamic assembly. at System.Reflection.Emit.AssemblyBuilder.get_Location()</p> </blockquote> <p>You need to look into how to get app.config settings into dynamic assemblies. This could be a pain, and might not be worth it. If it works as a compiled binary, I'd test those things that rely on config settings outside of FSI.</p> <p>Good luck.</p> http://stackoverflow.com/questions/618169/clean-vector-every-loop-iteration-what-is-the-most-memory-efficient-way/618244#618244 1 Answer by OJ for Clean vector every loop iteration. What is the most memory efficient way? OJ 2009-03-06T09:46:08Z 2009-03-06T09:46:08Z <blockquote> <p>...reserving enough memory for the vectors in advance will help me a lot with reducing memory usage</p> </blockquote> <p>err... what?! That makes no sense at all. Reserving memory doesn't help with reducing memory usage in any way. It prevents the need for constant reallocation which makes things faster, but as far as <em>usage</em> goes you get no benefit.</p> http://stackoverflow.com/questions/609240/access-violation/609310#609310 0 Answer by OJ for Access Violation OJ 2009-03-04T05:09:27Z 2009-03-04T05:09:27Z <pre><code>for (int i = 0; i &lt; 15; i++) { S_trial [i] = S_order [i]; } // .... for (int i = 0; i &lt;15; i++) { S_order [i] = i; } </code></pre> <p>Both loops are going too high. Change them to 14 instead of 15.</p> http://stackoverflow.com/questions/331520/how-to-fix-referenced-assembly-does-not-have-a-strong-name-error-vs2005/331555#331555 Comment by OJ on How to fix "Referenced assembly does not have a strong name" error (VS2005) OJ 2009-11-09T12:45:50Z 2009-11-09T12:45:50Z You can use unsigned assemblies if your assembly is also unsigned. http://stackoverflow.com/questions/1664030/mvvm-command-routing-between-controls/1664143#1664143 Comment by OJ on MVVM Command Routing Between Controls OJ 2009-11-04T02:13:35Z 2009-11-04T02:13:35Z It's not that this is a standard practice for linking stuff together. It's more a common practice for when you need to bind commands to command handlers that don't share bindings in another way. This is basically the same mechanism that the built-in WPF comments used (such as ApplicationCommands). http://stackoverflow.com/questions/1598649/asp-net-which-type-of-collection-should-i-use/1598660#1598660 Comment by OJ on ASP.NET which type of collection should I use? OJ 2009-10-21T22:15:58Z 2009-10-21T22:15:58Z If you want loose typing, then I'd go for what others have already suggested, Dictionary&lt;string, List&lt;string&gt;&gt;. http://stackoverflow.com/questions/1598649/asp-net-which-type-of-collection-should-i-use/1598655#1598655 Comment by OJ on ASP.NET which type of collection should I use? OJ 2009-10-21T04:04:27Z 2009-10-21T04:04:27Z This is overkill for Name and Company fields where there is only one. http://stackoverflow.com/questions/1598649/asp-net-which-type-of-collection-should-i-use/1598660#1598660 Comment by OJ on ASP.NET which type of collection should I use? OJ 2009-10-21T04:03:50Z 2009-10-21T04:03:50Z Hrm, it seems I may have misread. Are each of those values separate searches? Or is this one single search? http://stackoverflow.com/questions/1552973/replace-strings-in-file Comment by OJ on Replace strings in file OJ 2009-10-12T06:14:58Z 2009-10-12T06:14:58Z I agree with Marc. I'm not sure I can condone this activity by helping you :) http://stackoverflow.com/questions/1408165/simple-way-to-handle-time-in-c/1408207#1408207 Comment by OJ on Simple way to handle time in C#? OJ 2009-09-14T04:42:22Z 2009-09-14T04:42:22Z Yes, but that's if you assume that the snippet that was provided is the only part of the code that uses startHour. But what if startHour's date value is used elsewhere? http://stackoverflow.com/questions/1408199/xml-repair-in-c/1408219#1408219 Comment by OJ on XML repair in C# OJ 2009-09-14T04:41:09Z 2009-09-14T04:41:09Z Without a doubt. The goal was to give an idea, not a production quality implementation. Hence the statement &quot;something like&quot; :) http://stackoverflow.com/questions/1408225/c-net-framework-border-on-only-one-side-of-the-form Comment by OJ on C# .net framework- border on only one side of the form OJ 2009-09-10T23:37:08Z 2009-09-10T23:37:08Z To allow us to help you better, can you please tell us what you're trying to achieve by removing borders? Are you looking to stop the window from being resized? Is it just a visual thing? http://stackoverflow.com/questions/1408139/what-is-wrong-with-this-simple-piece-of-code/1408191#1408191 Comment by OJ on What is wrong with this simple piece of code? OJ 2009-09-10T23:31:06Z 2009-09-10T23:31:06Z Thanks Michael. I need to get back into ASM. Time to break out the instruction manual. I appreciate the feedback :) http://stackoverflow.com/questions/1408139/what-is-wrong-with-this-simple-piece-of-code/1408191#1408191 Comment by OJ on What is wrong with this simple piece of code? OJ 2009-09-10T23:11:52Z 2009-09-10T23:11:52Z This answer is a fail :) http://stackoverflow.com/questions/1408139/what-is-wrong-with-this-simple-piece-of-code/1408181#1408181 Comment by OJ on What is wrong with this simple piece of code? OJ 2009-09-10T23:11:01Z 2009-09-10T23:11:01Z Great answer :) http://stackoverflow.com/questions/17434/when-should-you-use-friend-in-c/17447#17447 Comment by OJ on when should you use 'friend' in c++ ? OJ 2009-09-07T23:16:22Z 2009-09-07T23:16:22Z Now you're quibbling over semantics. The public methods expose an interface which isn't tied to your innards. The innards can change without affecting the interface. Plus I never said that I don't have public functions either. I appreciate the patronising hint too. I'm struggling to see how your comment adds any value to the discussion -- especially when the thread is well over a year old. http://stackoverflow.com/questions/1263607/c-c-preprocesser-macro/1264021#1264021 Comment by OJ on C, C++ preprocesser macro OJ 2009-08-16T23:24:26Z 2009-08-16T23:24:26Z But it doesn't enforce the same types on the two parameters. Use it with char* and int and you'll see what I mean. http://stackoverflow.com/questions/1263925/how-do-i-refer-to-the-directory-where-my-net-program-is-installed/1263928#1263928 Comment by OJ on How do I refer to the directory where my .net program is installed? OJ 2009-08-12T03:01:35Z 2009-08-12T03:01:35Z System.Environment.CurrentDirectory doesn't give the install directory, it gives the current active/working directory. See <a href="http://msdn.microsoft.com/en-us/library/system.environment.currentdirectory.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a>