@mseep/eddiejaoude 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/ISSUE_TEMPLATE/bug.yml +54 -0
- package/.github/workflows/youtube.yml +22 -0
- package/.gitpod.yml +28 -0
- package/CODE_OF_CONDUCT.md +76 -0
- package/README.md +71 -0
- package/eddiesTestimonials.json +179 -0
- package/package.json +31 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
name: 🐞 Bug
|
|
2
|
+
description: File a bug/issue
|
|
3
|
+
title: "[BUG] <title>"
|
|
4
|
+
labels: [Bug, Needs Triage]
|
|
5
|
+
body:
|
|
6
|
+
- type: checkboxes
|
|
7
|
+
attributes:
|
|
8
|
+
label: Is there an existing issue for this?
|
|
9
|
+
description: Please search to see if an issue already exists for the bug you encountered.
|
|
10
|
+
options:
|
|
11
|
+
- label: I have searched the existing issues
|
|
12
|
+
required: true
|
|
13
|
+
- type: textarea
|
|
14
|
+
attributes:
|
|
15
|
+
label: Current Behavior
|
|
16
|
+
description: A concise description of what you're experiencing.
|
|
17
|
+
validations:
|
|
18
|
+
required: false
|
|
19
|
+
- type: textarea
|
|
20
|
+
attributes:
|
|
21
|
+
label: Expected Behavior
|
|
22
|
+
description: A concise description of what you expected to happen.
|
|
23
|
+
validations:
|
|
24
|
+
required: false
|
|
25
|
+
- type: textarea
|
|
26
|
+
attributes:
|
|
27
|
+
label: Steps To Reproduce
|
|
28
|
+
description: Steps to reproduce the behavior.
|
|
29
|
+
placeholder: |
|
|
30
|
+
1. In this environment...
|
|
31
|
+
2. With this config...
|
|
32
|
+
3. Run '...'
|
|
33
|
+
4. See error...
|
|
34
|
+
validations:
|
|
35
|
+
required: false
|
|
36
|
+
- type: textarea
|
|
37
|
+
attributes:
|
|
38
|
+
label: Anything else?
|
|
39
|
+
description: |
|
|
40
|
+
Links? References? Anything that will give us more context about the issue you are encountering!
|
|
41
|
+
|
|
42
|
+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
|
|
43
|
+
validations:
|
|
44
|
+
required: false
|
|
45
|
+
- type: dropdown
|
|
46
|
+
id: browsers
|
|
47
|
+
attributes:
|
|
48
|
+
label: What browsers are you seeing the problem on?
|
|
49
|
+
multiple: true
|
|
50
|
+
options:
|
|
51
|
+
- Firefox
|
|
52
|
+
- Chrome
|
|
53
|
+
- Safari
|
|
54
|
+
- Microsoft Edge
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: YouTube Videos
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
schedule:
|
|
5
|
+
- cron: '30 0 * * *'
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
youtube:
|
|
10
|
+
name: latest videos from YouTube
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- uses: actions/checkout@v2
|
|
14
|
+
- uses: gautamkrishnar/blog-post-workflow@master
|
|
15
|
+
with:
|
|
16
|
+
comment_tag_name: "YOUTUBE-VIDEOS-LIST"
|
|
17
|
+
max_post_count: 4
|
|
18
|
+
feed_list: "https://www.youtube.com/feeds/videos.xml?channel_id=UC5mnBodB73bR88fLXHSfzYA"
|
|
19
|
+
custom_tags: "channelId/yt:channelId/,videoId/yt:videoId/"
|
|
20
|
+
date_format: "mmm d, yyyy"
|
|
21
|
+
template: '<tr><td><a href="$url"><img width="140px" src="https://i.ytimg.com/vi/$videoId/mqdefault.jpg"></a></td>$newline<td><a href="$url">$title</a> ($date)<br/>$description</td></tr>$newline'
|
|
22
|
+
description_max_length: 140
|
package/.gitpod.yml
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
|
|
2
|
+
tasks:
|
|
3
|
+
- init: npm install
|
|
4
|
+
command: |
|
|
5
|
+
npm run marked
|
|
6
|
+
npm start
|
|
7
|
+
|
|
8
|
+
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
|
|
9
|
+
ports:
|
|
10
|
+
- port: 3000
|
|
11
|
+
onOpen: open-preview
|
|
12
|
+
|
|
13
|
+
github:
|
|
14
|
+
prebuilds:
|
|
15
|
+
# enable for the default branch (defaults to true)
|
|
16
|
+
master: true
|
|
17
|
+
# enable for all branches in this repo (defaults to false)
|
|
18
|
+
branches: true
|
|
19
|
+
# enable for pull requests coming from this repo (defaults to true)
|
|
20
|
+
pullRequests: true
|
|
21
|
+
# enable for pull requests coming from forks (defaults to false)
|
|
22
|
+
pullRequestsFromForks: true
|
|
23
|
+
# add a check to pull requests (defaults to true)
|
|
24
|
+
addCheck: true
|
|
25
|
+
# add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
|
|
26
|
+
addComment: true
|
|
27
|
+
# add a "Review in Gitpod" button to the pull request's description (defaults to false)
|
|
28
|
+
addBadge: false
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
+
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
|
9
|
+
level of experience, education, socio-economic status, nationality, personal
|
|
10
|
+
appearance, race, religion, or sexual identity and orientation.
|
|
11
|
+
|
|
12
|
+
## Our Standards
|
|
13
|
+
|
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
|
15
|
+
include:
|
|
16
|
+
|
|
17
|
+
* Using welcoming and inclusive language
|
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
|
19
|
+
* Gracefully accepting constructive criticism
|
|
20
|
+
* Focusing on what is best for the community
|
|
21
|
+
* Showing empathy towards other community members
|
|
22
|
+
|
|
23
|
+
Examples of unacceptable behavior by participants include:
|
|
24
|
+
|
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
+
advances
|
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
|
+
* Public or private harassment
|
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
|
30
|
+
address, without explicit permission
|
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
32
|
+
professional setting
|
|
33
|
+
|
|
34
|
+
## Our Responsibilities
|
|
35
|
+
|
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
|
38
|
+
response to any instances of unacceptable behavior.
|
|
39
|
+
|
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
44
|
+
threatening, offensive, or harmful.
|
|
45
|
+
|
|
46
|
+
## Scope
|
|
47
|
+
|
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
|
49
|
+
when an individual is representing the project or its community. Examples of
|
|
50
|
+
representing a project or community include using an official project e-mail
|
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
|
53
|
+
further defined and clarified by project maintainers.
|
|
54
|
+
|
|
55
|
+
## Enforcement
|
|
56
|
+
|
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
+
reported by contacting the project team at eddie@jaoudestudios.com. All
|
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
|
63
|
+
|
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
+
members of the project's leadership.
|
|
67
|
+
|
|
68
|
+
## Attribution
|
|
69
|
+
|
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
71
|
+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
|
72
|
+
|
|
73
|
+
[homepage]: https://www.contributor-covenant.org
|
|
74
|
+
|
|
75
|
+
For answers to common questions about this code of conduct, see
|
|
76
|
+
https://www.contributor-covenant.org/faq
|
package/README.md
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
<a href="https://eddiejaoude.substack.com/p/links" target="_blank"><img src="https://user-images.githubusercontent.com/624760/197235663-1a08eef9-4f9f-4986-8177-c32329a65f3e.jpeg" /></a>
|
|
2
|
+
|
|
3
|
+
<p align="center">I believe Open Source is for EVERYONE; yes, YOU TOO! Join me on my <a href="http://youtube.com/eddiejaoude?sub_confirmation=1">YouTube channel</a> so we can geek out 🎥</p>
|
|
4
|
+
|
|
5
|
+
- 🌟 Part of the <a href="https://stars.github.com/profiles/eddiejaoude/"> GitHub Stars program</a>
|
|
6
|
+
- 🚀 Part of the <a href="https://accelerator.github.com"> GitHub Accelerator program</a> for <a href="https://github.com/EddieHubCommunity/BioDrop">BioDrop</a>
|
|
7
|
+
- 🟩 ~~Join our inclusive community **EddieHub!**~~ Where we believe in Collaboration 1st, Code 2nd! **Amazing 15k+ community EddieHub but it has now been closed**
|
|
8
|
+
- 📸 FREE video course on <a href="https://www.udemy.com/course/make-your-github-profile-stand-out/learn/lecture/29205792#overview">How to make your GitHub profile standout</a>
|
|
9
|
+
- 📰 Check out my Substack blog https://substack.com/@eddiejaoude
|
|
10
|
+
|
|
11
|
+
<p align="center">
|
|
12
|
+
<a href="http://twitter.com/eddiejaoude">
|
|
13
|
+
<img src="https://img.shields.io/badge/follow-%40eddiejaoude%20130k+-1DA1F2?label=Twitter&logo=twitter&style=for-the-badge&color=1A8CD8" alt="Eddie Jaoude's Twitter"/>
|
|
14
|
+
</a>
|
|
15
|
+
|
|
16
|
+
<a href="http://youtube.com/eddiejaoude?sub_confirmation=1">
|
|
17
|
+
<img src="https://img.shields.io/youtube/channel/subscribers/UC5mnBodB73bR88fLXHSfzYA?style=for-the-badge&logo=youtube&label=Youtube&color=FF0000" alt="Eddie Jaoude's YouTube channel"/>
|
|
18
|
+
</a>
|
|
19
|
+
</p>
|
|
20
|
+
|
|
21
|
+
<table>
|
|
22
|
+
<tr>
|
|
23
|
+
<td><a href="https://stars.github.com/profiles/eddiejaoude/"><img src="https://user-images.githubusercontent.com/624760/197230432-de4db9f3-8c8d-4421-8ed4-fc83c02f73e6.jpeg" /></a></td>
|
|
24
|
+
<td><a href="https://stars.github.com/profiles/eddiejaoude/"><img src="https://user-images.githubusercontent.com/624760/197230439-f90cd6b0-2174-41be-97eb-5f28f49d9d19.jpg" /></a></td>
|
|
25
|
+
</tr>
|
|
26
|
+
</table>
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
### Latest YouTube videos
|
|
31
|
+
|
|
32
|
+
<table>
|
|
33
|
+
<!-- YOUTUBE-VIDEOS-LIST:START --><tr><td><a href="https://www.youtube.com/watch?v=VS2a_0Cp4A4"><img width="140px" src="https://i.ytimg.com/vi/VS2a_0Cp4A4/mqdefault.jpg"></a></td>
|
|
34
|
+
<td><a href="https://www.youtube.com/watch?v=VS2a_0Cp4A4">Optimize your Postgres with pg-aiguide MCP server</a> (Feb 6, 2026)<br/></td></tr>
|
|
35
|
+
<tr><td><a href="https://www.youtube.com/shorts/MqeGl8v2GSc"><img width="140px" src="https://i.ytimg.com/vi/MqeGl8v2GSc/mqdefault.jpg"></a></td>
|
|
36
|
+
<td><a href="https://www.youtube.com/shorts/MqeGl8v2GSc">Why the "LIVE" in Live Streaming is both terrifying and awesome!!</a> (Dec 27, 2025)<br/></td></tr>
|
|
37
|
+
<tr><td><a href="https://www.youtube.com/watch?v=B1ACLrOxubk"><img width="140px" src="https://i.ytimg.com/vi/B1ACLrOxubk/mqdefault.jpg"></a></td>
|
|
38
|
+
<td><a href="https://www.youtube.com/watch?v=B1ACLrOxubk">Add Scheduling to your app in minutes with Cronofy</a> (Dec 3, 2025)<br/></td></tr>
|
|
39
|
+
<tr><td><a href="https://www.youtube.com/watch?v=EaNsGFBf97o"><img width="140px" src="https://i.ytimg.com/vi/EaNsGFBf97o/mqdefault.jpg"></a></td>
|
|
40
|
+
<td><a href="https://www.youtube.com/watch?v=EaNsGFBf97o">Monitor your website with the Open Source project Kestra</a> (Aug 14, 2025)<br/></td></tr>
|
|
41
|
+
<!-- YOUTUBE-VIDEOS-LIST:END -->
|
|
42
|
+
</table>
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
### Testimonials
|
|
47
|
+
|
|
48
|
+
<table>
|
|
49
|
+
<tr>
|
|
50
|
+
<th>Author</th>
|
|
51
|
+
<th>Message</th>
|
|
52
|
+
</tr>
|
|
53
|
+
<tr>
|
|
54
|
+
<td><a target="_blank" href="https://twitter.com/urlichsanais/status/1349358736092094467">Anaïs Urlichs</a></td>
|
|
55
|
+
<td>Eddie is probably the most genuine and kind person I know in tech 🥰 providing opportunities and consistently cheering without expecting anything in return! He just recommended me for a podcast 😱</td>
|
|
56
|
+
</tr>
|
|
57
|
+
<tr>
|
|
58
|
+
<td><a target="_blank" href="https://twitter.com/yalematta/status/1304541107330658313">Layale</a></td>
|
|
59
|
+
<td>Following @eddiejaoude videos helped me a lot. You'll learn by practicing during his livestreams. Check his YouTube channel!</td>
|
|
60
|
+
</tr>
|
|
61
|
+
<tr>
|
|
62
|
+
<td><a target="_blank" href="https://twitter.com/__nawalhmw/status/1304572901140635648">Nawal Alhamwi</a></td>
|
|
63
|
+
<td>YES, CAN'T AGREE MORE!! 💯 His videos (both the content && the way he delivers information) made me love Github more!🤩 Thanks @eddiejaoude 🌟</td>
|
|
64
|
+
</tr>
|
|
65
|
+
<tr>
|
|
66
|
+
<td><a target="_blank" href="https://twitter.com/allanregush/status/1304484456221167617">Allan Regush</a></td>
|
|
67
|
+
<td>Working with @eddiejaoude and his open source community has been a positive experience. If you have been wanting to contribute to open source but don't know where to start. Come join the community.</td>
|
|
68
|
+
</tr>
|
|
69
|
+
</table>
|
|
70
|
+
|
|
71
|
+
<p>All my social links and courses in one place... https://eddiejaoude.substack.com/p/links</p>
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
{
|
|
2
|
+
"testimonials": [
|
|
3
|
+
{
|
|
4
|
+
"id": "1",
|
|
5
|
+
"user": "@SashoStoichkov",
|
|
6
|
+
"testimonial": "The power of EddieHub ... when I checked my #GitHub notifications now +9 followers and an email job offer containing the following sentence: I found your profile on GitHub",
|
|
7
|
+
"date": "24-Feb-2021",
|
|
8
|
+
"link": "https://twitter.com/eddiejaoude/status/1364720592621043718"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"id": "2",
|
|
12
|
+
"user": "@monkchips",
|
|
13
|
+
"testimonial": "y'all should follow @eddiejaoude. he puts so much positive energy into the world. love that guy. he's always trying to support other people and lift them up.",
|
|
14
|
+
"date": "24-Feb-2021",
|
|
15
|
+
"link": "https://twitter.com/monkchips/status/1364550984106717190"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "3",
|
|
19
|
+
"user": "@AhmedMuhammedG2",
|
|
20
|
+
"testimonial": "I love EddieHub :heart: my productivity level has increased now i feel more like a developer before i felt like i was forcing it now i enjoy and cherish every moment",
|
|
21
|
+
"date": "31-Jan-2021",
|
|
22
|
+
"link": "https://twitter.com/eddiejaoude/status/1356022828856987649"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": "4",
|
|
26
|
+
"user": "@urlichsanais",
|
|
27
|
+
"testimonial": "Eddie is probably the most genuine and kind person I know in tech :Smiling face with 3 hearts: providing opportunities and consistently cheering without expecting anything in return! He just recommended me for a podcast Face screaming in fear Who is your tech super-hero?",
|
|
28
|
+
"date": "13-Jan-2021",
|
|
29
|
+
"link": "https://twitter.com/urlichsanais/status/1349358736092094467"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"id": "5",
|
|
33
|
+
"user": "@yalematta",
|
|
34
|
+
"testimonial": "Following @eddiejaoude videos helped me a lot. You'll learn by practicing during his livestreams. Check his YouTube channel!",
|
|
35
|
+
"date": "11-Sept-2020",
|
|
36
|
+
"link": "https://twitter.com/yalematta/status/1304541107330658313"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "6",
|
|
40
|
+
"user": "@__nawalhmw",
|
|
41
|
+
"testimonial": "YES, CAN'T AGREE MORE!! 💯 His videos (both the content && the way he delivers information) made me love Github more! 🤩 Thanks @eddiejaoude 🌟",
|
|
42
|
+
"date": "12-Sept-2020",
|
|
43
|
+
"link": "https://twitter.com/__nawalhmw/status1304572901140635648"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"id": "7",
|
|
47
|
+
"user": "@allanregush",
|
|
48
|
+
"testimonial": "Working with @eddiejaoude and his open source community has been a positive experience. If you have been wanting to contribute to open source but don't know where to start. Come join the community.https://github.com/EddieJaoudeCom",
|
|
49
|
+
"date": "11-Sept-2020",
|
|
50
|
+
"link": "https://twitter.com/allanregus/status1304484456221167617"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"id": "8",
|
|
54
|
+
"user": "@MikeRogers0",
|
|
55
|
+
"testimonial": "The @eddiejaoude discord (https://discord.gg/m7U696) is pretty neat! Same with PHP Online (https://discord.gg/smf6cn)",
|
|
56
|
+
"date": "11-Sept-2020",
|
|
57
|
+
"link": "https://twitter.com/MikeRogers0/status/1304320638463741952"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "9",
|
|
61
|
+
"user": "Martin Woodward",
|
|
62
|
+
"testimonial": "It was indeed. Congratulations on your nomination- we are a big fan of your work here at GitHub",
|
|
63
|
+
"date": "6-July-2020",
|
|
64
|
+
"link": "https://twitter.com/eddiejaoude/status/1280063374932484097"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"id": "10",
|
|
68
|
+
"user": "@__nawalhmw",
|
|
69
|
+
"testimonial": "If there's one workspace that I'm fascinated with it's definitely @eddiejaoude! Eddie's crushing it on his Youtube channel 🔥 && he can help you with this!🌟",
|
|
70
|
+
"date": "12-Sept-2020",
|
|
71
|
+
"link": "https://twitter.com/__nawalhmw/status/1304870527018979331?s=21"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"id": "11",
|
|
75
|
+
"user": "@yalematta",
|
|
76
|
+
"testimonial": "Following @eddiejaoude videos helped me a lot. You'll learn by practicing during his livestreams. Check his YouTube channel!",
|
|
77
|
+
"date": "11-Sept-2020",
|
|
78
|
+
"link": "https://twitter.com/yalematta/status/1304541107330658313?s=21"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"id": "12",
|
|
82
|
+
"user": "Patrick Debois",
|
|
83
|
+
"testimonial": "You are an example for the whole community, keep up the good work Eddie",
|
|
84
|
+
"date": "Sept-2020",
|
|
85
|
+
"link": "https://www.linkedin.com/feed/update/urn:li:activity:6711225360224202752?commentUrn=urn%3Ali%3Acomment%3A%28activity%3A6711225360224202752%2C6711645968451829760%29%C2%A0"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"id": "13",
|
|
89
|
+
"user": "@ThatOneBugDude",
|
|
90
|
+
"testimonial": "Thanks @eddiejaoude, for making me fall in love with open source communities. You have shown me the power and a kinda ever lasting support that a community can be. Thanks again!! Peace ✌️",
|
|
91
|
+
"date": "17-Sept-2020",
|
|
92
|
+
"link": "https://twitter.com/ThatOneBugDude/status/1306631921946914816"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"id": "14",
|
|
96
|
+
"user": "Srinath",
|
|
97
|
+
"testimonial": "I have been using GitHub regularly. Thank you so much for that initial push",
|
|
98
|
+
"date": "30-Sept-2020",
|
|
99
|
+
"link": "https://twitter.com/eddiejaoude/status/1311395059728887823"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "15",
|
|
103
|
+
"user": "Darshan",
|
|
104
|
+
"testimonial": "Open Source is great! I'm learning so much about Typescript just by trying to contribute to the EddieBot repo. :)",
|
|
105
|
+
"date": "1-Oct-2020",
|
|
106
|
+
"link": "https://twitter.com/eddiejaoude/status/1311599515854610432"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"id": "16",
|
|
110
|
+
"user": "@thatanimeguy23",
|
|
111
|
+
"testimonial": "Day 89: Learning about Git and opensource from @eddiejaoude is really amusing. It really gives me immense joy to watch his live streaming and videos.",
|
|
112
|
+
"date": "3-Oct-2020",
|
|
113
|
+
"link": "https://twitter.com/thatanimeguy23/status/1312473829877321730"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": "17",
|
|
117
|
+
"user": "@_NikitaUday",
|
|
118
|
+
"testimonial": "It was incredible to listen to you speak. I was really surprised to see how humble you are. I really appreciate all the effort",
|
|
119
|
+
"date": "4-Oct-2020",
|
|
120
|
+
"link": "https://twitter.com/eddiejaoude/status/1312666272707026944"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "18",
|
|
124
|
+
"user": "@monicodesinheels",
|
|
125
|
+
"testimonial": "I made it to the top of the front page of Hacker Noon with this article. I want to thank you for helping me get to this point in confidence by supporting my writing early on. I will always remember",
|
|
126
|
+
"date": "8-Oct-2020",
|
|
127
|
+
"link": "https://twitter.com/eddiejaoude/status/1314133810968244224"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"id": "19",
|
|
131
|
+
"user": "@trimankaur1999",
|
|
132
|
+
"testimonial": "You are the Hero of my Hacktoberfest Story :)",
|
|
133
|
+
"date": "26-Oct-2020",
|
|
134
|
+
"link": "https://twitter.com/eddiejaoude/status/1320642071569534976"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"id": "20",
|
|
138
|
+
"user": "@lihautan",
|
|
139
|
+
"testimonial": "You inspired me to start my own YouTube channel :Flexed biceps:",
|
|
140
|
+
"date": "26-Nov-2020",
|
|
141
|
+
"link": "https://twitter.com/lihautan/status/1331878791287750656"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"id": "21",
|
|
145
|
+
"user": "@ja9look",
|
|
146
|
+
"testimonial": "The time when @eddiejaoude told me to stand in front of an audience of 300 people to take a photo! I was so nervous and scared - but so grateful because it's ended up being one of my favourites <3",
|
|
147
|
+
"date": "25-Nov-2020",
|
|
148
|
+
"link": "https://twitter.com/ja9look/status/1331565025841074177"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id": "22",
|
|
152
|
+
"user": "@github",
|
|
153
|
+
"testimonial": "Star of the Year at Nova 2020 is @eddiejaoude!⭐ Eddie contributes to the community through his GitHub & open source videos, inspiring current & future Stars, and providing feedback via the program! Learn more here: https://stars.github.com/profiles/eddie",
|
|
154
|
+
"date": "2-Dec-2020",
|
|
155
|
+
"link": "https://twitter.com/github/status/1333923873713233922"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"id": "23",
|
|
159
|
+
"user": "@Hrushikeshdas18",
|
|
160
|
+
"testimonial": "Awesome Eddie Jaoude",
|
|
161
|
+
"date": "30-Dec-2020",
|
|
162
|
+
"link": "https://twitter.com/eddiejaoude/status/1344406163513868289"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": "24",
|
|
166
|
+
"user": "@Vyvy_viM",
|
|
167
|
+
"testimonial": "I got this lovely feedback from @thisisryanswift on a bug-report I made for #MLHacks's news site(broken link). This made my day Nerd face. Contributing to opensource has made me give proper context to issues and ideas. (esp. thanks to @eddiejaoude and working with EddieJaoudeCommunity)",
|
|
168
|
+
"date": "9-Jan-2021",
|
|
169
|
+
"link": "https://twitter.com/Vyvy_viM/status/1348043664375877632"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"id": "25",
|
|
173
|
+
"user": "@Anita_ihuman",
|
|
174
|
+
"testimonial": "This is an appreciation tweet for @eddiejaoude Thank you Eddie for being a source of inspiration to me and many. Your consistence is remarkable 👍 👍 👍",
|
|
175
|
+
"date": "26-Jan-2021",
|
|
176
|
+
"link": "https://twitter.com/Anita_ihuman/status/1353991328607121413"
|
|
177
|
+
}
|
|
178
|
+
]
|
|
179
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mseep/eddiejaoude",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "GitHub profile for Eddie Jaoude",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"marked": "npx marked -i README.md -o index.html",
|
|
8
|
+
"start": "npx serve",
|
|
9
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/eddiejaoude/eddiejaoude.git"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"mseep",
|
|
17
|
+
"mcp-server"
|
|
18
|
+
],
|
|
19
|
+
"author": "",
|
|
20
|
+
"license": "ISC",
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/eddiejaoude/eddiejaoude/issues"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/eddiejaoude/eddiejaoude#readme",
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"marked": "^4.0.7",
|
|
27
|
+
"nodemon": "^2.0.15",
|
|
28
|
+
"serve": "^13.0.2"
|
|
29
|
+
},
|
|
30
|
+
"publisher": "mseep"
|
|
31
|
+
}
|