Skip to content
Open navbar menu
Sign UpLog In
Profile icon

Sai Samhith Kota

@sammightyt
CEO and Founder of The Onke Alliance
GitHub
  • Calendar

    Cover page
    Made with HTML, CSS, JS
    Recent comments (0)
  • Scientific Calc

    Cover page
    Made with HTML, CSS, JS
    Recent comments (0)
  • Google

    Cover page
    Made with HTML, CSS, JS

    A google recreation

    Recent comments (8)
    MorganDorsey1
    MorganDorsey1
    4 months ago

    its mid it bring's you to a new windo and doest actuly unblock stuff

    Mobile-Task-Force
    Mobile-Task-Force
    7 months ago

    Bro, it brings you to a new window.

    RodrionBell
    RodrionBell
    1 year ago

    clean af

    6w6
    6w6
    2 years ago

    ok gogle where the store at siri: ok

    OwenBlack
    OwenBlack
    2 years ago

    This is sooo sick

    Glitterpoop
    Glitterpoop
    3 years ago

    wowwwwwww

  • TankWars

    Cover page
    Made with HTML, CSS, JS
    Recent comments (1)
    sammightyt
    sammightyt
    3 years ago
    console.log("Markdown Test Success")
  • Bruh Ask

    Cover page
    Made with HTML, CSS, JS
    Recent comments (2)
    suryabhattiprol
    suryabhattiprol
    1 year ago

    image

    suryabhattiprol
    suryabhattiprol
    1 year ago

    scam

    image

