Skip to content

Commit f23c366

Browse files
author
Steve Krouse
committed
rawgit --> raw githack
1 parent 2d450cd commit f23c366

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

drafts/regex-for-humans.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ And it'd be fun!
1818

1919
But even as scoped as it seems, it's really a bear of a project. Even just building a barely useful version that only implements the basics of regex would take hours and hours. And then what? The slog of filling out the implementation would then begin, and I'd be like Olli of Regex UCR, holding the reins of a half-finished open source project without anyone to help me.
2020

21-
Potentially this project would be easier if I simply built of their work? Or maybe not, as it [seems like they don't have much built](https://cdn.rawgit.com/savolai/regex-you-can-read/master/app/index.html), although this rawgit view might be deceptively simplistic.
21+
Potentially this project would be easier if I simply built of their work? Or maybe not, as it [seems like they don't have much built](https://rawcdn.githack.com/savolai/regex-you-can-read/master/app/index.html), although this rawgit view might be deceptively simplistic.
2222

2323
I think the way I'd try to tackle this by implementing a UI-based interface on top of [VerbalExpressions](https://github.com/VerbalExpressions/JSVerbalExpressions). Which then, given how uniform this library is, and how many different langauges it compiles to, we could then compile it to various sub-languages pretty easily. This is abstraction at its finest! I'd be building on top of an abstraction of an abstraction!
2424

journal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ Andre replied already! He is busy preparing for a bunch of conferences so might
616616

617617
### August 28, 2017 2:28pm
618618

619-
I made [some decent progress on StreamSheets this morning](https://cdn.rawgit.com/stevekrouse/futureofcoding.org/d44e9b61d5b044c3daa3ae8b4b0690a09e1fa55d/prototypes/streamsheets/index.html). It's now simply a table that populates with event information when you do things with your mouse over the "preview div" on the left of the page.
619+
I made [some decent progress on StreamSheets this morning](https://rawcdn.githack.com/stevekrouse/futureofcoding.org/d44e9b61d5b044c3daa3ae8b4b0690a09e1fa55d/prototypes/streamsheets/index.html). It's now simply a table that populates with event information when you do things with your mouse over the "preview div" on the left of the page.
620620

621621
I'm feeling a little daunted by all of the things that need to happen to build this prototype from a UI perspective. Given that so much of what I'm doing is conjectural, I worry that committing to a design and building it might take too long. I'm looking for a hack of some sort that will allow me to get a sense of what a working version of this *could* look like.
622622

notes/bret-victor/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ Vision without implementation is hard to imagine. I reacted negatively to this p
8888

8989
I've seen and thought about these ideas and examples sufficiently to be not terribly impressed with my nth viewing of them in this video. Probably the most exciting thing I found was Bret's work visualizing Nile:
9090

91-
[demo_shape](https://cdn.rawgit.com/damelang/nile/master/viz/NileViewer/demo_shape.html)
92-
[demo_reals](https://cdn.rawgit.com/damelang/nile/master/viz/NileViewer/demo_reals.html)
93-
[demo_points](https://cdn.rawgit.com/damelang/nile/master/viz/NileViewer/demo_points.html)
94-
[demo_beziers](https://cdn.rawgit.com/damelang/nile/master/viz/NileViewer/demo_beziers.html)
91+
[demo_shape](https://rawcdn.githack.com/damelang/nile/master/viz/NileViewer/demo_shape.html)
92+
[demo_reals](https://rawcdn.githack.com/damelang/nile/master/viz/NileViewer/demo_reals.html)
93+
[demo_points](https://rawcdn.githack.com/damelang/nile/master/viz/NileViewer/demo_points.html)
94+
[demo_beziers](https://rawcdn.githack.com/damelang/nile/master/viz/NileViewer/demo_beziers.html)
9595

9696
I of course came across this system in my deep dive of Alan Kay, but as with most mathmatical inventions, I found it intimidating and unapproachable. Yet, potentially these sites will make it easier for me to gain an ituition for it. In a more general sense, this makes me wonder about all sorts of mathmatical notations that intimidate me, but probably hold all sorts of beauty, such as maxwell's equations (which Bret often references) or the abstract mathmatics that inspires functional programming, such as category theory. I guess this sort of thinking is what inspired Chris Olah to explain Machine Learning.
9797

unbreakable-links/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ By associating your content with its git commit hash, it ensures your links neve
1111
Add the following script tag to every page in your website:
1212

1313
```html
14-
<script repoPath="stevekrouse/unbreakable-links" type="text/javascript" src="https://cdn.rawgit.com/stevekrouse/unbreakable-links/master/index.js"></script>
14+
<script repoPath="stevekrouse/unbreakable-links" type="text/javascript" src="https://rawcdn.githack.com/stevekrouse/unbreakable-links/master/index.js"></script>
1515
```
1616

1717
**NOTE: don't forget to customize the `repoPath` attribute to what it is for you.**

unbreakable-links/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const repoPathFromScriptAttribute = () => {
1010
return currentScript.getAttribute('repoPath')
1111
}
1212

13-
const rawGitLink = (repoPath, filePath, commitHash) => "https://cdn.rawgit.com/" + repoPath + "/" + (commitHash ? commitHash : "master") + filePath
13+
const rawGitLink = (repoPath, filePath, commitHash) => "https://rawcdn.githack.com/" + repoPath + "/" + (commitHash ? commitHash : "master") + filePath
1414

1515
const load = (repoPath, filePath, commitHash) => {
1616
console.log("would have loaded: " + rawGitLink(repoPath, filePath, commitHash))

0 commit comments

Comments
 (0)