typescript emoji

Posts tagged with :typescript:

ajhalili2006
@ajhalili20060
Let's do a quick showdown of what's been cooking for #C07NUNPGEU8| during the week of September 22 to 28, Philippines Standard Time. Apologies if this week's been a hell week due to being the 1st quarterly exam on the 25th and 26th day of September, 2024. The bulk of the coding hours in the week are dedicated to building the MVP features for the Slack app version of Recap Time Bot, our multi-purpose toolkit/service account/bot for Recap Time Squad's projects and friends, including hooking up Prisma ORM for Postgres data presistence on Nest (instead of coping up with the Airtable free tier limits) and building up some workflows via TypeScript Slack app development work (permission requests for accessing some bot features and slash commands). See the attached screenshots for a sneak peek. The rest is mostly infrastructure related work for both my personal and Recap Time Squad cloud resources (mainly Cloudflare DNS records over octoDNS and some Docker Compose shenanigans), plus some behind the scenes work for my website powered by Material for Mkdocs theme. Overall, I banked 10h 11m as of time of writing (up to the publication of this scrapbook entry), totaling to 14h 46m since September 17 (plus 10m designing for fun and profit) without the 'browsing' hours. See the thread for details on the stats.
https://scrapbook-into-the-redwoods.s3.us-east-1.amazonaws.com/42868358-9e1a-44cd-a1eb-63c140527596-image.pnghttps://scrapbook-into-the-redwoods.s3.us-east-1.amazonaws.com/fe27f75f-1a8f-4bbc-b416-5121474ab819-image.pnghttps://scrapbook-into-the-redwoods.s3.us-east-1.amazonaws.com/9fb249a7-6d12-4c11-b26c-a539f31071f2-image.pnghttps://imgutil.s3.us-east-2.amazonaws.com/4df45aa9d4c307b39f2215abf91496310c4ffe8e9189185a7183d96796688cdb/711a42ca-beed-4cf5-bec7-0a0a5bfd6816.png
SkyfallWasTaken
@SkyfallWasTaken0
created #C07NZ6BFEEM|, my first ever slackbot! it uses bolt and typescript, and is hosted on nest :)
https://scrapbook-into-the-redwoods.s3.us-east-1.amazonaws.com/d9d8daf2-b611-44ee-92bb-33ba7566f7f4-image.png
typescript emoji
EvanGan
@EvanGan0
Today I put my pronoun counter on github after cleaning up the code a bit and writing some instructions up. You can find it here. I also started working on a slack bot template for typescript but faced some odd errors I had never seen before that were not happening on a copy of the code.
https://scrapbook-into-the-redwoods.s3.us-east-1.amazonaws.com/63e90ff2-5ce8-4ed6-b01b-18492a5977eb-screenshot_2024-09-22_at_7.17.52___pm.pnghttps://imgutil.s3.us-east-2.amazonaws.com/87402aa2f02ae7be575b130cb7b243a5621d397e51f630192be7c66aafc87179/c94a9313-950f-41d3-99b7-8de7da3de83c.png
FelixGao
@FelixGao0
Day 3/10 of <#C07NUNPGEU8|>! Today I finished most of the URL shortener's small things :). URLs are now scanned for malware before they are shortened. I'm getting started on a QR code generator :yay:! So far I have the basic generation done (I might have to swap the library for more features :heavysob:). Slightly #C02EXAC2WR0| but oh well (I promise it will look better, also gonna be hack club themed cause that's gonna give me an excuse to try out this typescript + next.js idk thing lol) url.felixgao.dev for the URL shortener, QR code generator isn't live yet ):, coming soon ™️!
https://scrapbook-into-the-redwoods.s3.us-east-1.amazonaws.com/a91e69da-146c-423a-aa33-5091ce952903-image.png
summer-of-making emoji
js emoji
goose-honk-technologist emoji
typescript emoji
yay emoji
nextjs emoji
hackclub emoji
YeGao
@YeGao2
https://scrapbook-into-the-redwoods.s3.us-east-1.amazonaws.com/0ebc73a5-7fda-4244-90ec-4ff5ef6f3aa7-image.pnghttps://scrapbook-into-the-redwoods.s3.us-east-1.amazonaws.com/2a667757-9ad0-4c0b-8e9f-287ca036fb7a-image.png
summer-of-making emoji
github emoji
typescript emoji
LuisAFK
@LuisAFK0
Working on tsre, a JavaScript and TypeScript reverse engineering tool. It uses Putout to parse the JavaScript, and then feeds it bit by bit into AI to guess identifier names automatically! Currently, it is able to turn this:
function y(b){return(b-32)*5/9}function z(b){return b*9/5+32}function A(b){return b-273.15}function B(b){return b+273.15}for await(let b of console){if(!b||b==="exit")break;const[,q,w,x]=b.match(/(\d+(?:\.\d+)?)\s*([fkc])\s*(?:in|to)\s*([fkc])/i)||[];if(!q||!w||!x){console.log("Invalid input");continue}const j=parseFloat(q);let g;switch(w.toLowerCase()+x.toLowerCase()){case"fc":g=y(j);break;case"cf":g=z(j);break;case"kc":g=A(j);break;case"ck":g=B(j);break;default:console.log("Invalid conversion");continue}console.log(g)}
Into this:

