Skip to content
Open navbar menu
Sign UpLog In
Profile icon

Marcus Weinberger

@MarcusWeinberger
hacker and backend dev
Tampa, FL
Twitter
LinkedIn
GitHub
YouTube
Website
  • notes

    Cover page
    Made with Python
    Recent comments (0)
  • multicursor

    Cover page
    Made with Python
    Recent comments (3)
    JeremiahStein
    JeremiahStein
    1 month ago

    this is good

    DevPauloEduardo
    DevPauloEduardo
    6 months ago

    Man, that's amazing! Unfortunately, there aren't anyone chatting there... It would be better if we could draw or something like that

  • gptfree-telegram-bot

    Cover page
    Made with Python

    The power of ChatGPT via Telegram!

    To get started, simply message @GPTFree_pBot on Telegram using /start to initiate a new chat.

    Recent comments (36)
    MarcusWeinberger
    MarcusWeinberger
    7 months ago

    Why I moved to a freemium model

    Somehow, in under a month, my userbase jumped from a regular 50 users to over 1.5k, and it's starting to cost me too much. I decided to give all users 10 free responses per day - and the option to pay a one-time $1 (USD) ugprade fee. I used stripe to integrate.

    MarcusWeinberger
    MarcusWeinberger
    7 months ago

    As celebration, what features would you like to see integrated?

    DOMINATOR-XD
    DOMINATOR-XD
    7 months ago

    How to host this repel 24/7 hours online

    Emma-expert
    Emma-expert
    7 months ago

    is it possible to recreate this same project but with commands like call, otp and the likes?

    AkshatKumar6
    AkshatKumar6
    7 months ago

    Opp

    MarcusWeinberger
    MarcusWeinberger
    8 months ago

    GPT3 powered telegram bot

    Simply send a message to (@GPTFree_pBot)[https://t.me/GPTFree_pBot] on telegram with the /start command to begin a new conversation!

    Features

    • Continued conversations
    • Scrape and read content from URLs
    • Save and load up to three conversations
    • Knows the current date and time
      • and your 'first name' from Telegram
    • View summary of chat (/summary)
    • Privacy-friendly (now with added /wipe command)

    Commands

    • /help shows some help
    • /start starts a new chat
    • /save {1,2,3} saves chat to chosen slot
      • /load {1,2,3} works the opposite
    • /read <url> reads and digests scraped text from given website
    • /summary gives a summary of your chat
    • /usage shows very little usage statistics (number of chats)
    • /wipe removes all your data and chats
    DennisGG
    DennisGG
    8 months ago

    I don't see a way to flag it for incorrect information.

    MarcusWeinberger
    MarcusWeinberger
    8 months ago

    Added

    • saving and loading chats (up to 3 slots)
    • typing indicator
    • /read <url> function to scrape and digest website link

    How do I start using it?

    Download the Telegram app, or use the web client, and send /start to @ GPTFree_pBot !

    VulcanWM
    VulcanWM
    8 months ago

    nice!

    AarushMuthukri1
    AarushMuthukri1
    8 months ago

    Where can I get a telegram

  • img

    Cover page
    Made with Python
    Recent comments (9)
    coolcoder1213
    coolcoder1213
    9 months ago

    Could I get you Firebase key for a fork of this? I can't figure out how to get one on my own.

    orion0
    orion0
    2 years ago

    Can you pls tell what is creds and how to get it...

  • tiny

    Cover page
    Made with HTML, CSS, JS

    What is tiny

    Everything in a tiny site is contained within the URL bar.

    None of the contents are sent to or stored on the server!

    Instead, what you write is compressed and encoded. Tiny also supports markdown. Tiny can also be integrated in other projects to provide a "share HTML/Markdown as website link" service. Simply include the lz-string.min.js script on your website, and creating a link is as simple as:

    function createLink(title, body) {
    /* body can be text/markdown/html or a mix */
    const title_enc = encodeURI(title);
    const body_enc = LZString.compressToBase64(body);
    return `https://tiny.marcusj.tech/#${title_enc}/${body_enc}`;
    }

    I can't explain well - just try it

    Recent comments (0)
MarcusWeinberger
MarcusWeinberger
published a Repl
4 months ago
20
ReactPy Todos
ReactPy TodosSimple todo-list in python using ReactPy. ReactPy lets you create python web apps with react-like syntax and features such as use_state.
sinnerdotgg
sinnerdotgg
Hi! I found an error - if you name them the same thing e.g. "test" x3, it deletes them all at once :(3 months ago
AbhishekPathan1
AbhishekPathan1
I found an issue with this code and also suggested the solution as well PROBLEM:- 1. This code allows me to add duplicate values on the to-do list. 2. If you added the same values multiple times the CRUD operation is working on all the items. eg. If I add 'item' two times and then delete 1 value then the code deletes all the items at once. or If we do any updating any single value then all the values are updated together (duplicate values). SUGGESTED SOLUTION: - we can use the different Array functions to sort this like value.lastindexof(); or string.lastindexof(). so that, we can apply CRUD operation only on the specific index number. 3 months ago
MarcusWeinberger
MarcusWeinberger
published a Repl
6 months ago
0
langchain-tutorial
langchain-tutorialGiving tools to ChatGPT. Run the Repl to see the end result! Here's what I'll be covering: langchain basic "agent" (chatbot) setup prompt engineering using langchain tools creating custom tools (featuring an example tool to get Replit user info)
MarcusWeinberger
MarcusWeinberger
published a Repl
6 months ago
2
PythonHealingFuncCaller
PythonHealingFuncCallerCalls a function, if it errors, fixes it using GPT-4. Inspired by @amasad/HealingFuncCaller I wanted it in python. And I added a wrapper.
bigminiboss
bigminiboss
awesome sauce6 months ago
MarcusWeinberger
MarcusWeinberger
published a Repl
6 months ago
1
md-editor
md-editorMarkdown Editor This code has been taken from a previous project that me and @rafrafraf Markdown Editor is an all-in-one markdown editor designed for replit users. Features Live Markdown preview Keyboard shortcuts Buttons for General Markdown shortcuts Embedding Repls Script snippets Export as: Markdown HTML Sharable Link Exporting Use the Copy Markdown or Copy HTML button - or their respective shortcuts (Ctrl+s, Ctrl+h) - to copy valid Markdown or HTML to your clipboard! Use the Share button to get a shareable link - using my tiny html service
MarcusWeinberger
MarcusWeinberger
published a Repl
6 months ago
0
tiny
tinyWhat is tiny Everything in a tiny site is contained within the URL bar. None of the contents are sent to or stored on the server! Instead, what you write is compressed and encoded. Tiny also supports markdown. Tiny can also be integrated in other projects to provide a "share HTML/Markdown as website link" service. Simply include the lz-string.min.js script on your website, and creating a link is as simple as: function createLink(title, body) { /* body can be text/markdown/html or a mix */ const title_enc = encodeURI(title); const body_enc = LZString.compressToBase64(body); return https://tiny.marcusj.tech/#${titleenc}/${bodyenc}; } I can't explain well - just try it
MarcusWeinberger
MarcusWeinberger
published a Repl
6 months ago
0
blog
blogYet another attempt at creating a personal blog. Styling done by ChatGPT as I cannot comprehend CSS. Using python flask for the backend, and PocketBase as the DB. Included a mobile demo view courtesy of @SealT, and instant web translations thanks to xnx3's translate
MarcusWeinberger
MarcusWeinberger
published a Repl
6 months ago
0
fly-rephraser
fly-rephraserRephrase your website content on the fly, using GPT3.5. what this is This project is a starting ground - or reference. I might turn this into a flask plugin, if anyone would want that. What it does is let you build a website where the text content is re-worded (on the fly!) to better appeal to your users. how do i start building? fork this repl in repl secrets, set OPENAIAPIKEY to your api key build your web app! remove the first two lines of the /api/rephrase route DON'T CHANGE THE rephrase function, everything else can be modified or removed in your html, make sure to include a script tag pointing to /rephraser.js and call the init() function example HTML Welcome to your dashboard. init(); `
MarcusWeinberger
MarcusWeinberger
published a Repl
6 months ago
0
searchgpt-website
searchgpt-websiteA website for my new telegram bot which uses ChatGPT and can search the web (+more)! To see the bot in action, check out https://searchgpt.marcusj.tech/media and scroll down to the gif. Link to source for bot: https://replit.com/@MarcusWeinberger/SearchGPT-Telegram-Bot Since it is running off my openai credits, access is for paying users only. The price is $1/month. This repl includes the code to accept payments
MarcusWeinberger
MarcusWeinberger
published an Update
7 months ago
11
gptfree-telegram-bot
gptfree-telegram-botThe power of ChatGPT via Telegram! To get started, simply message @GPTFree_pBot on Telegram using /start to initiate a new chat.
GPTFree - Moving to a freemium service model
Why I moved to a freemium model Somehow, in under a month, my userbase jumped from a regular 50 users to over 1.5k, and it's starting to cost me too much. I decided to give all users 10 free responses per day - and the option to pay a one-time $1 (USD) ugprade fee. I used stripe to integrate.
#gpt3
#chatgpt
#TelegramBot
+2
MarcusWeinberger
MarcusWeinberger
published an Update
7 months ago
11
gptfree-telegram-bot
gptfree-telegram-botThe power of ChatGPT via Telegram! To get started, simply message @GPTFree_pBot on Telegram using /start to initiate a new chat.
GPTFree_pBot surpassed 1k users!
As celebration, what features would you like to see integrated?
MarcusWeinberger
MarcusWeinberger
published a Repl
7 months ago
0
SearchGPT
SearchGPTSearchGPT - ChatGPT with the power to search the web! After seeing Visual-ChatGPT, I understood how to properly equip ChatGPT with tools! Now it can interact with the real world, or whatever you want. Use this repl as a framework if you'd like. Capabilities Custom google search tool Custom webpage reading tool news-api integration
MarcusWeinberger
MarcusWeinberger
published a Repl
7 months ago
0
hack.chatGPT
hack.chatGPTGPT3 chatbot running on hack.chat - join here: room ChatGPTRepl Since I couldn't get group chats to work for the telegram bot, I decided to move over to hack.chat
MarcusWeinberger
MarcusWeinberger
published a Repl
7 months ago
0
blog-frontend-dev
blog-frontend-devThis is a template for a blog where posts are dynamically loaded from markdown files with configuration options. Following material design principles, the entire website design and functionality was implemented by ChatGPT - along with the example test.md blog post
MarcusWeinberger
MarcusWeinberger
published an Update
8 months ago
11
gptfree-telegram-bot
gptfree-telegram-botThe power of ChatGPT via Telegram! To get started, simply message @GPTFree_pBot on Telegram using /start to initiate a new chat.
GPTFree Telegram Bot - Update 2
GPT3 powered telegram bot Simply send a message to (@GPTFreepBot)[https://t.me/GPTFreepBot] on telegram with the /start command to begin a new conversation! Features Continued conversations Scrape and read content from URLs Save and load up to three conversations Knows the current date and time and your 'first name' from Telegram View summary of chat (/summary) Privacy-friendly (now with added /wipe command) Commands /help shows some help /start starts a new chat /save {1,2,3} saves chat to chosen slot /load {1,2,3} works the opposite /read reads and digests scraped text from given website /summary gives a summary of your chat /usage shows very little usage statistics (number of chats) /wipe removes all your data and chats
MarcusWeinberger
MarcusWeinberger
published an Update
8 months ago
11
gptfree-telegram-bot
gptfree-telegram-botThe power of ChatGPT via Telegram! To get started, simply message @GPTFree_pBot on Telegram using /start to initiate a new chat.
GPTFree Telegram Bot - Update 1
Added saving and loading chats (up to 3 slots) typing indicator /read function to scrape and digest website link How do I start using it? Download the Telegram app, or use the web client, and send /start to @ GPTFree_pBot !
MarcusWeinberger
MarcusWeinberger
published a Repl
8 months ago
0
sentiment-analysis
sentiment-analysisSentimental analysis of text using GPT3 - test it out via the website or implement it directly with an API
MarcusWeinberger
MarcusWeinberger
published a Repl
8 months ago
11
gptfree-telegram-bot
gptfree-telegram-botThe power of ChatGPT via Telegram! To get started, simply message @GPTFree_pBot on Telegram using /start to initiate a new chat.
DOMINATOR-XD
DOMINATOR-XD
How to host this repel 24/7 hours online7 months ago
MarcusWeinberger
MarcusWeinberger
As celebration, what features would you like to see integrated?7 months ago
MarcusWeinberger
MarcusWeinberger
published a Repl
8 months ago
7
srcmovies
srcmoviesBasic interface for browsing movies on imdb with sources from vidsrc. View the website on static host: https://srcmovies.marcusj.tech
RaymondLeonard1
RaymondLeonard1
lol8 months ago
GavinKIRK2
GavinKIRK2
i don't work8 months ago
MarcusWeinberger
MarcusWeinberger
published an Update
11 months ago
1
GDBD
GDBDGood day Bad day Tally all the good and bad throughout your day and look through your records over time
GDBD 3.0 - now with Google auth
Notable updates: Sign in page login with replit or Google Export/delete user data in settings Added timestamps to messages so they are now in order lol
MarcusWeinberger
MarcusWeinberger
published a Repl
11 months ago
0
mjanalytics
mjanalyticsre-upload of dupl analytics (a free and open-source minimal analytics tool) since it was shutdown for a while. Most of the logos and stuff have not been changed, but if any functionality is broken please let me know. The majority of this code was written by @rafrafraf, my old coding buddy who is busy fighting for his country. The code has been very slightly modified by meto make it work again although not all of it may be functional. I've had to migrate database host, and sadly the new host is signifigantly slower. How to use Simple include a script tag in your html (with the defer attribute, as to not slow down the loading of your site) with our script, and visits will begin to be collected! Then, to view analytics for your site simply enter your domain into our search bar! (Or visit https://analytics.marcusj.tech/your-website.your-username.repl.co)
MarcusWeinberger
MarcusWeinberger
Here is an old demo gif I found: https://imgur.com/sknPHPC11 months ago
CosmicBear
CosmicBear
i had just commented on the original repl when i saw this. 9 months ago