You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/ui/about.dart
+11-16Lines changed: 11 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -98,13 +98,23 @@ class AboutState extends State<About> with WidgetsBindingObserver {
98
98
style:Theme.of(context).textTheme.headline4,
99
99
),
100
100
Padding(padding:constEdgeInsets.all(5)),
101
+
Text("C & C++:"),
102
+
BulletListText(
103
+
"Currently working at Akuna Capital on the Market Data team writing highly performant C++ code to work with rapid data ingest while minimizing latency"),
104
+
BulletListText(
105
+
"Worked with C & C++ in personal projects such as cClip (to bridge between Rust and Dart safely with support for complex data types)"),
106
+
BulletListText(
107
+
"Contributed to Cloudflare's open-source 'workerd' runtime during my internship, as well as wrote code for the internal multi-tenant runtime."),
108
+
Padding(padding:constEdgeInsets.all(5)),
101
109
Text("Rust:"),
102
110
BulletListText(
103
-
"About 3 years, started writing code with Rust in 2020"),
111
+
"About 4 years, started writing code with Rust in 2020"),
104
112
BulletListText(
105
113
"Created an open source package for HOTP & TOTP generation and validation"),
106
114
BulletListText(
107
115
"Re-wrote cClip's Direct Transfer implementation in Rust, improving performance nearly 10x and dropping errors 20% (threading + safety)"),
116
+
BulletListText(
117
+
"Currenly working on smb_reader, a library to parse and work with SMB messages directly from a byte stream efficiently, concurrently, and safely"),
108
118
Padding(padding:constEdgeInsets.all(5)),
109
119
Text("Flutter & Dart:"),
110
120
BulletListText(
@@ -114,21 +124,6 @@ class AboutState extends State<About> with WidgetsBindingObserver {
114
124
BulletListText(
115
125
"Experienced in complex skills such as isolate computation for encryption & efficient state management"),
116
126
Padding(padding:constEdgeInsets.all(5)),
117
-
Text("Java/Kotlin & Android:"),
118
-
BulletListText(
119
-
"Over 6 years, where I started writing code in Java consistently in 7th grade"),
120
-
BulletListText("Primarily Java and Android"),
121
-
BulletListText(
122
-
"Worked with various Android apps written with Java, but have no trouble interpreting and utilizing Kotlin"),
123
-
Padding(padding:constEdgeInsets.all(5)),
124
-
Text("Swift/Objective-C & iOS/macOS:"),
125
-
BulletListText(
126
-
"Over 4 years, where I started taking a look at Objective-C code in various Open Source macOS apps"),
127
-
BulletListText(
128
-
"Primarily in swift for macOS development through AppKit"),
129
-
BulletListText(
130
-
"Wrote iOS specific features in Swift within Flutter apps"),
0 commit comments