Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
How we can use our browser as a notepad, and avoid using other tools?
It will give the flexibility to immediately take note of urls or other stuff at the same place!
Instead of using browser extensions like evernote or other tools like notepad/gedit etc, is there some way to write down notes or copy/paste contents in browser window?
This is quite interesting piece of info!
Just type the following in your browser address bar:
data:text/html, <html contenteditable>
And here you go, you are now ready to write in the window below!
Also you can mark it favourite and save as 'notepad utility' in your bookmarks!
For more info check here!
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
This post was edited and submitted for review 6 days ago.
Improve this question
I am looking for ways to display text on top of the background as an overlay for redhat linux. Catch is, I can't install any new softwares on the system. So probably best to use scripting. I tried playing around with gsettings and /usr/share/backgrounds/default.xml, but did not find anything tangible. Is there anyone out there who can help? Thanks
So far I have tried changing the background color by
Using editor modified override file in: /usr/share/glib-2.0/schemas/org.gnome.desktop.background.gschema.override
Added:
[org.gnome.desktop.background]
primary-color="#000000"
Run as a superuser: glib-compile-schemas /usr/share/glib-2.0/schemas/
Logout and login again.
By doing the above I have managed to change the background color. All I need now is to add a text such as 'My Name' to appear as an overlay on a background. I also want this text to be customized as the same machine will be used by different people and the text should be customized according to the account it has been logged into it as.
to add to the problem, I need the name to appear on top AND bottom of the screen.
I do understand I can just create different wallpapers for different account but then where is the challenge? :) .. Is it too naive for me to think this is possible?
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
files from the google.docs generally open in view mode. But after some additions in link, we can change the link to direct download.
I have given a docs link below . How can I turn it into a download link?
https://docs.google.com/viewer?a=v&pid=sites&srcid=ZGVmYXVsdGRvbWFpbnxoaWprbG1uMjN8Z3g6MjY2NWMxNjM1ZWYxNWNmYQ
You can try this.
Click on print Icon on the top-left, it will pop up printing controls on the left, then if you press ctrl+s , you can save it as PDF format. And also, this is not a good question for this site:)
EDIT
From here
How to Link to Files at Google Docs for Direct Download
...Google doesn't tell you this, as far as I know - so, if you want to link to a file at Google Docs for direct download you can use the following address scheme:
https://docs.google.com/uc?export=download&id=YourIndividualID
You can copy your individual file id from within the "Share..."-dialogue. Here you also need to put the share settings to "public" or to "anyone with the link"
a HTML example for this link to a pdf-file:
<a href="https://docs.google.com/uc?export=download&id=0B2wAunwURQNsNWU1NjcyOGMtYWI0Ni00MzQ5LTg3ZTAtOTc5ZjUwMmZiZDMy">
</a>
Online generating tool here.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I would like to add a date picker. When a user clicks on the textbox a Calender should open. How can I do that?
I use "calendarPane" from Rotunda.
http://www.rotundasoftware.com/livecode/calendarPane.php
Craig Newman
If you are on mobile you can use mobilePickDate to invoke the native date picker for iOS or Android. On the desktop, there several 3rd party calendar options, including the well regarded DatePicker from FlexibleLearning.com
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm new to Sharepoint 2010; when adding a web part for users to download files, the 'Type' images are always broken, and the URLs have no image file. For example:
Then when looking at the path of the broken image, it comes up as:
https://portal.mysite.com/_layouts/images/
Is there some sort of association I have to make?
If you are using Content Editor web part then you have to Add the icon (DocIcon) of the file-type to a custom xsl-template.
Please see below given link
http://freedotnet4u.blogspot.in/2013/01/add-icon-docicon-of-file-type-to-custom.html
Thanks
After doing some digging, I noticed in my DOCICON file had some invalid XML in it; specifically some of the pdf mapping.
After removing the invalid characters, and restarting IIS, the document icons have now appeared.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Having read lots of great advice from here and across the www, I'm happily trying to set up my first Vim environment under Linux (for C++). I've added the C.Vim plugin and also successfully added Clang_complete - which both seem to work. However, I'm using the arrow keys and to choose between 'Clang-completions' - this seems to go against the Vim grain (of never touching the arrow keys) - am I doing something wrong?
Just trying to get off on the right track - Thanks
If I remember correctly, clang-complete's suggestions are pushed in the default vim completion list, which you can open using ^p or ^n and navigate through the same way.