Skip to content

Instantly share code, notes, and snippets.

View eladcandroid's full-sized avatar

Elad Cohen eladcandroid

  • Web & Android Full Stack Developer
  • Israel
View GitHub Profile
@eladcandroid
eladcandroid / ROADMAP.md
Last active April 21, 2025 18:54
ROADMAP.md

Getting Started

Description

Model Context Protocol (MCP) is a standardized protocol for connecting AI agents to various external tools and data sources. Imagine it as a USB-C interface - but for AI applications.

Just like USB-C simplifies the way different devices connect to a computer, MCP simplifies the way AI models interact with data, tools, and services.

MCP Diagrams

https://www.claudemcp.com/images/blog/what-is-mcp.png

@eladcandroid
eladcandroid / gist:74676c61fc4ae5ac0faf28149db45622
Created March 20, 2025 09:01
6.3.25-claude-with-superpowers-ROADMAP.md
## Getting Started
### Open the configuration file
```console
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
```
```console
code %APPDATA%\Claude\claude_desktop_config.json
```
@eladcandroid
eladcandroid / products.ts
Created October 19, 2020 13:03
Angular Tutorial products.ts
export const products = [
{
name: 'Phone XL',
price: 799,
description: 'A large phone with one of the best screens'
},
{
name: 'Phone Mini',
price: 699,
description: 'A great phone with one of the best cameras'
@eladcandroid
eladcandroid / styles.scss
Created October 19, 2020 12:56
Angular Tutorial styles.scss
/* Global Styles */
* {
font-family: "Roboto", Arial, sans-serif;
color: #616161;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@eladcandroid
eladcandroid / vanillaReduxFinal.html
Last active April 16, 2020 10:54 — forked from Arieg419/vanillaReduxFinal.html
Refactor to arrow functions
<!DOCTYPE html>
<html>
<head>
<title>GoCode</title>
<script src="https://unpkg.com/redux@latest/dist/redux.min.js"></script>
</head>
<body>
<div>
<p>
Counter: <span id="value">0</span> times
@eladcandroid
eladcandroid / Default.vue
Last active February 24, 2020 12:52
Gridsome Workshop - Part 2
<template>
<div class="layout bg-gray-200 font-sans leading-normal tracking-normal">
<div
class="w-full m-0 p-0 bg-cover bg-bottom"
style="background-image:url('/cover.jpg'); height: 40vh; max-height:260px;"
>
<div
class="container max-w-4xl mx-auto pt-16 md:pt-15 text-center break-normal"
>
<!--Title-->
@eladcandroid
eladcandroid / Default.vue
Last active February 24, 2020 11:38
Gridsome Workshop - Part 1
<template>
<div class="layout bg-gray-200 font-sans leading-normal tracking-normal">
<div
class="w-full m-0 p-0 bg-cover bg-bottom"
style="background-image:url('/cover.jpg'); height: 40vh; max-height:260px;"
>
<div
class="container max-w-4xl mx-auto pt-16 md:pt-15 text-center break-normal"
>
<!--Title-->
@eladcandroid
eladcandroid / Counter.vue
Created August 2, 2019 10:29
Vue 3 Function API Basic Example
<template>
<div>
<span>count is {{ count }}</span>
<span>plusOne is {{ plusOne }}</span>
<button @click="increment">count++</button>
</div>
</template>
<script>
import { value, computed, watch, onMounted } from 'vue'
@eladcandroid
eladcandroid / decomposedSetupComponent.vue
Last active September 4, 2019 10:03 — forked from enkot/decomposedSetupComponent.vue
Change to Vue Composition Api
// ...
<script>
import {
ref,
watch,
computed,
onMounted,
onUnmounted
} from '@vue/composition-api'
import { fetchUserPosts } from '@/api'
// ...
<script>
import {
value,
watch,
computed,
onMounted,
onUnmounted
} from 'vue-function-api'
import { fetchUserPosts } from '@/api'