Skip to content

Commit

Permalink
chore: footer and more history
Browse files Browse the repository at this point in the history
  • Loading branch information
wodeni committed Jan 3, 2024
1 parent 6523f08 commit 49aa39d
Show file tree
Hide file tree
Showing 2 changed files with 127 additions and 16 deletions.
25 changes: 21 additions & 4 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,7 @@ const NewsFeed = () => {
{isScrolled && (
<div className="invisible md:visible absolute top-0 left-0 right-0 h-10 bg-gradient-to-b from-white dark:from-zinc-800 to-transparent"></div>
)}
<div
ref={scrollableDivRef}
className="md:overflow-auto max-h-[50vh] scrollbar-hide"
>
<div ref={scrollableDivRef} className="overflow-auto max-h-[50vh]">
{news
// .filter(
// ({ time }) => time.getUTCFullYear() >= today.getUTCFullYear() - 1
Expand Down Expand Up @@ -317,6 +314,25 @@ const Section = ({
</div>
);
};
const Footer = () => (
<div className="md:col-span-3 mt-8 w-full flex flex-col text-sm justify-center items-center text-gray-500 dark:text-neutral-400">
<span className="mb-2">
© {new Date().getUTCFullYear()} Wode "Nimo" Ni.
{/* Last updated on{" "}
{new Date(document.lastModified).toLocaleString("default", {
month: "long",
day: "numeric",
year: "numeric",
})}
. */}
</span>
<div className={`flex items-start color-primary text-sm`}>
<Twitter />
<GitHub />
<Email />
</div>
</div>
);

const App: React.FC = () => {
const [darkMode, setDarkMode] = useState(
Expand Down Expand Up @@ -413,6 +429,7 @@ const App: React.FC = () => {
<NewsFeed />
</Section>
</div>
<Footer />
</div>
);
};
Expand Down
118 changes: 106 additions & 12 deletions src/News.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,18 +79,112 @@ const news: News[] = [
</>
),
},
{
time: new Date("2020-05-01"),
msg: (
<>
I'll join <A href="https://microsoft.github.io/prose/">PROSE</A> @
Microsoft Research as a Research Intern this summer!
</>
),
},
{
time: new Date("2020-04-01"),
msg: (
<>
The first conference paper on{" "}
<A href="https://penrose.cs.cm">Penrose</A>,{" "}
<i>"Penrose: From Mathematical Notation to Beautiful Diagrams,"</i> was
accepted by <A href="https://s2020.siggraph.org/">SIGGRAPH 2020</A>!
</>
),
},
{
time: new Date("2020-03-01"),
msg: (
<>
The CHI paper won a <b>Best Paper Honourable Mention award</b> 🏆!
</>
),
},
{
time: new Date("2020-01-01"),
msg: (
<>
Our paper{" "}
<i>
"How Domain Experts Create Conceptual Diagrams and Implications for
Tool Design"
</i>{" "}
was accepted by <A href="http://chi2020.acm.org/">CHI 2020</A> 🏖️!
</>
),
},
{
time: new Date("2019-10-01"),
msg: (
<>
I presented our papers at{" "}
<A href="http://plateau-workshop.org/">PLATEAU 2019</A> with Max and
Anael!
</>
),
},
{
time: new Date("2019-05-01"),
msg: (
<>
I finished 7th at the 2019{" "}
<A href="https://en.wikipedia.org/wiki/ACUI_Collegiate_Pocket_Billiards_National_Championship">
ACUI Collegiate Nine-ball National Championship
</A>{" "}
🎱!
</>
),
},
{
time: new Date("2019-05-01"),
msg: (
<>
Anael Kuperwajs,{" "}
<A href="https://www.linkedin.com/in/courtney-e-miller/">
Courtney Miller
</A>
, <A href="https://a9.io/">Max Krieger</A> will join us as{" "}
<A href="https://www.cmu.edu/scs/isr/reuse/">REUSE</A> students this
summer. Welcome!
</>
),
},
{
time: new Date("2018-04-01"),
msg: <>I will join CMU as a Ph.D. student!</>,
},
{
time: new Date("2018-01-01"),
msg: <>I will be one of the TAs for COMS 4115 again in Spring 2018.</>,
},
{
time: new Date("2017-10-01"),
msg: (
<>
Gave a talk at{" "}
<A href="https://2017.splashcon.org/event/dsldi-2017-substance-and-style-domain-specific-languages-for-mathematical-diagrams">
DSLDI 2017
</A>{" "}
in Vancouver, Canada.
</>
),
},
{
time: new Date("2017-05-01"),
msg: (
<>
Joined <A href="http://isri.cmu.edu/education/reu-se/">REU-SE</A>, a
summer research program, at Carnegie Mellon University.
</>
),
},
];

export default news;

// <!-- - **May 2020** I'll join [PROSE](https://microsoft.github.io/prose/) @ Microsoft Research as a Research Intern this summer! -->
// <!-- - **Apr 2020** The first conference paper on [Penrose](https://github.com/penrose/penrose), _"Penrose: From Mathematical Notation to Beautiful Diagrams,"_ was accepted by [SIGGRAPH 2020](https://s2020.siggraph.org/)! -->
// <!-- - **Mar 2020** The CHI paper won a Best Paper Honourable Mention award🏆! -->
// <!-- - **Jan 2020** Our paper _"How Domain Experts Create Conceptual Diagrams and Implications for Tool Design"_ was ~~conditionally~~ accepted by [CHI 2020](http://chi2020.acm.org/)🏖️! -->
// <!-- - **Oct 2019** I presented our papers at [PLATEAU 2019](http://plateau-workshop.org/) with Max and Anael! -->
// <!-- - **May 2019** I finished 7th at the 2019 [ACUI Collegiate Nine-ball National Championship](https://en.wikipedia.org/wiki/ACUI_Collegiate_Pocket_Billiards_National_Championship):8ball:! -->
// <!-- - **May 2019** Anael Kuperwajs, [Courtney Miller](https://www.linkedin.com/in/courtney-e-miller/), [Max Krieger](https://a9.io/) will join us as [REUSE](https://www.cmu.edu/scs/isr/reuse/) students this summer. Welcome! -->
// <!-- - **April 2018** I will join CMU as a Ph.D. student! -->
// <!-- - **January 2018** I will be one of the TAs for COMS 4115 again in Spring 2018. -->
// <!-- - **October 2017** Gave a talk at [DSLDI 2017](https://2017.splashcon.org/event/dsldi-2017-substance-and-style-domain-specific-languages-for-mathematical-diagrams) in Vancouver, Canada. -->
// <!-- - __May 2017__ Joined [REU-SE](http://isri.cmu.edu/education/reu-se/), a summer research program, at Carnegie Mellon University. -->

0 comments on commit 49aa39d

Please sign in to comment.