function convertFahrenheitToCelsius(fahrenheitTemperature) {
  return ((fahrenheitTemperature - 32) * 5) / 9;
}

function convertCelsiusToFahrenheit(celsiusTemperature) {
  return (celsiusTemperature * 9) / 5 + 32;
}

function convertKelvinToCelsius(kelvinTemperature) {
  return kelvinTemperature - 273.15;
}

function convertCelsiusToKelvin(celsiusTemperature) {
  return celsiusTemperature + 273.15;
}

for await (let consoleLogEntries of console) {
  if (!consoleLogEntries || consoleLogEntries === "exit") break;

  const [, temperatureValue, matchedTemperatureValue, matchedTemperature] =
    consoleLogEntries.match(
      /(\d+(?:\.\d+)?)\s*([fkc])\s*(?:in|to)\s*([fkc])/i,
    ) || [];

  if (!temperatureValue || !matchedTemperatureValue || !matchedTemperature) {
    console.log("Invalid input");
    continue;
  }

  const parsedTemperature = parseFloat(temperatureValue);
  let g;

  switch (
    matchedTemperatureValue.toLowerCase() + matchedTemperature.toLowerCase()
  ) {
    case "fc":
      g = convertFahrenheitToCelsius(parsedTemperature);
      break;

    case "cf":
      g = convertCelsiusToFahrenheit(parsedTemperature);
      break;

    case "kc":
      g = convertKelvinToCelsius(parsedTemperature);
      break;

    case "ck":
      g = convertCelsiusToKelvin(parsedTemperature);
      break;

    default:
      console.log("Invalid conversion");
      continue;
  }

  console.log(g);
}
https://imgutil.s3.us-east-2.amazonaws.com/135434332e2d0cf433bb2cbf0dd8901ab6d8543a0c1b6f63498fd2ad5e6d5e0c/9fdc25ff-8ec7-4ee8-ac70-e7add45ac7ce.png
typescript emoji
github emoji
summer-of-making emoji
js emoji
idksarah
@idksarah0
small updates to songify, which finds a random song based off of artist or can find a specific song based off a title. updated js to typescript and dealt with some small bugs ^^ github.com/idksarah/Songify
https://scrapbook-into-the-redwoods.s3.amazonaws.com/f21a0062-6bbe-490d-937e-92185d01cee6-image.pnghttps://imgutil.s3.us-east-2.amazonaws.com/c9126a8c37a9417413c5c2973ad2ddf58b50c9b7a3558ea8a8e1acabdb9d6be2/5059ab8f-7a7c-4e97-9c1f-0c7aa55b960d.png
typescript emoji
js emoji
summer-of-making emoji
github emoji
tobycm
@tobycm0
https://imgutil.s3.us-east-2.amazonaws.com/fef5b3094ee7fed1add8945ad952de6f6ea783075b81e67ba33f8ccf1b4f4246/fdd7ecfe-84e0-4fa8-92de-25491100bfb9.png
BlackShade
@BlackShade0
https://imgutil.s3.us-east-2.amazonaws.com/1e9c731518437c706eca9f0e20598e3e15615ac2ad69ccbf24deb9d7becd8b8d/e6d95a9b-720c-4e30-b91e-7ba253c1a3d8.png
typescript emoji
summer-of-making emoji
github emoji
RyanLi
@RyanLi0
https://scrapbook-into-the-redwoods.s3.amazonaws.com/04f5e77e-c809-414f-b1bc-6f027a6c6966-image.pnghttps://imgutil.s3.us-east-2.amazonaws.com/d0ebd54bd5f58e4089a537ebc3abd9a17b2cb292fceaafb6766cc5ca097b4aaa/395124ef-ad4d-435c-b528-98ae8364ec95.png
typescript emoji
summer-of-making emoji
slack emoji
github emoji
Victorio
@Victorio0
Only Once This is a little slack-game?? kinda, its a bot that controls a channel, in the channel anyone can join through #C07JGDNQ91U| to be added to the private channel, there if you send a message someone else has sent before or above 300 characters, youll get banned. It uses an sqlite database and boltjs on typescript. Also theres a logs channel #C07JQF74HQT|. It's hosted on Nest. You can try it now in #C07JGDNQ91U| github.com/v1ctorio/slack-only-once
https://scrapbook-into-the-redwoods.s3.amazonaws.com/78b56643-5eaa-49a9-8480-5c3a720cdae4-image.pnghttps://imgutil.s3.us-east-2.amazonaws.com/ce6f407b326a33e60d2e27601f07ac2ba4703a9d2baaf17c590ecd9dc32a79bb/ef6f485c-f7cb-4653-b4e3-225848c8a53c.png
Jignesh
@Jignesh0
I completed my project CodeSync- which is a collaborative realtime online code editor made with react,typescript and (one of my fav things) websockets, monaco-editor(for nice and clean editor) As this app heavily uses web sockets, we cannot deploy this on services which use serverless architecture( got to know via stackoverflow) as websockets need fullduplex connection present all the time , hence I used render to deploy this app Github: github.com/jignesh119/CodeSync Live Url: codesync-yim8.onrender.com if the app is down or websockets fail, I strongly suggest u set this app locally following readme to see apps full features try out the app, ping me when the deployment is down, render does that to save resources, as I'm using free plan
https://imgutil.s3.us-east-2.amazonaws.com/a7b3d20d677496f7e1da0881d47ff226322b5861b71682a2ccd9e3b80ba130a4/1ddb2402-3125-46e0-b472-4191940e4c26.png
typescript emoji
goose-honk-technologist emoji
summer-of-making emoji
react emoji
github emoji
CarlosLorenzo
@CarlosLorenzo0
FORMUFLASH I made a flashcard app aimed at spanish-speaking STEM students supporting LaTeX and Markdown (also images) syntax allowing complete control over the appearance and content of flashcards. The content is writen in Spanish as I aim to promote it and gain a userbase and the Spanish market was nonexistent (sorry english speakers, you will need google translate). Made with a django-rest backend with postgreSQL, react ts frontend and nginx as a reverse proxy. It (django and nginx )has been deployed to as individual serverless containers to gcp cloud run, it is then managed by a load balancer. This was started before I joined arcade (it has taken waaaay more hours than hours im submiting) You can access it through formuflash.com, formuflash.com(if I don't have SSL setup) (or formuflash-frontend-qkflfm2o5q-no.a.run.app, if the first link doesn't work, I don't have the domain setup yet,). To save on costs it is deployed as on demand so it might take 5-10 seconds for it to boot up. You can check the code out at: github.com/carlos-lorenzo/formuflash
https://scrapbook-into-the-redwoods.s3.amazonaws.com/0b09ff6a-e0ed-40a9-90ad-ee2f32d6b057-image.pnghttps://imgutil.s3.us-east-2.amazonaws.com/d73a4e57d8fda2a944b29b424d12c02ffdf8b77f589ec99b4fdb4465c1633289/024dc81c-0014-4548-8ad9-e3ab7003bb78.png
google emoji
goose-honk-technologist emoji
github emoji
summer-of-making emoji
react emoji
typescript emoji
ajhalili2006
@ajhalili20060
I am actually rewriting the entire codebase for dotenv-tools CLI in TypeScript on Deno and even moved into its own repository under Recap Time Squad after a month of hiatus (well school and other things in a nutshell for those who asked). I bet I'll be working on this after Arcade to make sure it's at least I do config parsing and other stuff. Sneak around mau.dev/recaptime-dev/dotenv-tools (also mirroring on GitHub at github.com/recaptime-dev/dotenv-tools) for install docs and feel free to send patches. 🙂
https://imgutil.s3.us-east-2.amazonaws.com/b3d2c3c7dbcb19043601c7a331656cb4c55f6b7bfe5648bfaacc6b2e82579acc/82ba01ee-f9c0-4030-9dff-e2225a72f6ae.png
tobycm
@tobycm0
Feature-rich Discord.js bot with TypeScript: • Customizable Prefixes: Tailor the bot's command prefix for each server. • Hybrid Commands: Support for various command types with built-in permission handling. • Easy Slash Command Deployment: Quickly deploy slash commands with minimal setup. github.com/tobycm/typescript-discord-bot-template
https://imgutil.s3.us-east-2.amazonaws.com/2f6bc88353f8855202022dc1e224445dab45f6eba5212116c2926dd44d0f0ccd/610f1885-7dc9-4764-8299-ec457c352960.png
qualk
@qualk0
https://imgutil.s3.us-east-2.amazonaws.com/7c23760917071261722699f32030aa13db82981c336a6bdfac194a046dd21c0d/c024474d-f4d0-4c52-baed-b6de3317b00d.png
summer-of-making emoji
github emoji
typescript emoji
svelte emoji
KeremSemiz
@KeremSemiz0
https://imgutil.s3.us-east-2.amazonaws.com/8bdf5646892cfa7bd05b0d4087eb1dbf45c83f262104affb688c9f7ee3470a0d/beb398fb-e9d3-487f-bedc-291764321f5b.png
github emoji
typescript emoji
summer-of-making emoji
retrooperpersonal
@retrooperpersonal0
Hey, I've made a site for my project called PacketEvents using Typescript & React. I've added to the landing page & embarked some work on subpages such as a FAQ & a Blog page: github.com/retrooper/packetevents-site
https://scrapbook-into-the-redwoods.s3.amazonaws.com/5e02978e-4071-415b-b4c4-0a1d2f01730a-image.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/6dd53df8-5a7c-4f4c-8ead-a9cfc8a459b6-image.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/11215553-1479-46e8-83eb-9210ad2b5638-image.pnghttps://imgutil.s3.us-east-2.amazonaws.com/7953c240392eb8d2b542811c169fc272d5dd75621eccd3b58276871744adfdbb/6ec9918d-ad64-4ebd-9e8a-d7284b9386fd.png
react emoji
summer-of-making emoji
github emoji
typescript emoji
Craze
@Craze0
In the past 2 days I finished: Storing the document from the frontend to the backend Improving the toolbar functionality Writing contributor guidelines and setting up auto formatting for the repository This is for my website SciBind, a Next.js website made with Typescript and Tailwind CSS combined with a Django/Python backend/database. This is a website to make it easier for Science Olympiad students to make binders/cheat sheets with all sorts of features at their hands, and I have opened it up to community contribution. Here is the link to the repo: github.com/CrazeXD/SciBind !
https://imgutil.s3.us-east-2.amazonaws.com/e45d0ca2c8f63ca1645808ca817e81ec0dbe11f848c996d0ece87f18c466bd14/d61e6b6a-c49c-4209-bbf9-5b0e54c6fa7a.png
typescript emoji
nextjs emoji
tailwind emoji
github emoji
summer-of-making emoji
js emoji
python emoji
Infinity-U05ENRPCP7G
@Infinity-U05ENRPCP7G0
Printed out the gyomei axe i was working on (ts hella big). My friend needed it for cosplay but we couldnt get the costume in time
https://scrapbook-into-the-redwoods.s3.amazonaws.com/580aa68e-c2d7-4ef7-ae6a-e4f1435b575d-1000034578.jpg
summer-of-making emoji
typescript emoji
Nikhil-U079JUC2FKR
@Nikhil-U079JUC2FKR0
Hey everyone, I think I’ve reached a point in my game jam that I consider a checkpoint. I have fully implemented character motion, added enemies, and implemented a functioning mini-map, and camera following. It has taken me a while to get this far, but I learned a lot of web dev skills, and understood how beneficial typescript is for creating something as complex as what I’m designing. Here’s a quick demo
KadenFrisk
@KadenFrisk0
Made a moderation bot for discord with discordjs and typescript :P
https://scrapbook-into-the-redwoods.s3.amazonaws.com/a569c78d-2d26-4eb6-846b-555717de4ba9-image.png
qualk
@qualk0
https://imgutil.s3.us-east-2.amazonaws.com/58aed22fbe455e7a8c019e76be948fe21ef2c03c0d0a5852286299809226236f/02c79ba3-ca1b-4f49-b387-30ef3d50b161.png
github emoji
summer-of-making emoji
typescript emoji
tailwind emoji
Podter
@Podter0
https://imgutil.s3.us-east-2.amazonaws.com/eab8c8fd47b9f53d44bd66bcbb2c2eaa75842325495b6d4564dbded55c1dc3cf/ef61e924-fdf3-4ad9-a0ae-23f260245bde.png
summer-of-making emoji
github emoji
typescript emoji
react emoji
Stefan
@Stefan0
I made an 'embed generator' in astro.js and typescript. The embed generator can generate embeds for Slack, Discord, and WhatsApp, through a simple YouTube or TikTok link. Will probably add some more in the future! Repo: github.com/Naainz/Embed-Gen
https://scrapbook-into-the-redwoods.s3.amazonaws.com/9d141a9f-7a3d-4e10-a940-97170c07ff46-screenshot_2024-08-10_at_6.28.32___pm.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/a0bd9dec-0a0f-4d42-aae2-2405ed493cbd-screenshot_2024-08-10_at_6.30.44___pm.pnghttps://imgutil.s3.us-east-2.amazonaws.com/ee263045871aac5bc387e5165eacab4bb0d9e87298017c2f09cf03244ed4578c/fc91470a-70ad-48a7-9535-a6bed8c452f8.png
summer-of-making emoji
typescript emoji
js emoji
slack emoji
github emoji
discord emoji
Sigfredo
@Sigfredo0
https://imgutil.s3.us-east-2.amazonaws.com/2482814227fb4a53ce60cccd4516558593b31358706cb14c222c5de6c3977284/2fb93b32-aa86-4903-b015-a57f9d9f64d1.png
sprig-dino emoji
summer-of-making emoji
npm emoji
github emoji
vsc emoji
typescript emoji
SomeRamsey
@SomeRamsey0
https://imgutil.s3.us-east-2.amazonaws.com/dc06493df69524b03281039ba57e8b2fa06763b09118c38eb86d81e45c9fa61f/374d5c0a-1e91-4ef1-9ef2-51e46f83f77f.png
summer-of-making emoji
typescript emoji
github emoji
SkyfallWasTaken
@SkyfallWasTaken0
https://imgutil.s3.us-east-2.amazonaws.com/6cb740fcd6e3dc4472652ae2d11676f8f10b14843fb9d9f83ab4e8b96eefa7e9/a12da463-9085-4d4f-9a78-5c39b722c7a9.png
Henrique
@Henrique0
Hi! I made a User management system, a simple project I used Node.js and Typescript to develop the API, and the front-end was developed with Reactjs and Vite.js. Github repository or Live project
https://imgutil.s3.us-east-2.amazonaws.com/f9fde4493e59f2e8be1fe11fb8a058d801d9215f63e1db0bb646b0c71c549c80/2242ada9-a24d-426d-8845-0b052ad761e2.png
js emoji
typescript emoji
github emoji
summer-of-making emoji
react emoji
Coral
@Coral0
finished a drawing of taylor swift at the 2023 grammys; the purpose of this art piece was mainly to get practice drawing people. repo: github.com/coraljellyfish/art-ts
https://scrapbook-into-the-redwoods.s3.amazonaws.com/882de74f-065f-44ae-81fe-9703437c94d0-img_1590.pnghttps://imgutil.s3.us-east-2.amazonaws.com/592f53d2b8731156847cbd4e3e512ff48b416504844cc08f9299e691940b6119/fc0260b7-eafc-4586-9ef9-9416f30a048d.png
grimsteel
@grimsteel0
I rewrote my inter computer messaging application (basically lightweight chat but optimized for quickly copying things between computers) in rust and typescript, and packaged it up into a container image on the Github container registry: github.com/grimsteel/send-to-computer
https://imgutil.s3.us-east-2.amazonaws.com/fdc9d8311d6b77fe9129fafa5689294a5fb337df9b76b6c81825c83bdccb4fbe/edb2c775-0443-4cfb-a662-292dd8dc4198.png
summer-of-making emoji
typescript emoji
rustlang emoji
github emoji
NikoPurdie
@NikoPurdie0
This discord bot was for the discord server RepTronics. It was created as a way for buyers to decide what chip they should get, give links and contact details for sellers, and small other things, like it's ability to load cogs that can do various things, and the /ts survey. Took a while to get right, and I'm thankful I'm finally done so I can sleep haha 💤 ps: if you want to see the bot in action, go to the RepTronics discord server (bot deployed, just need to unprivate the bot commands channel! github.com/N1k0s1/RepTronics-Discord-Bot
https://imgutil.s3.us-east-2.amazonaws.com/0480919e9b45f39f7acc5ee689267ce9c1a4ddf12d747dc55e1b0464023da3c6/b0c8e73a-d219-4406-be4e-65be02eb2d22.png
Henri
@Henri0
My portfolio I was able to finish my new portfolio remake. This project was done with nextjs, content-collections, typescript and sugar-high. You can see the ready product here: henri.gg. I hope you all like this project, it took some time but is now a lot better than the old one. Please note, that this project it not ready for phones. Here is the GitHub link: github.com/i-am-henri/henri and this is the preview: (The image of the guy is for now only a stock foto)
https://imgutil.s3.us-east-2.amazonaws.com/d1e0b9d59de71cf9cf26354d0bd1a2d476670f096d1e5c20f35793642d3a466e/e1cbd229-4fc0-4017-9f30-b0722c7c9f0b.png
nextjs emoji
summer-of-making emoji
typescript emoji
github emoji
Craze
@Craze0
Today, I (mostly) finished the event selection logic behind my Science Olympiad Binder/Cheatsheet creation website, SciBind. I am building this project in Next.js and Django (Python), with TypeScript, TailwindCSS, DaisyUI, and more. The event selection logic allows students to select which events they are participating in, and an object will appear in the database for the allowed materials. Repo: github.com/CrazeXD/Scioly-Binder-Software
https://imgutil.s3.us-east-2.amazonaws.com/febcb6147168f38ec6f66c31f2a7825f96dd7046f9ac65275d77f044c85d65cc/b22fdb55-cfa6-4b6a-b9b7-0d1e758fad8e.png
python emoji
summer-of-making emoji
typescript emoji
tailwind emoji
js emoji
github emoji
nextjs emoji
rayhanadev
@rayhanadev0
created a project which dynamically writes your resume in bun + typescript! :D this could fetch information from an external site and add that to your resume (e.g. number of git repos and stuff) github.com/rayhanadev/dyno-resume/tree/main
https://imgutil.s3.us-east-2.amazonaws.com/2360c6d5219c4b60b2a43edd1b20f709e3f994a0ef17e3fa43a84d820b74c540/38a2f4a5-0166-481d-a738-4209629ebdc9.png
summer-of-making emoji
typescript emoji
github emoji
rayhanadev
@rayhanadev0
https://imgutil.s3.us-east-2.amazonaws.com/8f0a37e56456b83fa64d87619a3055762e10eedf6f7587db81d5f859683263b5/192e6908-318e-4552-9e50-c8e2bca7605d.png
rustlang emoji
typescript emoji
github emoji
summer-of-making emoji
unsignd
@unsignd0
https://imgutil.s3.us-east-2.amazonaws.com/3f61796d5ba009937ea9056be94ed030b1724f5b3f5f0fb3b73e1486540042b5/cb148c3a-02dd-4ae7-8626-b31afd2eb80d.png
vercel emoji
github emoji
react emoji
summer-of-making emoji
slack emoji
typescript emoji
unsignd
@unsignd0
https://imgutil.s3.us-east-2.amazonaws.com/3f61796d5ba009937ea9056be94ed030b1724f5b3f5f0fb3b73e1486540042b5/34cdf71b-64a7-4c97-bcd5-c27961b304a6.png
typescript emoji
summer-of-making emoji
vercel emoji
github emoji
slack emoji
react emoji
unsignd
@unsignd0
github.com/unsignd/uuuui uuuui.vercel.app I made an open-source React Typescript component library (it's my part THREE scrapbook because i worked on 100+ sessions for this project, but I didnt know that I have to upload my ongoing project in scrapbook every 3-4 sessions. hackclub.slack.com/archives/C077TSWKER0/p1719971969854009) 6/25 - manage backend system for deploying web service's backend 6/25 - enabling auth and connect the db on my server via ssh 6/25 - enabling auth and connect the db on my server via ssh IGNORE THESE THREE PLEASE. SORRY FOR ADDING SESSIONS NOT RELATED TO THE PROJECT
https://imgutil.s3.us-east-2.amazonaws.com/3f61796d5ba009937ea9056be94ed030b1724f5b3f5f0fb3b73e1486540042b5/1654f9b3-ba0b-42b0-a887-5b60ff2561dc.png
summer-of-making emoji
github emoji
vercel emoji
typescript emoji
slack emoji
react emoji
unsignd
@unsignd0
https://imgutil.s3.us-east-2.amazonaws.com/3f61796d5ba009937ea9056be94ed030b1724f5b3f5f0fb3b73e1486540042b5/9ff6df7a-c9ef-4e66-aed2-3798662ff995.png
typescript emoji
slack emoji
github emoji
vercel emoji
summer-of-making emoji
react emoji
unsignd
@unsignd0
https://imgutil.s3.us-east-2.amazonaws.com/3f61796d5ba009937ea9056be94ed030b1724f5b3f5f0fb3b73e1486540042b5/cfc9337c-cf55-401b-9645-6d247b41ee31.png
github emoji
vercel emoji
typescript emoji
react emoji
summer-of-making emoji
PhyoTP
@PhyoTP0
https://imgutil.s3.us-east-2.amazonaws.com/3f32339f4c17b3af36f13f0d16414ad089deea3bfd249b87bdf94d9ae48b9c2e/49debd4d-2a6b-42c3-8cc9-cb89fcfdc8c5.png
summer-of-making emoji
typescript emoji
github emoji
MihaiGorunescu
@MihaiGorunescu0
i have made a simple web app, where the cook can make a shaworma and the users can buy it. It's a simple web app made for fun, it's the first version, and i hope i can improve it in the future. Github: github.com/mihai888nextlab/tema-shaorma-razvanel The project is made with Next.js. I also used typescript and tailwindcss.
https://scrapbook-into-the-redwoods.s3.amazonaws.com/5d084ded-6d58-4141-a590-accd4c779747-image.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/5013221b-bc4d-46b4-aee0-c03cba396726-image.pnghttps://imgutil.s3.us-east-2.amazonaws.com/d73a4e57d8fda2a944b29b424d12c02ffdf8b77f589ec99b4fdb4465c1633289/9501ef26-baaf-4b33-ad87-10bb371ee9d1.png
js emoji
nextjs emoji
summer-of-making emoji
pan_with_egg emoji
github emoji
typescript emoji
tailwind emoji
Mirrreeek
@Mirrreeek0
Made a simple Sprig RPG in TypeScript called Sprig Dungeons (very original, I know). It's available to play online at the Sprig gallery.
https://imgutil.s3.us-east-2.amazonaws.com/e05c48f1970288c4d4291e878cb3f688814742a78d194a8c78c56075b82be43e/13144905-4b7e-4b10-8603-e51f79386a00.png
github emoji
sprig-dino emoji
typescript emoji
summer-of-making emoji
VibhuSiddha
@VibhuSiddha0
https://imgutil.s3.us-east-2.amazonaws.com/33b2612a7c6a29db6b2e28b6cf2081dd491add6e849babcba71d0215024c6d48/9e4711ec-f940-4575-8af9-7fee3a61ea9f.png
nextjs emoji
summer-of-making emoji
vercel emoji
typescript emoji
js emoji
github emoji
ajhalili2006
@ajhalili20060
https://imgutil.s3.us-east-2.amazonaws.com/3b6e7980a59602b3fb99faa76a79789d31d9bda2b7f8b41a8b76ab2bfa6a1eb6/22346da9-e5dd-4a32-b92b-3aaec064d825.png
prisma emoji
typescript emoji
summer-of-making emoji
github emoji
Angad
@Angad0
I built my first TypeScript project, a Slack bot that can export and mirror Docker images. I made it for mirroring images to a registry I set up on the Boreal Express server. slashtechno/ts-bot • Clone an image to the private registry with /clone-docker-image &lt;image&gt; ◦ Example: /clone-docker-image library/hello-world:latest • Export an image to the export directory with /clone-docker-image &lt;image&gt; ◦ Example: /export-docker-image library/hello-world:latest
https://scrapbook-into-the-redwoods.s3.amazonaws.com/98f182fc-a67b-4ebd-87e5-57c6ec74cf50-image.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/5e8f47a4-b495-466d-869b-2d2aa5960ba2-image.pnghttps://imgutil.s3.us-east-2.amazonaws.com/3de0d43ea82eec29aabb636b6838875d7101015d060cca76b61a5a62f77f69c9/8d51b4e7-c472-4052-bd42-c273e7c54098.png
BrandonKirbyson
@BrandonKirbyson0
Flexi is a web app made with SvelteKit and Supabase designed for a school to manage flex periods and share opportunities with students. It aims to make the process of signing up for flex classes easier for both students and teachers, removing the unnecessary and incredibly time-consuming process currently associated with the current outdated and costly system. It also allows for school-wide announcements and featured flex opportunities to be shared with students. Flexi is still in active development, here is the link: github.com/BrandonKirbyson/Flexi
https://imgutil.s3.us-east-2.amazonaws.com/d73a4e57d8fda2a944b29b424d12c02ffdf8b77f589ec99b4fdb4465c1633289/c2af3a49-2253-43cc-af10-72be9d37ba8b.png