|
|
Tuesday, January 20, 2004 |
Do you do your Java development on Unix or on Windows and have
Cygwin? Do you explicitly import every class in your source
files? If you answered yes to both questions, then you can use
this handy command to find all the classes imported by your source
files:
find src/. -name "*.java" -type f -exec grep -H -n import {} ; |sed "s/^.*import \(.*\?\);/\1/g" | sort -u
Be sure to change directory (first parameter to the find command).
4:12:17 PM
|
|
On the Health of "Offshoring". Google is opening a Bangalore engineering office... The office will operate in an identical manner to our other engineering groups, with the same scope of work, hiring standards and unique Google culture.[Making it stick.]
1:26:52 PM
|
|
© Copyright 2004 Tom Pierce.
|
|
|
|
January 2004 |
Sun |
Mon |
Tue |
Wed |
Thu |
Fri |
Sat |
|
|
|
|
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
Dec Feb |
|
Search
|
Emacs Sources
tsql-indent.el
This is an indentation function for SQL mode. It was written with Transact SQL in mind.
user-add-sql-folding-marks
This is a simple function that adds folding-mode marks to SQL sources. It is quick and dirty, but is fairly useful for me.
remove-line-boundary-in-region
This function removes all the line boundaries in a region. This, in effect, collapses all the lines in the region onto one line.
convert-camel-to-underscore
This function converts all the text that is camel cased in a particular region to underscore separated text.
My Subscriptions
|
|
|