Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
2answers
334 views

Why does “for I := 0to aList.Count-1 do” work with a missing space?

I was writing a small console application in Delphi (XE), and by mistake wrote for I := 0to aList.Count-1 do //Note the missing space between "0" and "to" I didn't notice this until after I had run ...
6
votes
3answers
534 views

What is the best source for typo statistics?

I am looking for a reliable source that would provide some statistics on what keys are the most frequently mistyped. For example: is "a" and "s" more commonly mistyped compared with "m" and "n"? if ...
4
votes
2answers
158 views

what does if(); means in php

It happens that, when writing some PHP code, I accidentally put a semicolon ; right after an if statement i.e.: if($a > 1); { .... } I thought that PHP should rise an error in this case, but ...
3
votes
3answers
124 views

Algoritm to detect simple typos

I'm working on a personal project involving some typing and I was wondering if there was an existing algorithm that would be able to detects typos from a list of predefined word. Example, suppose the ...
3
votes
1answer
183 views

OCR error correction algorithms

I'm working on digitizing a large collection of scanned documents, working with Tesseract 3 as my OCR engine. The quality of its output is mediocre, as it often produces both garbage characters ...
2
votes
2answers
75 views

Handling typos in emails or signing up users?

I have a web app at which visitors are signing up and getting a newsletter to the email they registered with. I am using only a single email field in the signup form, since I wish to reduce the ...
1
vote
2answers
66 views

assignment makes pointer from integer warning

Could you please help me out with this? header: #ifndef BIT_H_INCLUDE_GUARD #define BIT_H_INCLUDE_GUARD typedef unsigned char byte; typedef struct{ size_t* size; byte* map; } bit; bit* ...
1
vote
0answers
59 views

Multiple FB dialog action links

The Actions parameter for the Facebook dialog, (according to the documentation) is supposed to take an array of multiple items to display. A JSON array of action links which will appear next to ...
1
vote
1answer
60 views

How can i do conditional wrap in Typoscript?

I am rendering the content using following typo script. temp.addcol5 = CONTENT temp.addcol5 { table = tt_content select { pidInList = this orderBy = sorting where = colPos = 5 languageField = ...
1
vote
1answer
40 views

typo correction in Google search

I notice if I make a typo in Google search bar, it is very likely to correct it for me. Like, if I type incerdible, it will suggest incredible, or for stackovflow, it will be stackoverflow. I am ...
1
vote
1answer
82 views

Using python, how can I write a method to generate typos based on a string?

I could just add in something that creates typos based on Levenshtein distance of 2, or something like that, or reverse-engineer Norvig's article on spellchecking. However I wonder what the most ...
1
vote
2answers
81 views

Simulating Typos

How do I simulate natural typos in Java? I was thinking of using a Map<Character, char[]> and using a method to iterate through the characters in the string I want to simulate typos in, and then ...
1
vote
2answers
119 views

How do I report a typo/incorrect code in the Notepad v1 example 1 on the Android Developers site?

On the android developers website, there is a Notepad tutorial. http://developer.android.com/resources/tutorials/notepad/index.html I found a mistake in the first example, but after browsing through ...
1
vote
1answer
150 views

Accessing xml attributes from a child node

In my xml file I have a node which is there per layer node like so <layer name="Tile Layer 1" width="30" height="30"> <data> <tile gid="69"/> <tile gid="69"/> and ...
1
vote
5answers
126 views

what is difference between a CMS and a blogging engine?

I'm not sure if the following 3 are synonyms or if there is any difference between them or of they have any hierarchical relationship. But could you please clarify me on how are they ...
1
vote
6answers
1k views

Python Split?

I have this list ["camilla_farnestam@hotmail.com : martin00", ""], How do i split so it only be left camilla_farnestam@hotmail.com:martin00
0
votes
1answer
33 views

Issue Installing Typo for Ruby on Rails

I'm trying to install Typo Web-blog CMS 6.0.9 for Ruby on Rails 3.1 on Windows. Every time I try to "bundle install" the project (downloaded here) , I get the same error message when installing the ...
0
votes
1answer
36 views

Ignore Typo : php ternary operator returning different value just because of newlines?

Can someone enlighten me what might be wrong in the following code? $wOwner = ($owner instanceof IIdentity ? $owner->getName() : $owner); var_dump($wOwner); $wOwner = ($owner instanceof IIdenity ...
0
votes
1answer
77 views

Is there any possibility to implement IF/ELSE using TYPO3 templates syntax?

is there any possibility to implement IF/ELSE using TYPO3 templates syntax? Here is my template: <div class="simi-prof-pic"> <div class="simi-botcurv">###ITEM_IMAGE###</div> ...
0
votes
1answer
46 views

Edit system extensions in TYPO3

I have a question about edition of system extensions, ie. felogin. Those extensions are part of the default TYPO3 installation and they are stored in typo3/sysext. I know that I can edit them by ...
0
votes
6answers
59 views

While programing, how do I avoid stupid typos that result in wasted debugging time? [closed]

Is it an innate coder skill? Or something that is developed? Something that can be mitigated with certain tricks or techniques? Sometimes I just stare at the wall of text and can't figure out what's ...
0
votes
0answers
31 views

Domain name has typo, can one use the domain for blogging? [closed]

my friend registered the domain is europeanfootballeague.com here it has only two 'l' (european football league) The domain name with three 'l' > europeanfootballleague.com is parked and some other ...
0
votes
3answers
324 views

How to create content and use it in template in TYPO3 CMS [closed]

First of all I am new in typo3 and i trying to understand it now, but i am not new in programming at all. Using newest Typo3 v4.5... My website should have to layouts with and without sidebar. I have ...
0
votes
3answers
139 views

why typo errors are not compilation errors in C++

#include<iostream.h> #include<conio.h> void main() {clrscr(); int x=2; switch (x) {case 1: cout<<"i am 1"; defult: cout<<"i made a typo";} } would this cause a ...
0
votes
1answer
80 views

Typographer's quotes in PHP on Yahoo

My client is a small newspaper and provides stories with typographer's quotes instead of "straight" quotes. The stories are assembled into HTML by PHP. On my Apache server, they display fine, but on ...
0
votes
4answers
101 views

Which typo is hardest to catch or debug? [closed]

This is a general question. I wanted to know from your experience which typos are the hardest to find or debug in your code. A back story would be nice :) Thanks!
0
votes
11answers
714 views

Infinite Loop in C++

Why the following code could/will result in infinite loop? x=0; y=0; while(x<100) { minnum=100; maxnum=100; while(y<150) { if(random[x][y]<minnum) { ...
-1
votes
1answer
94 views

PHP Directory Path Using Variables

I have the code below that should copy the file index.php to the directory $path="/data/www/vhosts/themacsplash.com/httpdocs/ClipBoy/userfiles/"; ...
-2
votes
4answers
299 views

PHP/MySQL Get Variable From Address Bar & Then Delete

I have the code below which links to a page called deletepage.php which is in my FTP int he right directory. It adds the variable on the end from a database query, that bit works and it opens the page ...