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: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
-
# Future of Coding Wiki
1
+
# Feeling of Computing Wiki
2
2
3
-
Welcome to the Future of Coding Wiki!
3
+
Welcome to the Feeling of Computing Wiki!
4
4
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).
6
6
7
7
## Contributing
8
8
9
9
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.
10
10
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.
Copy file name to clipboardExpand all lines: build/build.coffee
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ if you have any questions, feel free to ask Ivan. he loves talking about coffee
11
11
12
12
13
13
###
14
-
Future of Coding Wiki
14
+
Feeling of Computing Wiki
15
15
CoffeeScript Build Script
16
16
17
17
This is the reference implementation for the build script.
@@ -371,7 +371,7 @@ for pageName, page of pages
371
371
html=html.replace/\s*{{page}}/, page.html
372
372
373
373
# 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 whenp.data.titlenotin ["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 whenp.data.titlenotin ["404", "All Pages", "Search", "Feeling of Computing Wiki"]).join"\n"
375
375
376
376
# Finally, write the page content to the destination path.
Copy file name to clipboardExpand all lines: pages/404.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ title: 404
4
4
5
5
<div>
6
6
<p>This page doesn't exist.</p>
7
-
<aid="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
+
<aid="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>
8
8
</div>
9
9
10
10
<style>
@@ -30,7 +30,7 @@ title: 404
30
30
// Turn `kebab-case` or `camel_case` or `whatever+this+is` into `Nice Title Case`
31
31
let name =filename.split(/[-_+]/g).map(w=> w[0].toUpperCase() +w.slice(1)).join("");
32
32
// Update the `Edit This Page` and `Create It On GitHub` links to pre-populate a new page with the correct filename and title
Copy file name to clipboardExpand all lines: pages/collaboration.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Collaboration in the Community
3
3
contributors: Kartik Agaram, Ivan Reese
4
4
---
5
5
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.
7
7
8
8
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.
9
9
@@ -13,7 +13,7 @@ Let's collect some nice examples of the sorts of collaboration taking place.
13
13
14
14
[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.
15
15
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).
Copy file name to clipboardExpand all lines: pages/contributing.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,30 +4,30 @@ title: Contributing
4
4
5
5
### Everyone is welcome to add and edit any part of the wiki.
6
6
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.
8
8
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.
10
10
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.
12
12
13
13
We use a subset of Markdown called [[Tonedown]], which keeps the `.md` extension but removes some lesser-used features for the sake of simplicity.
14
14
15
15
Each page begins with some "frontmatter" enclosed by triple dashes, followed by the page content. Here's an example:
16
16
17
17
```
18
18
---
19
-
title: Future of Coding (Podcast)
19
+
title: Feeling of Computing (Podcast)
20
20
contributors: Ivan Reese, Kartik Agaram
21
21
---
22
22
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.
24
24
```
25
25
26
26
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`.
27
27
28
28
When you edit a page, you're welcome to add your name to the list of contributors, if you'd like.
29
29
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).
31
31
32
32
---
33
33
@@ -36,4 +36,4 @@ Please note that all contributions are public domain, and subject to our [Code o
36
36
* This is in contrast to the discussion form (Slack for now, but eventually something web native)
37
37
* Exception — if users have their own "profile pages", then it'd make sense to sort of treat that as a more personal space.
38
38
* 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
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.
Copy file name to clipboardExpand all lines: pages/future-of-coding.md
+1-7Lines changed: 1 addition & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,4 @@
2
2
title: Future of Coding
3
3
---
4
4
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