Skip to content

Commit d965d03

Browse files
committed
Rename the community, update URLs, etc
1 parent 095e6b1 commit d965d03

15 files changed

+50
-48
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Future of Coding Wiki
1+
# Feeling of Computing Wiki
22

3-
Welcome to the Future of Coding Wiki!
3+
Welcome to the Feeling of Computing Wiki!
44

5-
We'll use this wiki to collect all sorts of references, projects, concepts, realizations, and other such bits of endearingly valuable knowledge that are surfaced by discussions in [our community](https://futureofcoding.org/community).
5+
We'll use this wiki to collect all sorts of references, projects, concepts, realizations, and other such bits of endearingly valuable knowledge that are surfaced by discussions in [our community](https://feelingof.com/community).
66

77
## Contributing
88

99
Everyone is welcome to contribute. Please feel free to edit _anything in the repo_ at any time in any way, and then submit a PR.
1010

11-
For more guidance, see the [Contributing](https://wiki.futureofcoding.org/contributing) page.
11+
For more guidance, see the [Contributing](https://wiki.feelingof.com/contributing) page.
1212

1313
## Build Scripts
1414

assets/202408-problems.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<h2>Finding our Neighbors, Step 2</h2>
1818

19-
<a href="https://futureofcoding.slack.com/archives/C5T9GPWFL/p1722547627788149">Thread of problem statements</a>
19+
<a href="https://feelingofcomputing.slack.com/archives/C5T9GPWFL/p1722547627788149">Thread of problem statements</a>
2020

2121
<p>
2222
If you haven't yet, first contribute a problem statement.

build/build.coffee

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if you have any questions, feel free to ask Ivan. he loves talking about coffee
1111

1212

1313
###
14-
Future of Coding Wiki
14+
Feeling of Computing Wiki
1515
CoffeeScript Build Script
1616
1717
This is the reference implementation for the build script.
@@ -371,7 +371,7 @@ for pageName, page of pages
371371
html = html.replace /\s*{{page}}/, page.html
372372

373373
# Replace the string {{all}} with links to all pages
374-
html = html.replaceAll "{{all}}", (li "<a href=\"#{p.url}\">#{p.data.title}</a>" for _, p of pages when p.data.title not in ["404", "All Pages", "Search", "Future of Coding Wiki"]).join "\n"
374+
html = html.replaceAll "{{all}}", (li "<a href=\"#{p.url}\">#{p.data.title}</a>" for _, p of pages when p.data.title not in ["404", "All Pages", "Search", "Feeling of Computing Wiki"]).join "\n"
375375

376376
# Finally, write the page content to the destination path.
377377
writeFile page.destPath, html

build/layout.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111

1212
<header>
1313
<a id="logo" href="/">
14-
<img alt="Future of Coding" width="300" height="300" src="/wiki.svg">
14+
<img alt="Feeling of Computing" width="300" height="300" src="/wiki.svg">
1515
</a>
1616
<nav>
17-
<a id="edit" href="https://github.com/futureofcoding/wiki/edit/main/{{path}}">
17+
<a id="edit" href="https://github.com/feelingofcomputing/wiki/edit/main/{{path}}">
1818
<span>Edit This Page</span>
1919
<img width="14" height="13" src="/edit.svg" alt="">
2020
</a>
21-
<a href="https://github.com/futureofcoding/wiki/commits/main/{{path}}">History of This Page</a>
21+
<a href="https://github.com/feelingofcomputing/wiki/commits/main/{{path}}">History of This Page</a>
2222
<a href="/all">All Pages</a>
2323
<a href="/search">Search</a>
2424
</nav>
@@ -42,9 +42,9 @@
4242
</a>
4343
</p>
4444
<p>
45-
Built by the <a href="https://futureofcoding.org">Future of Coding</a> community.
45+
Built by the <a href="https://feelingof.com">Feeling of Computing</a> community.
4646
</p>
47-
<a class="initials" href="https://futureofcoding.org">
47+
<a class="initials" href="https://feelingof.com">
4848
<img alt="" width="40" height="40" src="/initials.svg">
4949
</a>
5050
</footer>

pages/404.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: 404
44

55
<div>
66
<p>This page doesn't exist.</p>
7-
<a id="new" href="https://github.com/futureofcoding/wiki/new/main/pages?filename=My-file-name.md&value=---%0Atitle:%20A%20New%20Page%0Acontributors:%20Your%20Name%0A---">Create it on GitHub?</a>
7+
<a id="new" href="https://github.com/feelingofcomputing/wiki/new/main/pages?filename=My-file-name.md&value=---%0Atitle:%20A%20New%20Page%0Acontributors:%20Your%20Name%0A---">Create it on GitHub?</a>
88
</div>
99

1010
<style>
@@ -30,7 +30,7 @@ title: 404
3030
// Turn `kebab-case` or `camel_case` or `whatever+this+is` into `Nice Title Case`
3131
let name = filename.split(/[-_+]/g).map(w => w[0].toUpperCase() + w.slice(1)).join(" ");
3232
// Update the `Edit This Page` and `Create It On GitHub` links to pre-populate a new page with the correct filename and title
33-
["edit", "new"].forEach((id) => document.getElementById(id).href = `https://github.com/futureofcoding/wiki/new/main/pages?filename=${filename}.md&value=---%0Atitle:%20${encodeURI(name)}%0Acontributors:%20Your%20Name%0A---`);
33+
["edit", "new"].forEach((id) => document.getElementById(id).href = `https://github.com/feelingofcomputing/wiki/new/main/pages?filename=${filename}.md&value=---%0Atitle:%20${encodeURI(name)}%0Acontributors:%20Your%20Name%0A---`);
3434
// Give the `Edit This Page` button a nicer label
3535
document.querySelector("#edit span").textContent = "Create Page"
3636
</script>

pages/bret-victor.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ The point of listing those here is not just to mirror what's on Bret's site, but
1515

1616
## On the podcast
1717

18-
[26: Glen Chiacchieri](https://futureofcoding.org/episodes/026)
18+
[26: Glen Chiacchieri](https://feelingof.com/episodes/026)
1919

20-
[60: Magic Ink](https://futureofcoding.org/episodes/060)
20+
[60: Magic Ink](https://feelingof.com/episodes/060)
2121

22-
[71: Elephant in the room](https://futureofcoding.org/episodes/071)
22+
[71: Elephant in the room](https://feelingof.com/episodes/071)
2323

2424
## Threads from our archives with interesting comments or call-outs
2525

pages/collaboration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Collaboration in the Community
33
contributors: Kartik Agaram, Ivan Reese
44
---
55

6-
Many people who join our community are steadily working away at their own "future of coding"-esq project, and delight in finding a place to talk about their discoveries, or their frustrations. There's a sense of camaraderie — we share this desire to do new things with (or to) our computers, whether that's breaking them apart and rebuilding them, or just scratching this one pernicious itch.
6+
Many people who join our community are steadily working away at their own "feeling of computing"-esq project, and delight in finding a place to talk about their discoveries, or their frustrations. There's a sense of camaraderie — we share this desire to do new things with (or to) our computers, whether that's breaking them apart and rebuilding them, or just scratching this one pernicious itch.
77

88
We like to encourage collaboration of all sorts among our members. That could mean joining up to work on a single codebase together, or sharing early demos and offering constructive feedback.
99

@@ -13,7 +13,7 @@ Let's collect some nice examples of the sorts of collaboration taking place.
1313

1414
[This wiki](/), naturally, is a collaborative project run by members of the community. There are also a few other-meta projects that seek to foster collaboration.
1515

16-
The [Project Comparison](https://docs.google.com/spreadsheets/d/12sTu7RT-s_QlAupY1v-3DfI1Mm9NEX5YMWWTDAKHLfc/edit) Google Sheet catalogs Future of Coding projects in and around the community. It's not an exhaustive listing, but it does provide an interesting starting point to see who here is working on what, plus a few projects elsewhere that might be of interest to our members. If you’re looking for a project to contribute to, this is one place to explore your options. If you are working on a project, you may edit the spreadsheet to add your project (please stick to the existing format).
16+
The [Project Comparison](https://docs.google.com/spreadsheets/d/12sTu7RT-s_QlAupY1v-3DfI1Mm9NEX5YMWWTDAKHLfc/edit) Google Sheet catalogs Feeling of Computing projects in and around the community. It's not an exhaustive listing, but it does provide an interesting starting point to see who here is working on what, plus a few projects elsewhere that might be of interest to our members. If you’re looking for a project to contribute to, this is one place to explore your options. If you are working on a project, you may edit the spreadsheet to add your project (please stick to the existing format).
1717

1818
# Discussions
1919

pages/contributing.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,30 @@ title: Contributing
44

55
### Everyone is welcome to add and edit any part of the wiki.
66

7-
Below are some brief instructions for editing the wiki. But note well: this wiki is fledgling. We're still figuring out how it should work. If any of these instructions don't make sense, or if you have other questions, head to the **#present-company** channel in [our Slack](https://futureofcoding.org/community) and let us know.
7+
Below are some brief instructions for editing the wiki. But note well: this wiki is fledgling. We're still figuring out how it should work. If any of these instructions don't make sense, or if you have other questions, head to the **#present-company** channel in [our Slack](https://feelingof.com/community) and let us know.
88

9-
When you click the "Edit this page" button, you'll be launched over to the [GitHub repo](http://github.com/futureofcoding/wiki) for the wiki, with an editor for the current page. Make whatever changes you like, then submit a pull request — we'll merge it ASAP.
9+
When you click the "Edit this page" button, you'll be launched over to the [GitHub repo](http://github.com/feelingofcomputing/wiki) for the wiki, with an editor for the current page. Make whatever changes you like, then submit a pull request — we'll merge it ASAP.
1010

11-
If you'd like to add a new page, here's a handy tip. In your browser, go to the URL that you'd like your new page to have (eg: [wiki.futureofcoding.org/my-new-page](https://wiki.futureofcoding.org/my-new-page)). You'll be given a link to create this new page on Github with a pre-populated template and filename.
11+
If you'd like to add a new page, here's a handy tip. In your browser, go to the URL that you'd like your new page to have (eg: [wiki.feelingof.com/my-new-page](https://wiki.feelingof.com/my-new-page)). You'll be given a link to create this new page on Github with a pre-populated template and filename.
1212

1313
We use a subset of Markdown called [[Tonedown]], which keeps the `.md` extension but removes some lesser-used features for the sake of simplicity.
1414

1515
Each page begins with some "frontmatter" enclosed by triple dashes, followed by the page content. Here's an example:
1616

1717
```
1818
---
19-
title: Future of Coding (Podcast)
19+
title: Feeling of Computing (Podcast)
2020
contributors: Ivan Reese, Kartik Agaram
2121
---
2222
23-
The FoC community has [a podcast](futureofcoding.org/episodes) hosted by Ivan Reese, Jimmy Miller, and Lu Wilson.
23+
The FoC community has [a podcast](feelingof.com/episodes) hosted by Ivan Reese, Jimmy Miller, and Lu Wilson.
2424
```
2525

2626
The filename of each page is used for the URL, so keep that filename consistent with the title. For the example above, a good filename would be `future-of-coding-podcast.md`, so that the URL would be `/future-of-coding-podcast`.
2727

2828
When you edit a page, you're welcome to add your name to the list of contributors, if you'd like.
2929

30-
Please note that all contributions are public domain, and subject to our [Code of Conduct](https://github.com/futureofcoding/code-of-conduct). We have a very low tolerance for self-promotion of products or companies. When in doubt, talk to us on [Slack](https://futureofcoding.org/community).
30+
Please note that all contributions are public domain, and subject to our [Code of Conduct](https://github.com/feelingofcomputing/code-of-conduct). We have a very low tolerance for self-promotion of products or companies. When in doubt, talk to us on [Slack](https://feelingof.com/community).
3131

3232
---
3333

@@ -36,4 +36,4 @@ Please note that all contributions are public domain, and subject to our [Code o
3636
* This is in contrast to the discussion form (Slack for now, but eventually something web native)
3737
* Exception — if users have their own "profile pages", then it'd make sense to sort of treat that as a more personal space.
3838
* It would be great to have a way to add annotations/comments to passages of text, to signal diverging opinions — like `hypothes.is`, but native to our medium
39-
*
39+
*

pages/feeling-of-computing.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: Feeling of Computing
3+
---
4+
5+
The Feeling of Computing community was started back in 2017 to channel a recent groundswell of desire to revisit the foundations our industry and practice, looking for underexplored alternatives to the status quo. Swirling in the air were revolutionary talks by Alan Kay, essays by Bret Victor, and projects like Eve and Elm and Enso. Indie researchers like [Andy Matuschak](andymatuschak.org), [Hundred Rabbits](100r.co/), and [Ink & Switch](inkandswitch.com) were surging in popularity. At the same time, the software ecosystems controlled by Apple, Google, and Microsoft increasingly seemed less like bicycles for the mind and more like department stores for the disinclined.
6+
7+
This community is a worldwide collective of computing enthusiasts, academic researchers, startup founders, indie tinkerers, and quite a few curious onlookers. Members host regular meetups in London, NYC, and online, with smaller gatherings scattered across the globe.
8+
9+
There is no unifying thesis or mission. Rather, we all share an interest in considering why things got to be the way they are, and where we might like them to go from here. Some members are enthusiastic about tools like visual programming, type systems, or omniscient debugging. Others raise awareness of the human factors that contribute to our software malaise, such as the awful lack of diversity in tech or the err of attending to social issues with technical solutions. An especially zealous cohort even want to rip everything down to the foundation and start over, bless their ambitious hearts.
10+
11+
The community is open and welcoming to all. We invite you to join our deep discussions, enjoy our infrequently-published but lovingly crafted [podcast](https://feelingof.com/episodes), and [[contribute|Contributing]] to this wiki.

pages/future-of-coding.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,4 @@
22
title: Future of Coding
33
---
44

5-
The Future of Coding community was started back in 2017 to channel a recent groundswell of desire to revisit the foundations our industry and practice, looking for underexplored alternatives to the status quo. Swirling in the air were revolutionary talks by Alan Kay, essays by Bret Victor, and projects like Eve and Elm and Enso. Indie researchers like [Andy Matuschak](andymatuschak.org), [Hundred Rabbits](100r.co/), and [Ink & Switch](inkandswitch.com) were surging in popularity. At the same time, the software ecosystems controlled by Apple, Google, and Microsoft increasingly seemed less like bicycles for the mind and more like department stores for the disinclined.
6-
7-
This community is a worldwide collective of computing enthusiasts, academic researchers, startup founders, indie tinkerers, and quite a few curious onlookers. Members host regular meetups in London, NYC, and online, with smaller gatherings scattered across the globe.
8-
9-
There is no unifying thesis or mission. Rather, we all share an interest in considering why things got to be the way they are, and where we might like them to go from here. Some members are enthusiastic about tools like visual programming, type systems, or omniscient debugging. Others raise awareness of the human factors that contribute to our software malaise, such as the awful lack of diversity in tech or the err of attending to social issues with technical solutions. An especially zealous cohort even want to rip everything down to the foundation and start over, bless their ambitious hearts.
10-
11-
The community is open and welcoming to all. We invite you to join our deep discussions, enjoy our infrequently-published but lovingly crafted [podcast](https://futureofcoding.org/episodes), and [[contribute|Contributing]] to this wiki.
5+
This was the original name of the community, but it's now known as [[Feeling of Computing]].

0 commit comments

Comments
 (0)