Skip to content

Commit

Permalink
Add license (#36)
Browse files Browse the repository at this point in the history
* Fix clicks, captions.

* Artifact loop

* First pass at animatable SVGs.

* Despeckle to 5

* Change CSS.

* History of LLMs: animatable graphs with labels

* Animatable SVGs in slides.

* Three scenarios

* Timeline

* Update history slides

* LinkedIn, etc.

* Also build history

* Add license
  • Loading branch information
klutometis committed Sep 24, 2024
1 parent db472ca commit 21a92b1
Show file tree
Hide file tree
Showing 8 changed files with 131 additions and 0 deletions.
15 changes: 15 additions & 0 deletions artifacts/snake.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
<!DOCTYPE html>
<!--
Copyright 2024 -l
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html lang="en">
<head>
<meta charset="UTF-8">
Expand Down
16 changes: 16 additions & 0 deletions doodles/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
<!doctype html>
<!--
Copyright 2024 -l
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
15 changes: 15 additions & 0 deletions history/graph.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
#!/usr/bin/env python3
# Copyright 2024 -l
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.


import matplotlib.pyplot as plt
import numpy as np

Expand Down
17 changes: 17 additions & 0 deletions history/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<!doctype html>
<!--
Copyright 2024 -l
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->


<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
17 changes: 17 additions & 0 deletions history/slides/components/AnimatableSvg.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<!--
Copyright 2024 -l
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->


<template>
<!-- Removed 'h-auto' since 'fixed-height' should define the height -->
<div :id="containerId" class="svg-container w-full"></div>
Expand Down
17 changes: 17 additions & 0 deletions history/slides/components/Counter.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<!--
Copyright 2024 -l
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->


<script setup lang="ts">
import { ref } from 'vue'
Expand Down
17 changes: 17 additions & 0 deletions history/slides/index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<!--
Copyright 2024 -l
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->


<head>
<!-- Include GSAP from a CDN -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/gsap.min.js"></script>
Expand Down
17 changes: 17 additions & 0 deletions history/slides/snippets/external.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright 2024 -l
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


/* eslint-disable no-console */

// #region snippet
Expand Down

0 comments on commit 21a92b1

Please sign in to comment.