Which is the best open source text editor and why? I have used the YUI editor before, but I am looking for something more extensible and manageable and that will ultimately prove more stable.
Typical things to worry about when dealing with text are the BOM/signature, encoding, and the end of line (EOL) char/chars.
I know that Windows often favours \r\n (CR+LF) and Mac/Linux favours \n (LF), but how about mobile devices such as the iPhone and Android? Do typical apps on those platforms favour one or the other?
Also, which text…
I'm trying to find a text editor that I can use for doing Ruby on Rails development. I have been using TextMate on my Mac and would love to find something that even comes close to that experience. My Ubuntu laptop is a little old, and doesn't have a lot of memory, so I need something lightweight. I don't need/want a bloated IDE because the…
I have two computers running 10.4 . The first machine is a wired desktop with sshd. The second is a wifi connected laptop with the ssh client. When I use my laptop to bring up a remote gnome session to my desktop all the text gets reversed.
Steps:
1) login as a user on the laptop to activate the wifi with a stored key.
2) goto a…
i have made a text editor in C. when i am changing the extension of that file from .c to .sh and compiling the file in the terminal,some error is shown,like for the global variables an external error is shown,and for the functions i have declared errors are shown there also.please help me to solve this. I am sending my code..
include
…
This is the error. It comes up when I paste and enter the installation code (which I get from the Package Control website) and each time I open up Sublime Text.
Package Control
Your system's locale is set to a value that can not handle non-ASCII
characters. Package Control can not properly work unless this is
fixed.
…
I've been using FULL-TEXT for awhile but I cannot seem to get the most relevant results sometimes.
If I have an field with something like "An Overview of Pain Medicine 5/12/2006" and a user types "An Overview 5/12/2006"
So we create a search like:
'"An" AND "Overview" AND "5/12/2006"' - 0 results (bad)
'"Overview" AND "5/12/2006"'…
I have a series of text items- raw HTML from a MYSQL database. I want to find the most common phrases in these entries (not the single most common phrase, and ideally, not enforcing word-for-word matching).
My example is any review on Yelp.com, that shows 3 snippets from hundreds of reviews of a given restaurant, in the format:
…
I am looking to extract specific items out of a large pool of unstructured documents. These documents could be 1-5 pages of text formatted in various ways by the user, but in most cases would contain at least:
Name
Address (physical)
Email Address
Phone number
website URL
I'm looking for a semantic parser that can attempt to…
In this article we will take a look at how SQL Server performs with one million records in a table. We will create a quick data pumper program to fill up a table with a million dynamically created rows of data. From there we will take a look at querying the data without any special optimizations. Then we will create a…
If you’ve created a signature with an image, links, text formatting, or special characters, the signature will not look the same in plain text formatted emails as it does in HTML format. As the name suggests, Plain Text does not support any type of formatting. For example, if you include an image in your signature, as…
<b>swpat.org:</b> "201001_acta.pdf is a leaked copy of the full "January 18th 2010 consolidated text" of the Anti-Counterfeiting Trade Agreement (ACTA). Below is a full transcript."
Keywords are indisputably, the single most important element of an anchor text. Keywords or keyphrases placed properly on the webpage can make all the difference when it comes to search engine positioning of any website. It has been seen that mere tweaking of keywords or keyphrases has made a remarkable difference in…
This would save me the redundant ON MyCatalog phrase when I create full-text indices.
For example,
CREATE FULLTEXT INDEX ON MyTable
(
MyField1,
MyField2,
MyField3
)
KEY INDEX PK_MyKey ON MyCatalog
WITH CHANGE_TRACKING AUTO
With MyCatalog set as default catalog, I wouldn't have to specify ON MyCatalog…
I tried to create a full-text index and got this error:
Msg 9967, Level 16, State 1, Line 1
A default full-text catalog does not exist in database 'foo' or user does not have permission to perform this action.
FYI--I connected to the target sql server with Windows Authentication.
What do I need to do in Sql…
I have SQL Server 2008 Express installed. Several months ago I created a full text catalog and index. I would like to index some additional table columns now, but I can't remember the name of the existing catalog. How do I find out the name of an existing full text catalog.
Hopefully this doesn't involve…
I need to parse text files where relevant information is often spread across multiple lines in a nonlinear way. An example:
1234
1 IN THE SUPERIOR COURT OF THE STATE OF SOME STATE
2 IN AND FOR THE COUNTY OF SOME COUNTY
3 UNLIMITED…
[Edit] I later realized my issue only occurs when I am using NX to remote access my machine. Therefore I edited the title and description.
I have also found the temp solution, which is to "disable render extension" in the custom display settings. But doing so makes the NX experience very slow…
While in full screen the horizontal shadow of the title bar (I am not too sure about its name) appears on top of everything. How can I get rid of it? It's quite distracting while coding in Guake mode and annoying while watching movies.
In the picture I've setup Guake with some transparency…
When a box-shadow is applied to an element the corners are less "thick" than the middle because they don't have shadow on both sides. This creates an odd effect on full width elements.
http://jsfiddle.net/kevincox/6FhYe/18/
If you look at that example you will see that the edges are…
I had been using Sublime Text 2 with no issues.
I installed IDLE and now I'm unable to start Sublime Text. I tried uninstalling IDLE, but Sublime Text is still not starting. Here's the error:
Unable to load libgdk-x11-2.0.so Unable to load gdk_cairo_create from
libgdk-x11-2.0.so…
I'm re-writing an old virtual world/browser based game. It is text and HTML form based with some static graphics. The client is HTML and JS.
I want to introduce some interactive graphical elements to certain parts of the game, for example a 'customise character' page, with hooks to…
I've been following both the FreeType2 tutorial and the WikiBooks tuorial, trying to combine things from them both in order to load and render fonts using the FreeType library. I used the font loading code from the FreeType2 tutorial and tried to implement the rendering code from…
I want to find a text editor capable of running and mainly storing regular expressions for later re-use. It should also be able to run them across multiple files.
I know I can get all that with grep, but there is not much for re-use on it. I was able to get some regular…
One of my most popular posts with over 10, 000 hits is how to enable full text when using LINQ to SQL http://sqlblogcasts.com/blogs/simons/archive/2008/12/18/LINQ-to-SQL---Enabling-Fulltext-searching.aspx , core to this is the use of a table valued function. I’m…