Wednesday, 3 July 2013

How to Disable Addressbar in Google Chrome

How to Disable Addressbar in Google Chrome

Search results

  1. support.google.com/chrome/answer/95656   Cached
    When you type in the address bar, Google Chrome can use a prediction service to help you ... Learn more about Google's autocomplete algorithm. Disable the ...
  2. www.howtogeek.com/93995/how-to-auto-​hide-the-address-bar...   Cached
    One of the features that many people love in Chrome is the minimal UI at the top of the browser. Want to minimize it even more? Then you will definitely want to make ...
  3. www.ehow.com/how_6763906_delete-history-​google-address...   Cached
    How to Delete the History From the Google Address Bar. ... How to Customize the Address Bar in Google Chrome. ... How to Remove Google's Address Cache.
  4. answers.yahoo.com/question/​index?qid=20111030141433AAAjVZJ   Cached
    [Oct 30, 2011] Best Answer: Wow. Just wow. You can't delete the address bar (called omnibox in Chrome) It's how you search stuff on the internet. Deleting/hiding it would ... ~ by ? ( 3 comments )
  5. groups.google.com/a/​googleproductforums.com/group/chrome/​...   Cached
    There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
  6. support.google.com/chrome/answer/95319   Cached
    You can remove Google Chrome like any other Windows program. Follow these steps: Close all Chrome windows and tabs. Go to the Start menu > Control Panel.
  7. raufakram.wordpress.com/2013/07/02/how-​to-optimize...   Cached
    Google Chrome sends personal data to Google by default, but it doesn’t have to. We’ll show you what information each feature sends to Google and why ...
  8. www.tech2date.com/how-to-hide-address-​bar-in-google...   Cached
    TweetEmail TweetEmail One of the best things which one likes in Google Chrome browser is its minimal UI at the top. Yes, no other browser gives you so much screen ...
  9. productforums.google.com/forum/​#!category-topic/chrome/...
    how to remove address bar? gvitalie: 10/21/09 11:06 PM: how to remove address bar and open it (address bar) in midle of the screen only when pressed the ALT+F2 (like ...
  10. productforums.google.com/d/topic/chrome/​gX-XROa4f6c   Cached
    Right click on the address bar edit search engines, remove the culprit search engines. ... When I type sw.main in the omnibox Chrome searches in google for sw.main.

Recommended approach for namespace handling in JavaScript?

Recommended approach for namespace handling in JavaScript?

Search results

  1. devnet.jetbrains.com/thread/​440264?tstart=1
    This Question is Not Answered 1 "correct" answer available (4 pts) 2 "helpful" answers available (2 pts)
  2. stackoverflow.com/questions/tagged/​namespaces?page=28&...
    A namespace is a container that provides context for identifiers, within which names are unique. ... Using lazy initialisation with namespaces in Javascript.
  3. blog.stannard.net.au/.../creating-​namespaces-in-javascript   Cached
    This approach is better that having outright global variables, but it exposes everything within the namespace as global. In other words both foo.name and foo.greeting ...
  4. elegantcode.com/.../01/26/basic-​javascript-part-8-namespaces   Cached
    Basic JavaScript Part 8: ... using namespaces in JavaScript is definitely a recommended practice. ... Also check out Maxime Bouroumeau-Fuseau’s Namespace.js, ...
  5. www.fotiweb.com/2007/10/31/javascript-​namespaces   Cached
    The primary namespace should be in ... but I’ve taken a slightly different approach. ... That’s because the exceptional DOM and Event handling Utilities give me a ...
  6. www.codeproject.com/Articles/19030/​Namespaces-in-JavaScript   Cached
    Namespace.js contains the sourcecode above which we already described, so let's move to the next. ... JavaScript Best Practices. WebResource ASP.NET 2.0 explained.
  7. wiki.jasig.org/display/PLT/​JavaScript+Best+Practices   Cached
    The myPortletName var is used as a namespace for this portlet's JavaScript, ... Alternately a recommended approach is to use a namespaced div to surround all ...
  8. www.dustindiaz.com/namespace-your-​javascript   Cached
    Perhaps a very uncommon approach to developing web applications ... Extending the namespace. ... playing nice with the "other JavaScript kids," and indeed the ...
  9. www.kajabity.com/2011/05/handling-xml-​elements-with...   Cached
    For some reason an irritating little piece of JavaScript that used to work ... the date handling is a mess and I could make ... This appears to be the best ...
  10. stackoverflow.com/questions/13742594/​recommended...   Cached
    Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
  11. stackoverflow.com/questions/2102591/​namespacing...   Cached
    Can anyone explain namespace in javascript with an example? 2. Javascript Namespacing. ... Recommended approach for namespace handling in JavaScript? 0.
  12. stackoverflow.com/questions/16120628/​namespace-with...   Cached
    Does Resharper not support Microsoft best practices for namespace naming conventions? 3. ... Recommended approach for namespace handling in JavaScript? question feed.
  13. stackoverflow.com/questions/14130903/​apply-color-coding...   Cached
    javascript visual-studio-2010 namespaces resharper color-coding. share | improve this question. ... Recommended approach for namespace handling in JavaScript? 1.
  14. stackoverflow.com/questions/527089   Cached
    YUI has a nice way of creating a namespace for your methods etc. in javascript. Does jQuery have anything ... it would be the best approach of creating uncluttered ...

Saturday, 8 June 2013

Ho Do I Use An External Image URL As The Featured Image?

Ho Do I Use An External Image URL As The Featured Image?

Would like to use Flickr and other externally hosted images as the post thumbnail featured image.

Change my e-mail to old one now

Change my e-mail to old one now

How should I come to my old e-mail site ? For god sake please change my e-mail to old site now I m tired on new one which is completed Qassim

Friday, 7 June 2013

Microsoft Word - Paragraph > Borders - Set default as "All Borders"

Microsoft Word - Paragraph > Borders - Set default as "All Borders"

I'm trying to figure out a way of setting Microsoft Word's default 'borders' setting to be 'All Borders' rather than the 'Bottom Border' that it is currently.
I've been searching through forums, but haven't found anything useful at all.
(cannot insert image)
http://i.imgur.com/KN8znDn.png

Print macro content with condition

Print macro content with condition

I would like something like the following:
\documentclass{article}
\newcommand{\acell}{}
\newcommand{\bcell}
\newccomand{\zcell}[1]{#1}
\ifx\acell{A}
 \ifx\bcell{A}
  \zcell{yes}
 \else
  \zcell{no}
 \fi
\else
\fi
\begin{document}
\begin{tabular}{ccc}
\acell{A} & \bcell{A} & \zcell{} \\
\acell{A} & \bcell{B} & \zcell{} \\ 
\end{document}
But this code does not work. It does not print "yes" and "no" where the 'zcell' macro is. Is it possible to achieve this?

Custom search by several options send on form not works

Custom search by several options send on form not works

I am using the Advanced Custom Field Plugin to add custom fields for the users profiles and display a list of users in the frontend of site with Simple User Listing Plugin.
I need to filter a list of users by a custom search through some options: city, neighborhood and course university.
See an example of how it is being used in this screenshot:
See the screenshot of user profile displayed on the frontend
I created a form that provides the dropdown fields to allow choice of city, neighborhood and choose one of courses, but filtering does not work.
Instead of search a single user, as what is provided by the plugin, I need to display multiple users based on the search terms.
My question is: How to pass an array of values ​​to search for users and return to the list?
Here's an example of the code that I added to search by the city, the neighborhood and the course, but the search does not work. I do not know much about PHP.
if ($_GET["FormOfSearch"]){ // if search form is submitted

if(isset($_GET["nome_of_city"]))
{
  $select_city = $_GET["name_of_city"];
}else{
  $select_city = "";
}

if(isset($_GET['name_of_neighborhood']))
{
  $select_neighborhood = $_GET['name_of_neighborhood'];
}else{
  $select_neighborhood = '';
}

if(isset($_GET['name_of_course'])){
  $select_course = $_GET['name_of_course'];
}else{
  $select_course = '';
}

$list_of_id  = "SELECT user_id FROM $wpdb->usermeta WHERE (meta_value = '$select_city') AND user_id IN (SELECT user_id FROM $wpdb->usermeta WHERE (meta_value= '$select_neighborhood')) AND user_id IN (SELECT user_id FROM $wpdb->usermeta WHERE (meta_value = '$select_course'))";

// Below, the array provided by plugin, I add the list of ID searched
// Generate the query based on search field
 $args2 = array(
        'include' => '*' . $list_of_id . '*',
        'number' => $number,
            'orderby' => $orderby,
        'order' => $order
           );

NFS does not store tails of files when program crashes

NFS does not store tails of files when program crashes

Program is running in parallel on multiple processors and is writing logs to a central host via NFS under RH7.3 or SUSE 11.3. If program crashes or hangs then tails of log files are lost and we lack information on the location and reason of the crash.
Shell sync has no effect. Mounting mode is async for a strong reason: in case of sync mode the times of loading initial data and unloading results increase by the factor of 10, from minutes to hours. Sometimes flush() inserted in the program may help but it is difficult to do when the location is not known for certain.
So, is it possible to force an NFS client to flush its buffers unconditionally when the process terminates, no matter how?

ALT Tab to another client window from RDP full screen session

ALT Tab to another client window from RDP full screen session

From inside a RDP full screen session, I would like to have a "ALT + tab" switching functionality which switches to next window in the RDP client computer, preferably with "Win + tab" key.
Is there any solution/ suggestion?
PS: the two step process of clicking ALT+CTRL+BREAK and then trying to use ALT + tab is known and is not a solution for me.
Any RDP utility using RDP virtual channel which achieves this purpose is also good for my purpose?

Software updater not working: showing configuring binfmt-support

"The package system is broken" Unsolvable :(?

"The package system is broken" Unsolvable :(?

I was trying to install a version of Ares in my new Ubuntu 12.04 and I got an error during the installation. After that I've been unable to install any other program as the synaptic or any other. The following message is shown:
"The following packages have unmet dependencies:
xorg: Depends: xserver-xorg-renamed but it is a virtual package Depends: libgl1-mesa-dri but it is not installed"
I've tried all upgrade/update, install -f and configure --a codes I've seen in the forums and still I cannot fix this problem. I never thought Ubuntu could be such a headache. Please I'm begging for help!

Sunday, 2 June 2013

How do I change my password on TV Tropes?

How do I change my password on TV Tropes?

TV Tropes has an extremely odd form of login, and there seems to be no way to recover a lost password or to change an existing password.

Saturday, 1 June 2013

VIM(Mercurial) +python3.2 on debian wheezy: Could not load library function PySys_SetArgv

VIM(Mercurial) +python3.2 on debian wheezy: Could not load library function PySys_SetArgv

> ./configure --enable-python3interp=dynamic --enable-gui=gtk2
> --with-python3-config-dir=/usr/lib/python3.2/

make

vim --version|grep pyth

    +cryptv          +linebreak       -python          +viminfo
    -cscope          +lispindent      +python3/dyn     +vreplace
but if i do: :python3 print('hi') I get:
E448: Could not load library function PySys_SetArgv
E263: Sorry, this command is disabled, the Python library could not be loaded.

Can anyone recommend a desktop client for Toodledo?

Can anyone recommend a desktop client for Toodledo?

I recently needed to switch my cloud based Todo service because the old one sold to someone else (that I don't like). I moved to Toodledo. It's a decent service and has the features I need, but one thing that I really miss (from a long time ago) was a desktop client for ToDos. It shouldn't be that hard to find a checklist but it is.
So what I am looking for is a Decent ToDo, desktop client, that can interact "somehow" with toodledo. Rather it's an API call or some kind of automatic Import/Export. I just would like a desktop client rather then WebApp.
Any suggestions would be appreciated.

Can't access to GRUB menu because of blinking screen

Can't access to GRUB menu because of blinking screen

I am using Samsung 350U2B (i5, 4GB RAM, 1TB) I use dual boot. So, what happened was, I was running in windows 7 when I decided to close my laptop. Closing the lid means my computer was in Sleep mode. After about an hour or so, I opened it and the "samsung recovery" program was on the screen. I thought it was an error, so I restarted it by pressing the on/off button. After I turned it on, I got the purple screen, expecting that the grub menu would show. But after few seconds (~2 secs) it went black. Then it went to purple then black again. I am not sure if it could be appropriately called "blinking screen" but whatever. Even after restarting the computer, the same thing happened. What could be the problem? but most importantly, how can I fix this? Thanks guys.
PS:I also tried booting from a live usb, but choosing any of the options: check without installing, install ubuntu, check disk) will lead to a magenta (?) blank screen. I can access the grub command line (grub>) but I don't have any idea what command to put. :(

IIS not working on public IP

IIS not working on public IP

I forwarded port 8080 to my local IP, and set in IIS that port is 8080, and when I type 192.168.1.123:8080 it is working, byt when I type like public_ip:8080 it isn't. I added inbound and outbound rules in Firewall, and it isnt working even when I turn FW off. OS is Windows 7.
Any sugestions?
Thanks.

unable to install ubuntu 13.04 on a system pre-installed with windows8

unable to install ubuntu 13.04 on a system pre-installed with windows8

I made my USB "liveUSB" using "linux live usb creator" with source as "ubuntu 13.04.iso file" and also I changed my "uefi fimware settings" as it was there in installation guide for ubuntu 13.04.But when i try booting using my usb it's again booting into windows8,I'm unable to understand why? My system is "ASUS S56C ultrabook" with intelx86 processor and also pre-installed with windows8.

Motherboard Heatsink Screws can Change Inductance [closed]

Motherboard Heatsink Screws can Change Inductance [closed]

I have bought motherboard and heat sink hyper t4. The heat sink uses metal screws and the screw heads that are isolated from the board with thin mica insulators. But the screws are covering the copper traces on the board (I think that's the name in English), thus changing the inductance on some printed wires. The board traces are specially curved like stairs to calibrate inductance and capacitance with each other, and I think these metal screws near them will change their impedance. I am not sure how much the screws of the heat sink will affect the motherboard but it is obvious that they will change the impedance of some of the printed traces.
Do you think that this is major problem and I should avoid this kind of heat sink?

Found a nice theme but nowhere to contact the developers..?? Is it save?

Found a nice theme but nowhere to contact the developers..?? Is it save?

I found an amazingly good designed free premium WP theme but there is nowhere any support or forum or whatever to get a bug fixed. Somehow that is strange huh? How can there be a proffesional theme but nowhere to contact the developers...?? Is it safe, or is it a trick to infect multiple wordpress sites??
You guys can check out the theme here: goodly.belllo.com But their domain itself (belllo.com) is showing an error? Anyhow, I can't check the theme for malware, and the live demo is working fine, but the download version is showing a bug:
The mobile menu navigation is only working on the portfolio page template, and not working on the default or blog page.....and I don't know how to fix that.
Do you guys know the theme, or the developers, and is it save to use, or is it some criminal trick?
Hope you guys can give some advice before investing time in fixing the bug.

How to rotate my text

How to rotate my text

I need to rotate by 180° the text. Just to read normally!!!
\documentclass[a4paper]{article}
\usepackage[margin=1cm]{geometry}
\usepackage[usenames, dvipsnames]{xcolor}
\usepackage{pstricks-add}
\usepackage{pst-all}
\renewcommand{\familydefault}{\sfdefault}

\begin{document}
\begin{pspicture}[showgrid]

\psarc(4,4){2}{0}{180}
\psset{linestyle=none,xunit=1cm,yunit=1.05cm}
\pstextpath[c]{%
\psarc(4,4){2}{0}{180}}{%
\color{red} 25\% OFP distance}

\end{pspicture}
\end{document}