Skip to content

Commit 9c9f44d

Browse files
committed
cleaning up authors bios
1 parent 7b6f1da commit 9c9f44d

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

app/data/authors.yaml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
twitter: venkat_s
66
website: https://agiledeveloper.com/
77
description: |
8-
Venkat Placeholder.
8+
Dr. Venkat Subramaniam is an award-winning author, founder of Agile Developer, Inc., and an instructional professor at the University of Houston. He has mentored tens of thousands of software developers in the US, Canada, Europe, and Asia, and is a regularly-invited speaker at several international conferences. Venkat helps his clients effectively apply and succeed with agile practices on their software projects.<br /><br />
9+
10+
Venkat is a (co)author of multiple books, including the 2007 Jolt Productivity award winning book Practices of an Agile Developer. His latest book is Programming Kotlin: Create Elegant, Expressive, and Performant JVM and Android Applications. Venkat is a well-recognized person in the software communities. He was once a recipient of the MicroSoft MVP award. He has received JavaOne RockStar award three years in a row and was inducted into the Java Champions program in 2013 for his efforts in motivating and inspiring software developers around the world.
911
1012
- name: Jeanne Boyarsky
1113
email: nyjeanne@gmail.com
@@ -14,16 +16,26 @@
1416
twitter: jeanneboyarsky
1517
website: https://jeanneboyarsky.com
1618
description: |
17-
Jeanne is a Java developer and Java champion in NYC. She is one of the leaders of javasig.com and mentors a high school robotics team in her free time.
19+
Jeanne is a Java developer and Java champion in NYC. She works as a developer for a bank in New York City and serves as a
20+
moderator on CodeRanch which is the best java discussion forum on the web. She has moderated on topics including
21+
JDBC, Testing, IDEs, Process and Performance. She is one of the leaders of javasig.com and mentors a high school
22+
robotics team in her free time.
1823
24+
1925
- name: Cay Horstmann
2026
email: cay@horstmann.com
2127
photo_url: https://horstmann.com/cay-pfh.jpg
2228
github: cayhorstmann
2329
twitter: cayhorstmann
2430
website: https://horstmann.com
2531
description: |
26-
Cay Placeholder.
32+
I grew up in Northern Germany and attended the Christian-Albrechts-Universität in Kiel, a harbor town at the Baltic sea.
33+
I received a M.S. in computer science from Syracuse University, and a Ph.D. in mathematics from the University of
34+
Michigan in Ann Arbor. I taught computer science at San Jose State University for almost thirty years and held
35+
visiting appointments at universities in Germany, Switzerland, Vietnam, and Macau. I was a “serial entrepreneur”
36+
before that was a thing, including a stint as VP and CTO of a dot com startup that went from three people in a
37+
tiny office to a public company. In my copious spare time I write books and develop online courses for beginning
38+
and professional programmers.
2739
2840
- name: Dr Heinz M. Kabutz
2941
email: heinz@javaspecialists.eu
@@ -32,10 +44,10 @@
3244
twitter: kabutz
3345
website: https://www.javaspecialists.eu
3446
description: |
35-
Heinz is the author of [The Java Specialists' Newsletter](https://www.javaspecialists.eu),
47+
Heinz is the author of <a href="https://www.javaspecialists.eu">The Java Specialists' Newsletter</a>,
3648
a monthly newsletter that has been in publication since the end of 2000. In it, he explores
3749
many useful tips and tricks that have enthralled tens of thousands of enthusiastic fans for
38-
over two decades. He was one of the first [Java Champions](https://www.javachampions.org).
50+
over two decades. He was one of the first <a href="https://www.javachampions.org">Java Champions</a>.
3951
4052
- name: Paul Anderson
4153
photo_url: https://asgteach.com/wp-content/uploads/2016/02/PaulAnderson-300x291.png

app/templates/pages/authors/author.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h1>{{ author.name }}</h1>
1919
<img src="{{ author.photo_url }}" alt="{{ author.name }}" id="author_image" />
2020
</div>
2121

22-
<p>{{ author.description }}</p>
22+
<p>{{ author.description | safe }}</p>
2323

2424
<p>
2525
Website: <a href="{{ author.website }}">{{ author.website }}</a><br />

0 commit comments

Comments
 (0)