Tagged Questions
For questions related to data types. Do not use this tag for questions related to the physical act of typing on a keyboard, as such questions are almost always off-topic.
85
votes
61answers
5k views
What tricks can be used to type and edit code faster?
Please read the full question before posting. It's not that long.
As Jeff Atwood noted, we are typists first, programmers second. Fast typing and editing may not be essential to be a good programmer, ...
27
votes
13answers
4k views
Is Dvorak typing appropriate for programming? [closed]
I'm always looking for ways to be more productive, and I've been reading a lot about typing using a Dvorak keyboard.
It looks like this would be much more productive for writing normal prose, but ...
20
votes
11answers
1k views
Clean and type-safe state machine implementation in a statically typed language?
I implemented a simple state machine in Python:
import time
def a():
print "a()"
return b
def b():
print "b()"
return c
def c():
print "c()"
return a
if __name__ == ...
18
votes
26answers
3k views
How to type faster
I've typed around 75wpm for the last few years but I've always wondered how people type +100wpm.
I've searched but I primarily find typing tutors that teach you to type.. not teach you to type ...
13
votes
3answers
3k views
Automatically closing braces in Emacs?
I've seen a plugin for Vim called AutoClose (discovered from this post) which automatically adds the closing brace when typing '(', '{' etc.
For example; when I type the following ( | is the cursor):
...
10
votes
7answers
2k views
What is the preferred way to type-check variables in Python?
I have a Python function that takes a numeric argument that must be an integer in order for it behave correctly. What is the preferred way of verifying this in Python?
My first reaction is to do ...
9
votes
2answers
286 views
Vim users, where do you rest your right hand?
Longtime vim users, do you keep your fingers on"jkl;" or "hjkl" in normal mode?
Standard touch typing teaches us the home position for the right hand has the index finger on the "j" key, so your ...
9
votes
8answers
583 views
Is there a compiled* programming language with dynamic, maybe even weak typing?
I wondered if there is a programming language which compiles to machine code/binary (not bytecode then executed by a VM, that's something completely different when considering typing) that features ...
9
votes
4answers
3k views
Dynamic typed ViewPage
Is this possible? Here's what I'm trying:
public ActionResult Index()
{
dynamic p = new { Name = "Test", Phone = "111-2222" };
return View(p);
}
And then my view ...
9
votes
3answers
1k views
C# “is” operator - is that reflection?
A colleague asked me an interesting question today - is the C# keyword/operator "is" considered reflection?
object tmp = "a string";
if(tmp is String)
{
}
How is this operator implemented behind ...
8
votes
1answer
178 views
Why is GHCi typing this statement oddly?
In answering a question on stackoverflow, I noticed that GHCi (interactive) is assigning a too-restrictive type in a let statement. Namely, given the code,
import Control.Arrow
f = maximum ...
8
votes
5answers
870 views
Eye-tracking for code editing
Is there a decent eye tracking package to replace the mouse for code editing?
I want to free up the mouse, but keep using my keyboard for editing code.
Having done some research on it, I concluded ...
8
votes
10answers
549 views
How to minimize use of arrow keys when typing code?
When typing code, I would normally close brackets, go back inside, go outside, type semicolon, etc:
I might start with (| is the caret):
System.out.println()|
Then go left:
System.out.println(|)
...
7
votes
1answer
230 views
What does super strong typing bring to the table?
I'd like to understand the advantages of super-strong typing, a la SML or Scala, over conventionally strongly typed languages such as Java or c++. Could someone give a brief overview of the ...
7
votes
11answers
1k views
Why Java, C# and C++ don't have ranges?
Ada, Pascal and many other languages support ranges, a way to subtype integers.
A range is a signed integer value which ranges from a value (first) to another (last).
It's easy to implement a class ...
6
votes
5answers
391 views
Preferred keyboard layout for programming
I started out with programming about two months ago I think now, and I'm fooling around in either C# or Clojure (I have serious decision-problems). Anyways; I'm from Norway, and we use a different ...
6
votes
5answers
342 views
C++ and its type system: How to deal with data with multiple types?
"Introduction"
I'm relatively new to C++. I went through all the basic stuff and managed to build 2-3 simple interpreters for my programming languages.
The first thing that gave and still gives me a ...
5
votes
0answers
321 views
Selenium IDE - Typing values stored in an array into a textbox?
There's a webpage I'm trying to test that has multiple textboxes. I've gotten to the point where I can retrieve all the values in every textbox and store them into an array, but I'm stuck on how to ...
5
votes
7answers
163 views
what's the underlying reason this == comparison fails? (surprising result for me)
Context: I am prototyping in prep for (maybe) converting my WinForms app to WPF.
I make very simple tree view event handler for which the code is:
var treeViewItem = (TreeViewItem)e.NewValue;
var ...
5
votes
2answers
317 views
Dynamic typing, Objective-C, how does it work?
Greetings everyone! Well, I am new to stackoverflow as an active user, but I've been reading all the various answers and questions that get posted here. What interests me today is how does dynamic ...
5
votes
1answer
201 views
F#, Nominative or Structural?
Does f# is a Nominal typed or a structurally-typed language?
(I know that OCaml is structurally type, though f# doesn't seems to be so).
5
votes
6answers
1k views
Is ruby strongly or weakly typed?
Is ruby strongly or weakly typed ?
Presumably the same is true for Javascript.
4
votes
2answers
92 views
Generically typed classes in collections in Scala
I'm having a problem with a generic class I'm creating in Scala. I have the following class:
class Channel[T, U](val endPoint : EventSource[U], val filter : Occurrence[T] => Boolean,
val map : ...
4
votes
6answers
672 views
Why Is Dynamic Typing So Often Associated with Interpreted Languages?
Simple question folks: I do a lot of programming (professionally and personally) in compiled languages like C++/Java and in interpreted languages like Python/Javascript. I personally find that my code ...
4
votes
16answers
528 views
What tools do you recommend for becoming a better typist?
This was originally asked within Jeff Atwoods blog, Coding Horror, and we thought it would be interesting to compare the results of SO answers to his blog answers. So here is an excerpt of his blog ...
4
votes
20answers
2k views
Do you use the home row? [closed]
When I was taught keyboarding in school, much emphasis was made on keeping your fingers centered on the 'home row', with your left hand on ASDF and your right hand on JKL; However, this placement was ...
3
votes
1answer
46 views
Can we peek out partially inferred typing info. from Ocaml toplevel/compiler for a program that does not compile?
I would like to know, in Ocaml, whether a partial typing info. can be drawn by some existed functionality of toplevel/compiler, for a program that does not compile? Let me explain.
In Ocaml, it's ...
3
votes
1answer
176 views
Typing Scala collections
I wanted to learn the new Scala collections framework by making a very general prefix tree. Not only must the keys and the values be parameters, but the type of the maps used in each node must be ...
3
votes
3answers
439 views
Knowing if a Scala object is an instance of Case Class
I was wondering if there as a way to know if an object is an instance of a case class. I was trying to find some structural type matching unapply, I notice they inherit Product. My real need for a ...
3
votes
2answers
522 views
Google Closure Compiler 100% typed
How can I get my application to be 100% typed in regard to google closure compiler?
I already tagged everything with jsdoc comments. Is it even possible to get 100? I'm at 64,6%
3
votes
4answers
549 views
C# Detect Key Press, avoid non-typing keys
Is there any way to proceed into a method if the key that is being pressed does not result in any typing. i.e. the shift key, control key etc without having to specify all of them. Ideally, to detect ...
3
votes
5answers
86 views
How to denote different numeral systems while typing?
I know that this isn't exactly a programming question, but it's related to the subject for me. How do you denote different numeral systems in just text? (By text I mean able to type at a proper speed ...
3
votes
1answer
86 views
Python: Can a class forbid clients setting new attributes?
I just spent too long on a bug like the following:
>>> class Odp():
def __init__(self):
self.foo = "bar"
>>> o = Odp()
>>> o.raw_foo = 3 # oops - meant o.foo
...
3
votes
10answers
757 views
What are some typing patterns using a standard QWERTY keyboard that work well for you as a programmer? [closed]
After hunting and pecking for about 35 years, I have decided to learn to type. I am learning QWERTY and have learned about 2/3 of the letters so far. While learning, I have noticed how asymmeterical ...
3
votes
4answers
294 views
Which is a strongly typed language: Python or Prolog?
I am new to Python and prolog. From my understanding, Python is a strongly typed language. Is Prolog a strongly typed language also?
3
votes
6answers
275 views
How Can a Programming Language be both Statically-Typed and Dynamically-Typed?
Statically-typed languages and dynamically-typed languages in principle seem like opposite concepts. However, how can a language like Objective-C for example be both of these things at once? It seems ...
3
votes
6answers
124 views
How can I remain productive with one hand completely immobilized?
I broke my left collarbone and my left hand completely immobilized so I can type only with my right hand (thank God I'm right-handed). As you can imagine my typing speed is greatly reduced.
Can ...
3
votes
3answers
118 views
type vs. interface: why typing then?
By broadening my horizons with javascript together with my python experience I put some thought.
What's the purpose of type if the vision of an entity to an external client is via its interface ?
In ...
3
votes
7answers
401 views
Changing a return type depending on the calling method
Basically what I want, istwo public methods with slightly different return values to call the same method to do whatever work is needed. They both return the return value of the private method, ...
3
votes
2answers
486 views
Increasing WPM - High End
We've had this question already, but I want to narrow it down to already high-speed typists.
The original poster had hit a barrier of 75 WPM and wanted to increase his speed. I'm at a barrier where ...
3
votes
7answers
2k views
Best Keyboard for High WPM [closed]
Typing fast is important to programmers. I've seen great programmers who instantly have an idea formed in their head of what they want a function to look like (or, for example, a class skeleton in ...
2
votes
3answers
93 views
I need to make an typing tutor, where to start? [closed]
I'm making a typing tutor in java (netbeans).
Now i have made an keyboard in gui .
A simple example of how I want it: the B and A are buttons and in the text field you can type.
Now there are some ...
2
votes
7answers
67 views
Javascript typing (Int/String) question
I have encountered something weird (probably not, it's more likely that I don't really get it) in JavaScript and I'd be curious to find out why things behave like they do.
When I do:
var index = ...
2
votes
1answer
154 views
Typing while animation UITextView
I'm trying to have a variable-height UITextView which changes size to accomodate its contents, but when the frame changes in the size-change animation, one or two keystrokes aren't captured in the ...
2
votes
3answers
173 views
Average Inter-Keypress time when typing
I have tried to google for answers to this, but perhaps there isn't widely available research or perhaps I'm not using the right terms.
Basically, I would like to have some idea as to the average ...
2
votes
5answers
171 views
Is weak typing not necessary anymore?
I come from a statically/strongly typed language background (java), and I recently started to learn python and I think I see the value of dynamic/strongly typed language.
Now I'm wondering whether ...
2
votes
1answer
120 views
Interpreter typing in C
I'm developing an interpreter and I have some questions to it.
I recently saw a small C interpreter that used a very simple struct like the below for all its objects/values in the language:
struct ...
2
votes
2answers
499 views
How do you simulate typing using jQuery?
Like how the click() can be used to trigger a click event on an element, is there any way to simulate the typing of a string?
1
vote
4answers
58 views
How to display “User is typing…” to the other user?
I'm developing a messaging system and I would like to display when a user is typing or not. How I figured I would do it is just have a table in my database called "typing" with the columns for who is ...
1
vote
2answers
53 views
Calculate typing speed of email addresses
I need to calculate the typing speed of the user, the typing speed is calculated by inputting his email address.
The user will compete with other users who typed their email address. How I am doing ...