Skip to content

Commit

Permalink
Update bio
Browse files Browse the repository at this point in the history
  • Loading branch information
dlubarov committed Jan 9, 2019
1 parent b94e819 commit 7eed652
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions blog/src/main/java/com/lubarov/daniel/blog/HomeHandler.java
Expand Up @@ -23,11 +23,6 @@
final class HomeHandler implements PartialHandler {
public static final HomeHandler singleton = new HomeHandler();

private static final String INTRO = ""
+ "I'm an engineer at Google, previously at Square. "
+ "Some of my interests are graphics, languages/compilers, cryptocurrencies and distributed systems in general. "
+ "Feel free to email me at <a href=\"daniel@lubarov.com\">daniel@lubarov.com</a>.";

private HomeHandler() {}

@Override
Expand All @@ -51,10 +46,12 @@ public Relation compare(Post a, Post b) {
listBuilder.addChild(new Element(Tag.LI, summaryLink));
}

Element mirLink = new AnchorBuilder().setHref("http://mirprotocol.org/").addEscapedText("Mir").build();
Element intro = new Element.Builder(Tag.DIV).setEscapedAttribtue(Attribute.ID, "intro")
.addChild(new ParagraphBuilder()
.addEscapedText("I'm an engineer at Google, previously at Square. "
+ "Some of my interests are graphics, languages/compilers, cryptocurrencies and distributed systems in general.")
.addEscapedText("I'm working on ").addChild(mirLink).addEscapedText(", an early stage cryptocurrency project.")
.addEscapedText(" Before that, I worked at Google and Square.")
.addEscapedText(" When I'm not focusing on crypto research, I love dabbling in graphics, languages and compilers.")
.build())
.addChild(new Element.Builder(Tag.UL)
.addChild(new Element(Tag.LI, new AnchorBuilder().setHref("mailto:daniel@lubarov.com").addEscapedText("daniel@lubarov.com").build()))
Expand Down

0 comments on commit 7eed652

Please sign in to comment.