sammightyt
sammightyt
published a Repl
•8 months ago
0
day4_100 days python
day4_100 days pythonJoin me in the 100 days of code.
sammightyt
sammightyt
published a Repl
•2 years ago
0
weathersam-bro
weathersam-broAn interactive weather app that uses Google Geocoder and OpenWeatherMap.
sammightyt
sammightyt
published a Repl
•2 years ago
10
PokeSam
PokeSamThis is a Pokedex made in HTML, CSS, and JS with a little bit of jquery.
Hirole
Hirole
This is kind of cool. i think it has every pokemon u search for.2 years ago
LeVuong2
LeVuong2
nah. 2 years ago
sammightyt
sammightyt
published a Repl
•2 years ago
10
Google
GoogleA google recreation
Mobile-Task-Force
Mobile-Task-Force
Bro, it brings you to a new window.7 months ago
MorganDorsey1
MorganDorsey1
its mid it bring's you to a new windo and doest actuly unblock stuff4 months ago
sammightyt
sammightyt
shared a Post
•3 years ago
How to use localStorage and sessionStorage for your repls in JS
I will be teaching you how to use localStorage in repl.it set an item in localStorage localStorage.setItem("yourkey","yourvalue"); get the item in l
sammightyt
sammightyt
shared a Post
•3 years ago
This is a basic snowman drawn in HTML and JS using the canvas.
Snowman Template
HTML, CSS, JS
sammightyt
sammightyt
shared a Post
•3 years ago
This is a standard divisibility checker coded in HTML, CSS, and JS.
Divisibility Checker
HTML, CSS, JS
sammightyt
sammightyt
shared a Post
•3 years ago
I know that require() is not allowed in repl.it, but I don't know any other way to access a JSON file in repl.it. Can somebody help me?
Flashcards
HTML, CSS, JS
19wintersp
19wintersp
require is a function from an old module-loading library called CommonJS. Today, that is only used in NodeJS. Your "script.js" is running in a browser, which does not use CommonJS. The JSON file is on the server. To get the JSON file from the server, you will need to explicitly request it using fetch, and then parse the response as JSON, like this: fetch("some-file.json").then(function(response) { response.json().then(function(data) { //do something with the data }); }); `3 years ago
sammightyt
sammightyt
shared a Post
•3 years ago
This is a template for a simple pong game
Pong
HTML, CSS, JS
sammightyt
sammightyt
shared a Post
•3 years ago
Get your domain! First of all, you need to get your domain by getting it from any domain website. For example, Google Domains. Now, get the domain na
sammightyt
sammightyt
shared a Post
•3 years ago
This is a basic template for a JS Pong game.
Pong Vs. AI(GAME)
HTML, CSS, JS
sammightyt
sammightyt
shared a Post
•3 years ago
#html
#Css
#javascript
+2
I'm trying to integrate google sign in into this website, but it's not working.
Google
HTML, CSS, JS
RYANTADIPARTHI
RYANTADIPARTHI
it seems auth2 is not defined. Have you defined it? Where?3 years ago
Coder100
Coder100
do you need to learn how to make a google log in? https://developers.google.com/identity/protocols/oauth2/javascript-implicit-flow3 years ago
sammightyt
sammightyt
shared a Post
•3 years ago
I'm trying to make the Google Apps icon inline with the links but it's not working. Can somebody help me?
Google
HTML, CSS, JS
RYANTADIPARTHI
RYANTADIPARTHI
semms to be working.3 years ago
Coder100
Coder100
image works just fine for me maybe try: Gmail Images .links { align-items: center; justify-content: center; display: flex; vertical-align: middle; } `3 years ago
sammightyt
sammightyt
shared a Post
•3 years ago
This repl looks exactly like Google. The links and the search bar even work!
Google
HTML, CSS, JS
sammightyt
sammightyt
shared a Post
•3 years ago
I recreated Google using HTML and CSS. I created this last year... but forgot to share.
Google
HTML, CSS, JS
Bookie0
Bookie0
Nice start, what about this? Try to make it a bit lower! Screen Shot 2021-02-10 at 3.10.31 PM And perhaps a favicon! :D Screen Shot 2021-02-10 at 3.11.00 PM3 years ago
sammightyt
sammightyt
shared a Post
•3 years ago
Whenever the program starts, it asks your name. At that part it glitches.
tussiez
tussiez
Could you attach your Repl?3 years ago
sammightyt
sammightyt
shared a Post
•3 years ago
I tried using this code: socket.on("disconnect,() => { socket.emit("message",${id} has left the chat) }) `
Coder100
Coder100
1. you can use repl auth why would you ask this question the fact that you have an HTTP server implies that the language supports it. The protocol: log in header containing user name tutorial (by me!): https://repl.it/talk/learn/How-to-Repl-Auth-Expressjs/23558 2. use io It appears you are trying to tell everyone that the user has disconnected, not only the person that disconnected. socket.on("disconnect", () => { io.emit("message",${id} has left the chat) }) `3 years ago
tussiez
tussiez
Solution io.on('connection',function(socket){ // ...code socket.on('disconnect',function(){ // Socket does not exist, do not use socket.emit here!! io.emit('message','User has left the chat'); // io.emit sends to all (remaining) users }) }) 3 years ago
sammightyt
sammightyt
I meant this: socket.on("disconnect",() => { socket.emit("message",${id} has left the chat) }) `3 years ago
sammightyt
sammightyt
shared a Post
•3 years ago
I don't know how to display a message in the chatroom(node.js) using my chat-server(express).
tussiez
tussiez
Solution Inside io.on('connection',function(socket)) socket.on('disconnect',function(){ console.log("I didn't get a chance to rickroll in my code example ;(") }) `3 years ago
DaGuacaplushy
DaGuacaplushy
hmmm, try making if user hasnt sent anything for a certain period of time it says they disconnected3 years ago
sammightyt
sammightyt
shared a Post
•3 years ago
I'm trying to send an email using node.js, but it's giving an error, can anyone help me?
node.js
Node.js
RYANTADIPARTHI
RYANTADIPARTHI
Solution your are missing an extra ) at the very end of your code. Ask you can see on line 18, you have this code. transporter.sendMail(mailOptions, function(error, info){ if (error) { // look above at the ( console.log(error); } else { console.log('Email sent: ' + info.response); } } // add an extra from there here so, at the last line, you are missing the ) from (. So your code should look like this. transporter.sendMail(mailOptions, function(error, info){ if (error) { 3 years ago
Baconman321
Baconman321
You forgot to add a } at the end of the file. Add } to the end of your program. Also, you got to fill in the details of your email. Nodemailer uses your email account to send an email to someone else.3 years ago
sammightyt
sammightyt
shared a Post
•3 years ago
This is my new pong game. Tell me how I can improve it!
Pong
HTML, CSS, JS