User percent20 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T23:11:08Z http://stackoverflow.com/feeds/user/23571 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1628166/problem-with-japanese-international-characters-with-iis7-url-rewrite 1 Problem with Japanese/International Characters with IIS7 URL Rewrite percent20 2009-10-27T00:49:41Z 2009-10-27T02:17:35Z <p>I have a friend with a Japanese blog, using wordpress, he has the pretty url. Basically domain.com/postname. Well an example of a url might be. "domain.com/テスト". His blog is hosted on an Apache web server.</p> <p>I am running IIS7 and am trying to get my Japanese blog going like it should, and have "domain.com/テスト" show just that one post when you visit that url. My thinking is it has something to do with url-encoding. I can't find too much information on utf-8 or anything about getting international characters to work in a url.</p> <p>Any help on this would be great. I am thinking I should change something in the web.config file, but not to sure. I haven't had a lot of experience with IIS7.</p> <p>Thanks.</p> http://stackoverflow.com/questions/815292/programming-tips-with-japanese-language-characters 4 Programming tips with Japanese Language/Characters percent20 2009-05-02T18:00:20Z 2009-07-03T11:48:29Z <p>I have an idea for a few web apps to write to help me, and maybe others, learn Japanese better since I am studying the language.</p> <p>My problem is the site will be in mostly english, so it needs to mix fluently Japanese Characters, usually hirigana and katakana, but later kanji. I am getting closer to accomplishing this; I have figured out that the pages and source files need to be unicode and utf-8 content types.</p> <p>However, my problem comes in the actual coding. What I need is to manipulate strings of text that are kana. One example is:</p> <p>けす I need to take that verb and convert it to the te-form けして. I would prefer to do this in javascript as it will help down the road to do more manipulation, but if I have to will just do DB calls and hold everything in a DB.</p> <p>My question is not only how to do it in javascript, but what are some tips and strategies to doing these kinds of things in other languages, too. I am hoping to get more into doing language learning apps, but am lost when it comes to this.</p> <p>Any advice would be great.<br /> Thanks.</p> http://stackoverflow.com/questions/404430/what-have-you-used-regular-expressions-for 7 What have you used Regular Expressions for? percent20 2009-01-01T02:39:17Z 2009-06-21T03:57:06Z <p>I have heard of regular expressions and only seen use cases for a few things so I don't think of using them very often. In the past I have done a couple of things and it has taken me hours to do. Later I talk to someone and they say "here is how to do it using a regular expression".</p> <p>So what are things for which you have used Regular Expressions? If I get more examples then maybe I can begin to know when to look for and use them.</p> http://stackoverflow.com/questions/850358/how-do-i-control-a-power-strips-power-from-c/850369#850369 2 Answer by percent20 for How do I control a Power Strip's power from C#? percent20 2009-05-11T22:25:52Z 2009-05-11T22:25:52Z <p>There is something at Coding4Fun that might help.</p> <p><a href="http://blogs.msdn.com/coding4fun/archive/2006/10/31/916478.aspx" rel="nofollow">http://blogs.msdn.com/coding4fun/archive/2006/10/31/916478.aspx</a> <a href="http://blogs.msdn.com/coding4fun/archive/2006/12/20/1337418.aspx" rel="nofollow">http://blogs.msdn.com/coding4fun/archive/2006/12/20/1337418.aspx</a></p> <p>Maybe those might help.</p> http://stackoverflow.com/questions/849155/jquery-require-checkbox-and-radio-button-before-submit 1 JQuery Require Checkbox and Radio Button before submit percent20 2009-05-11T17:36:22Z 2009-05-11T18:00:15Z <p>I am having one heck of a hard time trying to figure this out. Been looking at examples and tools for JQuery validation for over 3 hours now.</p> <p>All I want to do is require that a checkbox is selected and a radio button, but I don't care which one is required.</p> <pre><code>&lt;form id="form1" action="/controller/action" method="post"&gt; &lt;div class="checkbox"&gt;&lt;input type="checkbox" name="box1" class="cBox" /&gt;&lt;label for="box1" class="label"&gt;Box1&lt;/label&gt;&lt;/div&gt; &lt;div class="checkbox"&gt;&lt;input type="checkbox" name="Box2" class="cBox" /&gt;&lt;label for="Box2" class="label"&gt;Box2&lt;/label&gt;&lt;/div&gt; &lt;div class="checkbox"&gt;&lt;input type="checkbox" name="Box3" class="cBox" /&gt;&lt;label for="Box3" class="label"&gt;Box3&lt;/label&gt;&lt;/div&gt; &lt;div class="radio"&gt;&lt;input type="radio" name="print" value="Radio1" class="rad" /&gt;&lt;label class="label"&gt;Radio1&lt;/label&gt;&lt;/div&gt; &lt;div class="radio"&gt;&lt;input type="radio" name="print" value="Radio2" class="rad" /&gt;&lt;label class="label"&gt;Radio2&lt;/label&gt;&lt;/div&gt; &lt;div class="radio"&gt;&lt;input type="radio" name="print" value="Radio3" class="rad" /&gt;&lt;label class="label"&gt;Radio3&lt;/label&gt;&lt;/div&gt; &lt;input type="submit" value="Submit" /&gt; </code></pre> <p></p> <p>Any help would be greatly appreciated.</p> http://stackoverflow.com/questions/414726/asp-net-mvc-and-jquery-get-info-to-controller 2 ASP.NET MVC and JQuery get info to controller percent20 2009-01-05T22:27:35Z 2009-01-05T23:56:50Z <p>I am totally confused on how to do ajax stuffs with jQuery and it seems the more I try the more confused I get. At this point all I want to do is get data to my controller using jQuery ajax. Some code for my jquery ajax call is.</p> <pre><code>$(function() { $('#buttonAddLink').click(function() { var AjaxLink = { title: $("#linkTitle").val(), url: $("#linkUrl").val() }; $.ajax({ url: '/User/AddLink', type: 'POST', data: AjaxLink, dataType: 'json', success: function(result){ $('.added').html(result.Result).show(); } }); }); }); </code></pre> <p>Here is my controller and Action I am using. From trying to look at several tutorials it "should" work to the best of my knowledge, but apparently I don't get it like I thought I did.</p> <pre><code>public ActionResult AddLink(string title, string url) { return Json(new { Result = string.Format(title + " " + url)}); } </code></pre> <p>All I am basically trying to do with that is do the Ajax call and return it to display just to make sure data was sent to the controller.</p> http://stackoverflow.com/questions/404607/what-are-the-things-you-do-in-code-which-you-are-obsessive-about/404625#404625 4 Answer by percent20 for What are the things you do, in code, which you are obsessive about? percent20 2009-01-01T06:09:49Z 2009-01-01T06:09:49Z <p>casing. If something isn't cased right I go ballistic because I can so easily get lost. </p> <p>Also is proper indentation and proper code commenting comments must be why not what.</p> http://stackoverflow.com/questions/239062/most-unpleasant-programming-task-youve-had-to-do/404554#404554 0 Answer by percent20 for Most Unpleasant Programming Task You've Had to Do percent20 2009-01-01T05:10:03Z 2009-01-01T05:10:03Z <p>I had to debug a web service and I was unable to compile and run the code. I was pointed to the project and they said fix the problem it returns the error:</p> <p>"instance of object not found"</p> <p>go. Needless to say debugging by hand sucks. Before I was able to fix it they went ahead and dropped the project all together.</p> http://stackoverflow.com/questions/404351/char-vs-char-how-do-you-pronounce-it/404375#404375 12 Answer by percent20 for char vs char - how do you pronounce it? percent20 2009-01-01T01:08:37Z 2009-01-01T01:08:37Z <p>I pronounce it like a <strong>car</strong></p> http://stackoverflow.com/questions/381864/project-naming 2 Project Naming percent20 2008-12-19T18:56:08Z 2009-01-01T00:11:45Z <p>As a beginner/intermediate developer one problem I run into as my projects get bigger and more abstracted away as i use more OOP principles I have a problem with naming things. Like when i have multiple projects or class libraries I don't know what to name them. I see things from xxx.Core to xxx.Main or have even seen xxx.BLL and xxx.DAL. While looking through others i have seen xxx.Services and xxx.Data for their library and namespaces.</p> <p>Then once that is solved is what do i cal DTO's? In that realm i have seen xxx.DTO, xxx.Entities, xxx.Props.</p> <p>What are some good guidelines to naming libraries, methods, interfaces, etc... while coding so that more and more people will understand things when they come to pick up the project after me.</p> http://stackoverflow.com/questions/70846/developers-bill-of-rights/404303#404303 2 Answer by percent20 for Developers' Bill Of Rights percent20 2009-01-01T00:06:00Z 2009-01-01T00:06:00Z <p>Ability to offer ideas no matter what level of the team you are on from the junior dev to the big dog.</p> http://stackoverflow.com/questions/404196/ethics-of-assisting-other-programmers-where-do-we-draw-the-line/404217#404217 4 Answer by percent20 for Ethics of assisting other programmers, where do we draw the line? percent20 2008-12-31T22:56:35Z 2008-12-31T22:56:35Z <p>This is a problem I have run into in that i want to learn "how to 'hack'" not because I want to break into peoples computers, but because i want to learn to prevent it. In order to prevent it I need to know how. This leads to the problem I don't know what to ask, where to ask, or how to ask because I am afraid someone might mis-interrupt my intentions and put me on some list somewhere.</p> <p>So this goes along of maybe it would be a good idea to have a place for specific things and have a way to clarify intentions.</p> <p>Edit: sorry if what I have said is incoherent it makes sense to me but my ADD sometimes grabs me and things don't come out right.</p> http://stackoverflow.com/questions/403480/using-a-custom-url-rewriter-iis6-and-urls-with-htm-html-etc/403604#403604 3 Answer by percent20 for Using a custom URL rewriter, IIS6, and urls with .htm, .html, etc percent20 2008-12-31T17:47:24Z 2008-12-31T17:47:24Z <p>Don't know if you can or would want to do this, but there is the Ionics Isapi url rewriter you can use.</p> <p><a href="http://www.codeplex.com/IIRF" rel="nofollow">http://www.codeplex.com/IIRF</a></p> <p>Basically install that then set a rule to remove the .html that way it hits your rewrite engine. I use it on IIS 6 with several of my blogs.</p> http://stackoverflow.com/questions/402265/beginner-programmer-which-direction/402281#402281 0 Answer by percent20 for Beginner Programmer - Which direction percent20 2008-12-31T04:08:02Z 2008-12-31T04:27:50Z <p>I am very familiar with where you are at right now. Was just there and finally coming out of it. My suggestion is you code, read others code and things of that nature. Really make sure you understand how to code with C#. As a shameless plug my blog <a href="http://www.buddylindsey.com/Blog" rel="nofollow">http://www.buddylindsey.com/Blog</a> has some beginner content programming wise that might help on understanding more. Its up to you.</p> <p>I also suggest going through <a href="http://www.autumnofagile.net/" rel="nofollow">http://www.autumnofagile.net/</a> when you get more comfortable with programming, or even now. It will help you with a good "process" of coding and coding in general. Again i stress make sure you understand OOP in practical use and not just theory. The sooner you understand it the better this held me up for a long time in advancing in programming.</p> http://stackoverflow.com/questions/312922/pressing-enter-on-textbox-in-silverlight 1 Pressing Enter on TextBox in Silverlight percent20 2008-11-23T20:33:55Z 2008-11-24T02:48:50Z <p>I am working on a silverlight app that you need to enter information into a textbox and then just hit enter. Well there is no onclick event, that I could find, so what I did was use the onkeypressup event and check if it was the enter key that was pressed if so do "blah".</p> <p>It just feels like there is a better way to do this. So the question is, is there?</p> http://stackoverflow.com/questions/1628166/problem-with-japanese-international-characters-with-iis7-url-rewrite Comment by percent20 on Problem with Japanese/International Characters with IIS7 URL Rewrite percent20 2009-10-27T01:14:20Z 2009-10-27T01:14:20Z I don't believe it is a wordpress configuration problem as I have the default web.config for url rewritting for IIS and it works perfectly, minus the japanese. I can't find much information on url rewriting and international characters in general. http://stackoverflow.com/questions/849155/jquery-require-checkbox-and-radio-button-before-submit/849226#849226 Comment by percent20 on JQuery Require Checkbox and Radio Button before submit percent20 2009-05-11T17:53:09Z 2009-05-11T17:53:09Z Thank you I am glad to know that as I am going to have a couple other forms on the page and this helps with that. And the answer is still simple. http://stackoverflow.com/questions/849155/jquery-require-checkbox-and-radio-button-before-submit/849194#849194 Comment by percent20 on JQuery Require Checkbox and Radio Button before submit percent20 2009-05-11T17:51:02Z 2009-05-11T17:51:02Z Thank you, I feel like such an idiot now. That is sooo simple. I'm going to go bang my head on a wall for a while now. Thanks for the help. http://stackoverflow.com/questions/815292/programming-tips-with-japanese-language-characters/817506#817506 Comment by percent20 on Programming tips with Japanese Language/Characters percent20 2009-05-05T02:52:18Z 2009-05-05T02:52:18Z I wish I could mark this as an answer too. :( Thanks for the great information. I was only going to do my own conjugation routines as a programming exercise and to better learn the core around japanese langauge. If i get further into Japanese I will definitely take a look at a segmenter. Thanks. http://stackoverflow.com/questions/815292/programming-tips-with-japanese-language-characters/817608#817608 Comment by percent20 on Programming tips with Japanese Language/Characters percent20 2009-05-05T02:49:06Z 2009-05-05T02:49:06Z Actually after reading this and talking to a friend I tried to do basic string manipulation again based on the &quot;everything is a string&quot; and it worked. I have no idea what I was doing that killed the first attempt at it, but I am glad it was that easy and feel dumb for it not working the first time. Thanks for the response. http://stackoverflow.com/questions/815292/programming-tips-with-japanese-language-characters/815497#815497 Comment by percent20 on Programming tips with Japanese Language/Characters percent20 2009-05-02T20:56:49Z 2009-05-02T20:56:49Z Sorry, My question is kind of two things in one. I was nervous to start 2 different topics so I combined a &quot;What are some tips to work with Japanese language&quot; and &quot;How can I accomplish xyz&quot;. Are there any more tips you can offer with your experience anything would be great. I had not thought about sperating out words, hadn't gotten that far. Mostly am after how to manipulate individual words. However, any tips on programming with the japanese langauge is helpful and appreciated. To be honest I was trying to avoid mapping files an unicode, but looks like need to use either or both. http://stackoverflow.com/questions/815292/programming-tips-with-japanese-language-characters/815311#815311 Comment by percent20 on Programming tips with Japanese Language/Characters percent20 2009-05-02T19:32:38Z 2009-05-02T19:32:38Z This is one reason I asked a while back about what to use regex. I never even thought to use regex until you and dirkgently above suggested it. I might give this a try I just need to figure out unicode and regex now. Brand new to unicode and fairly new to Regex http://stackoverflow.com/questions/815292/programming-tips-with-japanese-language-characters/815357#815357 Comment by percent20 on Programming tips with Japanese Language/Characters percent20 2009-05-02T19:31:17Z 2009-05-02T19:31:17Z Actually I have thought about doing the mapping and can see the benefit of it, but also see the benefit of the more on they fly transformation. I have been unsure of what approach and even how to deal with Japanese all together as I code. The big thing is later on when I get to short forms and tai forms is where I see the on they fly helping out. http://stackoverflow.com/questions/815292/programming-tips-with-japanese-language-characters Comment by percent20 on Programming tips with Japanese Language/Characters percent20 2009-05-02T18:09:38Z 2009-05-02T18:09:38Z No not stemming in the example the root word is basically けす but I am changing the す to し and adding て. Another example is のむ changing the む to んで to get のんで. An easier example might just be. たべる which you would drop the る and add て to get たべて. Hopefully this makes more sense. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406876#406876 Comment by percent20 on What's your most controversial programming opinion? percent20 2009-01-02T14:53:43Z 2009-01-02T14:53:43Z +1 sorta. I use my tablet when I can like pen and paper because sometimes its just easier to write than use a piece of software. http://stackoverflow.com/questions/404430/what-have-you-used-regular-expressions-for Comment by percent20 on What have you used Regular Expressions for? percent20 2009-01-01T02:53:06Z 2009-01-01T02:53:06Z I a look through the regex tag but saw a lot of similar stuff was after more what people have used for in the past not just necessarily what is asked about on here. More options I can &quot;see&quot; the more it helps me understand the use. A lot of SO regex is the same thing. http://stackoverflow.com/questions/381864/project-naming/404308#404308 Comment by percent20 on Project Naming percent20 2009-01-01T00:17:31Z 2009-01-01T00:17:31Z Yeah same person. Yeah I understand that I was more after the actual naming itself not necessarily organization.