Skip to content

📻 Add starting Meetings and content via IPFS #36

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WhyDRS is a free educational resource about the financial markets in the United


## Quick Start
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.dev/WhyDRS/DAO-docs)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.dev/WhyDRS/DUNA-docs)

### Prerequisites

Expand Down
13 changes: 7 additions & 6 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

import {themes as prismThemes} from 'prism-react-renderer';

/** @type {import('@docusaurus/types').Config} */
const config = {
module.exports = {
title: 'WhyDRS',
tagline: 'Not your name, not your shares. 🔐',
favicon: 'imgs/brand/favicon.ico',
Expand All @@ -27,7 +26,6 @@ const config = {
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: './sidebars.js',
Expand Down Expand Up @@ -59,7 +57,6 @@ const config = {
],

themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
image: 'imgs/brand/jpg/social-card.jpg',
navbar: {
Expand Down Expand Up @@ -153,6 +150,10 @@ const config = {
darkTheme: prismThemes.dracula,
},
}),
stylesheets: [
{
href: '/css/custom.css',
type: 'text/css',
},
],
};

export default config;
7 changes: 6 additions & 1 deletion meetings/2024-04-01.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ slug: 17-nov-2024
title: Continuing Decentralization Growth Efforts
---

[embed of meeting recordings]
<div class="audio-player">
<audio controls>
<source src="ipfs.io/gateway-CID" type="audio/m4a">
Your browser does not support the audio element.
</audio>
</div>

## Agenda

Expand Down
34 changes: 34 additions & 0 deletions meetings/TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
get the files
throw in folder
pin and seednet

# Pending notes

Here are some notes I took from the meeting yesterday as well:

@Gorillionaire2 would like to focus on the back end of the Database and resources, rather than the front end, so if we could find some more community members to assist with front end development and acclimate to GitHub it would be a big help.

@NYTEMODE and @Jersan , your names were brought up that seem to have the skills. Are you two interested? 🙂

New Repo procedure- set up a new issue within WhyDRS checking for community agreement, then create new repo. For RNN Repo, issues are used to track articles in progress and sources, then ‘completed’ when the article can be published. @Altair @WeAreTheDerelictCats @bobmahalo , would love to assist to onboard and consider article/issue development. Maybe we transition existing articles to a new host within WhyDRS.

Need to review the contribution standards on the github to make sure that the free and open contributions can exist while also discouraging that the organization sponsors or agrees with that bad behavior or bad faith discussion. Above example, Bob mentioned Heather Cox Anderson had to deal with a lot of live pornography during her livestreams on Meta.

For Meta Channel in Discord- Transition to weekly meetings, add a politics channel, should there be a GitHub repo for the Discord? (include: links out to bots, suggestion for improvement?), TTS Bot added so that people can text in and have easier input (like Moonfire)

Discussed a registry of github users, which would allow for more nuanced breakdown of permissions structure vs membership which is binary. A registry could also include what skills a person has, what they help with, what they have commented on.
Jersan

https://discordapp.com/channels/1102309240145707049/1267903870269526140/1328455657833107477

12 Jan 2025


# How to add to IPFS

Show desktop flow

Share CID

Pinning

95 changes: 95 additions & 0 deletions static/css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
/* Brand Colors
🔵 Blue: #144F9B
⚫ Black: #2B2B2B
🔷 Alt. Blue: #104C85 - Represent transfer agents and honesty.
🟢 Green: #2E732E - Represents individual investors.
🟠 Orange: #E26848 - Represents issuers.
🟣 Purple #8002AF - Accent in shield logo.
*/

h1, h2, h3 {
color: #144F9B;
}

pre {
background-color: #333;
color: #fff;
border-radius: 8px;
padding: 1em;
}

.audio-player {
display: flex;
align-items: center;
gap: 10px;
background-color: #2B2B2B;
padding: 10px;
border-radius: 8px;
border: 2px solid #144F9B;
}
.audio-player button {
background-color: #144F9B;
color: #FFFFFF;
border: none;
border-radius: 50%;
width: 40px;
height: 40px;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background-color 0.3s ease;
}
.audio-player button:hover {
background-color: #104C85;
}
.audio-player #seek-bar {
flex: 1;
height: 6px;
appearance: none;
background-color: #E26848;
border-radius: 3px;
outline: none;
transition: background-color 0.3s ease;
}
.audio-player #seek-bar::-webkit-slider-thumb {
appearance: none;
width: 12px;
height: 12px;
background-color: #8002AF;
border: 2px solid #FFFFFF;
border-radius: 50%;
cursor: pointer;
}
.audio-player #seek-bar:hover {
background-color: #E57A61;
}
.audio-player #volume-bar {
width: 100px;
appearance: none;
height: 4px;
background-color: #2E732E;
border-radius: 2px;
outline: none;
}
.audio-player #volume-bar::-webkit-slider-thumb {
appearance: none;
width: 10px;
height: 10px;
background-color: #FFFFFF;
border: 1px solid #2E732E;
border-radius: 50%;
cursor: pointer;
}
.audio-player span {
color: #FFFFFF;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
}
.audio-player button:focus,
.audio-player #seek-bar:focus,
.audio-player #volume-bar:focus {
outline: none;
box-shadow: 0 0 4px #144F9B;
}