Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I am new to Textmate 2. I have seen few people using textmate with a reduced opacity of the background color. I am trying to find a way to achieve that, but could not get to anything closer.
I tried tweaking the bundle file for the default theme, but eventually ended up messing the look of the existing theme.
What am I missing here. Do I need any other bundle to achieve it? How do I get a transparency in the background?
Ah! yes I now get it!... I guess its different in Textmate2. All you need to do is to goto the bundle editor and change the value of background in settings.
For example if the value of background is #141414 then append the hex value of the desired transparency. For example you want the opacity to be 62.8% then you can change the value to be #141414A1.
0xA1 = 161
161/256 = 62.8%
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I have generated a word document (docx) on fly, which contains 2 languages: English and Hindi.
English characters are displayed correctly but Hindi characters are displayed as box [] when you open the document. However when you select the hindi text (box) and re select the font from drop down to Aerial the characters displays.
Well the full document already has Aerial font but for some reason it doesn't display hindi characters when you open it.
I have tried to google for the it but I didn't found any instruction which may solve this issue. Please can anyone advise what is going on here.
It looks like that there is no way to do it. Alternatively, I have changed the font to "Mangal" and it works fine.
Thanks all!
Even I had same issue but it looks like MS WORD has got the solution.
in MS WORD 2007
step 1 - Go to 'Review'
Step 2 - Click on 'Set Language'
Step 3- Select check box 'Detect Language automatically'
Close word file and reopen it :)
Hope it help
try installing Kruti Dev 010 font. It worked for me.
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 9 years ago.
Improve this question
So I've got this barcode (which I will attach) and I don't know how to decode it, both zbar on my desktop and redlaser on my phone cannot read it. After a lot of googling, and reading on forums I can't find similar barcodes... Any suggestions?
https://dl.dropboxusercontent.com/u/13940239/2013-04-30%2009.36.28.jpg
Sorry I realised I needed a higher repuation to post an image, here is a dropbox link
After identifing the barcode, can anyone help with zbar decoding the barcode. I'd like do set this up so the software will decode similar barcodes...
It is a Code 39 barcode with a 3 bar widths char gap, which reads '1004876532'. Almost any standard bar code reader should be able to read this type. This online bar code decoder was able to read a cleaned up version of the image you originally posted.
*the yellow arrows represent the 3 bar width character gaps.
it seams to be Code_39 format, value: 1004876532
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 9 years ago.
Improve this question
how can i get this jquery sliding effect with AJAX..
http://livedemo00.template-help.com/wt_44012/index.html
i search in google but always appear the sliding effect passing thorugh all the divs previous from the destination one.
Anyone knows how to slideOut the actual and go directly thorugh the required one?
i know is using AJAX but i cant apply it yet.
THanks!
There is an entire industry sub-sector dedicated to SEM/SEO. There is no single technique that will work like magic.
Here is Google's starter guide on the topic:
http://static.googleusercontent.com/external_content/untrusted_dlcp/www.google.com/en/us/webmasters/docs/search-engine-optimization-starter-guide.pdf
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 9 years ago.
Improve this question
I have many types of diagrams in my paper.
I use at the moment horizontal pages to make pictures readable.
I would like to know how you can remove LaTeX margins from pages where there are pictures.
How can you have no margins for pictures in LaTeX?
Either diddle the various variables directly or use the geometry package.
LaTeX uses a lot of variable to describe the page, so setting them directly is a hassle, I really reccomend using geometry.
And remember there is a silent 1 inch margin. Moreover how close to the edge of the page you can actually print is dependent on you printer. Most won't actually let you get to the edge on any side.
The changepage package can be used to locally change the size of the area that content is put in. Documentation within the .sty file until I get around to writing a real manual.
I did this exact thing before. Here's the code:
\newenvironment{changemargin}{%
\begin{list}{}{%
\setlength{\textwidth}{\paperwidth}
\setlength{\textheight}{\paperheight}
%\setlength{\oddsidemargin}{-1in}
%\setlength{\evensidemargin}{-1in}
\setlength{\topmargin}{-1in}
\setlength{\topsep}{-1in}%
\setlength{\leftmargin}{-1.5in}%
\setlength{\rightmargin}{-1.5in}%
\setlength{\listparindent}{\parindent}%
\setlength{\itemindent}{\parindent}%
\setlength{\parsep}{\parskip}%
}%
\centering%
\item[]%
}{\end{list}}
On the page in question, I also used \clearpage, \pagestyle{empty} and enlargethispage{...}.
You can specify the width of the figure to be bigger than \textwidth.
I think includegraphics is the non-clipping version, (as opposed to includegraphics*)
I assume this would work as long as the vertical size would fit on the page.
Otherwise I'd look on CTAN for packages which allow you to change the margins on the fly.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm creating a GUI application that requires the user to provide lots of numeric data. What is the best font to display the user's data? I assume that a mono-spaced font would be better in this case, as multiple lines will have the same number of characters.
My favorite is Consolas
I'd probably go sans serif monospace.
What other fonts are you using for the rest of the application? If the answer is "Arial", "Arial Monospace" is probably the matching font for the numbers.
courier/courier new also looks better.
anything monospace will be fine.
Agreed on monospace but let the USER choose which one and the size - you have to set one by default
I'm a fan of Lucida Console or PT Mono.