Ayman

803
Reputation
94 views

Registered User

Name Ayman
Member for 8 months
Seen Nov 24 at 8:12
Website
Location Bahrain
Age 37
Creator of JSyntaxPane. Working as Consultant and coding for fun.
Nov
3
comment Java Compilation date, like C __DATE__
You need to call the <tstamp/> task before using ${TODAY}. Otherwise, it works like a charm.
Nov
3
comment Java Compilation date, like C __DATE__
Version control. Need to know from the jar file when it was built.
Nov
3
asked Java Compilation date, like C __DATE__
Oct
15
comment C++ fixed length string class?
fancy stuff include input and output from streams (including padding and reading only the required chars), string subscripts, iterators, and such. Seems i'll need to write my own.
Oct
15
comment C++ fixed length string class?
Problem is, the created string does not do any trimming / padding, or ensuring its 10 char limit.
Oct
15
comment C++ fixed length string class?
How can that be put in code? I'm relatively new to C++ syntax.
Oct
15
revised C++ fixed length string class?
elaboration on question
Oct
15
asked C++ fixed length string class?
Oct
14
asked Stackoverflow search results disappearing
Oct
13
answered C sizeof char* array
Oct
13
asked C sizeof char* array
Oct
12
asked VIM count / determine number of errors in quickfix
Oct
11
answered vim highlighting to right edge of screen
Oct
6
asked Vim errorformat
Oct
6
comment vim left and right column highlight
This is great, but only works if the line contains characters beyond column 72. Is it possible to have it highlight even when the line contains less characters?
Oct
6
asked vim left and right column highlight
Oct
6
revised Highlighting #defined value in VIM
added sample
Oct
6
accepted Highlighting #defined value in VIM
Oct
4
answered Highlighting #defined value in VIM
Sep
30
comment Design an algorithm to find all pairs of integers within an array which sum to a specified value ?
I agree with @Beta. It gets too complicated if you have negative numbers. Which was not mentioned in the question. That's why I resorted to a full sort and binary search.
Sep
30
comment Design an algorithm to find all pairs of integers within an array which sum to a specified value ?
Isn't binary search O(log n)?
Sep
29
accepted Design an algorithm to find all pairs of integers within an array which sum to a specified value ?
Sep
29
answered How to define [] for class in Python?
Sep
29
answered Design an algorithm to find all pairs of integers within an array which sum to a specified value ?
Sep
29
comment Telnet automation / scripting
Just a note that on my server, I needed to add a \r instead of the \n. Took me a while to debug that.
Sep
29
comment Telnet automation / scripting
PExpect does not run on Windows clients. It gives an error that it needs a UNIX like system.
Sep
29
asked Telnet automation / scripting
Sep
27
answered Get offset of current buffer in vim (in particular, via python scripting)
Sep
24
awarded  Autobiographer
Sep
22
accepted Keeping track of state in JFlex
Sep
19
accepted vim edit multiple locations simultaneously
Sep
19
accepted Alternative document structure in JTextPane?
Sep
19
answered Vim file navigation
Sep
18
accepted basic vim questions on nerdtree toggling and keyboard mapping
Sep
17
comment basic vim questions on nerdtree toggling and keyboard mapping
You need to do the nnoremap because <c-d> is scroll down by default.
Sep
17
answered basic vim questions on nerdtree toggling and keyboard mapping
Sep
16
answered Preventing vim to auto-expand folds
Sep
16
accepted Reading efficiently PATHs in Vim
Sep
16
answered Reading efficiently PATHs in Vim
Sep
15
accepted bold fixed fonts in Java Swing
Sep
12
revised python database / sql programming - where to start
more info about the use case
Sep
11
answered python database / sql programming - where to start
Sep
10
comment python database / sql programming - where to start
not web application. Barely a desktop app. For this particular case, I need to store some metadata about many files and some of their contents. CRUD and UI is not really needed except for debugging.
Sep
10
comment python database / sql programming - where to start
@Stephen answer is pretty close to what I want. I'm creating a web app, so I don't think I need Django.
Sep
10
revised python database / sql programming - where to start
added 191 characters in body
Sep
10
comment python database / sql programming - where to start
Django, even though it is great, is too "heavy" for my needs. Something much smaller footprint is needed.
Sep
10
asked python database / sql programming - where to start
Sep
10
comment Vim+ctags tips and tricks
I think this is more intuitive and cleaner than the default.
Sep
8
comment vim copy command to clipboard / buffer
I didn't know about the ex-command history Window. SO it did not make sense at first. Now it it does.
Sep
7
comment vim copy command to clipboard / buffer
Aaah. Didn't know about the ex-history window. Exactly what I need.