Posts

Showing posts with the label Website

ASCII Code For The TAB Character? (Want To Be Able To Input Tabs Into A Web Page Textbox)

Answer : Didn't read most of you post, sorry. But just fixing on the final little question what is the ASCII key code for Tab? ASCII value for tab is 9 (decimal or hex), so try Alt + ( Numpad 0 , Numpad 9 ). But, I've just tested doing so in this very edit box and it doesn't work, but it does in notepad, MS Word, etc. I wonder why...? Anyway, if you really need a tab somewhere odd, try copying one from notepad and pasting it where you need it - that's what I tend to do. Edit If you're doing this for it to be displayed on a website (which is what I think you're implying), a tab character may be ignored because HTML tends to ignore whitespace (outside of pre blocks, etc). If it is HTML you could also use the HTML entity version 	 as well, but this will function in the same way. The code is ALT + 0 0 9 However, I don't think it will accomplish what you are after. Hope this helps you -- you have quite a long question :-) Wikipedia ...

Block Specific URL On Web Browsers

Answer : The answer will only SLIGHTLY differ by the operating system you are using. I'm running Ubuntu on a powerpc :p but in general the same rules apply on windows and mac as well. If these instructions do not work for you then I will adapt this answer for your OS. For now here is the Linux method. The only way I have found after hours of searching, to do this, is to install privoxy . Once you install privoxy you need to edit the /etc/privoxy/config file in the following manner: 1) Find where it says #listen-address localhost:8118 and uncomment this line so that it says listen-address localhost:8118 2) Add the following lines to the bottom of this config file: actionsfile blacklist.action actionsfile whitelist.action 3) Now you need to create these action files in a text editor as root: a) gksu gedit /etc/privoxy/blacklist.action and add the following { +block } www.apple.com/itunes twil.tv/category/video www.url.com/page anything you add under...