💀

Posts tagged with :skull:

SouptikSamanta
@SouptikSamanta0
https://imgutil.s3.us-east-2.amazonaws.com/866e5ad24b39ae76dfb5416d6fef44e52c62443b5536b93a562de73e57391856/406fe577-921f-4748-b152-79c797689579.png
AaronLei
@AaronLei0
This is a site that went with a theme of :p_orange://github.com/aaronsfunstuff/car-hub/commit/26d37d17e4f4e439b4f2e74ba7ff33182414eccc> THERE IS NO NSFW IN THIS
https://imgutil.s3.us-east-2.amazonaws.com/c8df0f89a1f3f0b9b7d859c70205e38036b73cfb86eb994d5762425e617f1c75/5d082728-a205-4777-bde6-95eda46d8fd0.png
JAIAAKASHG
@JAIAAKASHG0
#include <ESP8266WiFi.h> // Replace with your network credentials const char ssid = "Airtel_PRAKASH"; const char password = "9941113669"; // Set web server port number to 80 WiFiServer server(80); // Variable to store the HTTP request String header; // Current state of the buzzer String buzzerState = "off"; // Assign GPIO pin for the buzzer const int buzzerPin = D2; void setup() { Serial.begin(115200); pinMode(buzzerPin, OUTPUT); digitalWrite(buzzerPin, LOW); // Connect to Wi-Fi network Serial.print("Connecting to "); Serial.println(ssid); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { delay(1000); Serial.print("."); } // Print local IP address and start web server Serial.println(""); Serial.println("WiFi connected."); Serial.println("IP address: "); Serial.println(WiFi.localIP()); server.begin(); } void loop() { WiFiClient client = server.available(); // Listen for incoming clients if (client) { // If a new client connects, Serial.println("New Client."); // print a message out in the serial port String currentLine = ""; // make a String to hold incoming data from the client while (client.connected()) { // loop while the client's connected if (client.available()) { // if there's bytes to read from the client, char c = client.read(); // read a byte, then Serial.write(c); // print it out the serial monitor header += c; if (c == '\n') { // if the byte is a newline character if (currentLine.length() == 0) { // HTTP headers always start with a response code (e.g. HTTP/1.1 200 OK) // and a content-type so the client knows what's coming, then a blank line: client.println("HTTP/1.1 200 OK"); client.println("Content-type:text/html"); client.println("Connection: close"); client.println(); // Display the HTML web page client.println("!DOCTYPE html<html>"); client.println("<head><title>ESP8266 Buzzer Control</title></head>"); client.println("<body><h1>ESP8266 Buzzer Control</h1>"); client.println("<p>Buzzer State: " + buzzerState + "</p>"); client.println("<p><a href=\"/H\"><button>ON</button></a></p>"); client.println("<p><a href=\"/L\"><button>OFF</button></a></p>"); client.println("</body></html>"); // The HTTP response ends with another blank line client.println(); break; } else { // if you got a newline, then clear currentLine currentLine = ""; } } else if (c != '\r') { // if you got anything else but a carriage return character, currentLine += c; // add it to the end of the currentLine } // Check if the client is requesting the buzzer to be turned on or off if (header.indexOf("GET /H") >= 0) { Serial.println("Buzzer ON"); buzzerState = "on"; digitalWrite(buzzerPin, HIGH); } else if (header.indexOf("GET /L") >= 0) { Serial.println("Buzzer OFF"); buzzerState = "off"; digitalWrite(buzzerPin, LOW); } } } // Clear the header variable header = ""; // Close the connection client.stop(); Serial.println("Client disconnected."); Serial.println(""); } }
https://scrapbook-into-the-redwoods.s3.amazonaws.com/1f49c3db-7289-4bfb-bfa8-ea4727ebb4c9-image.png
TheScientist101
@TheScientist1010
I just made a PR for #arcade to fix the truncation on the scrapbook banking messages. Idk if it works, and it was literally 1 line of code (so I don’t expect any tickets from this), but it’s the first PR I’ve made in a while so hey! I can’t show any pictures of it in action (since it hasn’t been accepted yet), but here’s a thread of the issue. hackclub.slack.com/archives/C0266FRGV/p1718717652692109
https://scrapbook-into-the-redwoods.s3.amazonaws.com/80922747-bfa5-42c6-b755-aba4e3c69af2-image.png
Nikhil
@Nikhil0
#hack-hour fixed some bugs with the camera to make it zoom out as the player go farther apart.
https://scrapbook-into-the-redwoods.s3.amazonaws.com/c831e376-51a4-4535-abea-d75c84287d7f-img_2341.png
ShubhamPatil
@ShubhamPatil0
shopping list item: survive physics :duck-duck-dino-orpheus:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/ba593470-3071-4e5a-be5d-6158d9c5039c-img_20231017_001651.jpg
dd.stars-U058UGJDKCL
@dd.stars-U058UGJDKCL0
Trying to open a 10 yr old laptop...... Because my own crashed 🥲
https://scrapbook-into-the-redwoods.s3.amazonaws.com/794643dd-eb5f-467e-8818-5aa6a470eca7-img20230620212257.jpg
cytronicoder
@cytronicoder0
wens da nft comin
https://scrapbook-into-the-redwoods.s3.amazonaws.com/99c48d96-5c32-4378-a1d2-1925fceb8a33-blue.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/7a5a70e6-3782-48bf-8592-db27b63ac137-yellow.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/e4b416c3-2c3c-4e3e-9be5-fde834b9cd0d-green.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/0809b4e0-23f1-490b-ad40-a468ee90ad51-red.png
GurmeharSingh-U04HHJ3GGGG
@GurmeharSingh-U04HHJ3GGGG0
Day 6/10 Stucked on driver failure.......
https://cloud-n16uls2yu-hack-club-bot.vercel.app/0image.png
rithul
@rithul0
CRIMSON ISLEEEEEEEEE LESGOOOO AFTER HOURS OF GRINDING
YogeshKushwaha-U04DRN6399A
@YogeshKushwaha-U04DRN6399A0
Skull made from 3D printer:skull-ios:....
https://cloud-hxnv3zqvi-hack-club-bot.vercel.app/0image.pnghttps://cloud-bcov5miis-hack-club-bot.vercel.app/0image.png
jzaleta
@jzaleta0
So recently I've been thinking on open source and projects abandonment, and the Google :google: Graveyard 🪦 is a very good example of some of their projects that have been left. :dead: Also today I'm studying for my mid exams and working on projects! Here's an image of my scrapbook before this post. :hack-club: So the point of this is that I'm going to be looking for some abandoned projects that looks for help in order to make a small contribution and bring them back! Maybe with design or documentation while I get better at code! And lastly, I'm going to delete my Twitter Account :twitter: , I never got to really use it and I would like to avoid the toxicity and problems and better make a blog / part of my website where I post my ideas on things! 💡
https://cloud-gln3543mo-hack-club-bot.vercel.app/0osi_standard_logo_0.pnghttps://cloud-h7drf2al5-hack-club-bot.vercel.app/0card.pnghttps://cloud-hehneqfyu-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-06_a_la_s__23.13.34.png
Odyssey346
@Odyssey3460
Please don't give me resources to bake shit.
https://cloud-krdwu8nyf-hack-club-bot.vercel.app/020211127_173248.jpghttps://cloud-2p80d6ldx-hack-club-bot.vercel.app/020211127_175041.jpghttps://cloud-de6qoj6rl-hack-club-bot.vercel.app/020211127_164700.jpg
rajanagarwal
@rajanagarwal0
there’s more.
https://cloud-liwlcq14p-hack-club-bot.vercel.app/0image_from_ios.png
lailahn
@lailahn0
Days 14&15 of getting my life back together(because I forgot to post yesterday😭): I’ve mainly just been continuing school work and essays! My mom took me out shopping bc of my SAT score 💀
https://cloud-2kb46t5wz.vercel.app/0image_from_ios.jpg
kayley
@kayley0
🎹 Haven't played the piano in awhile, so decided to randomly sightread a piece; could have gone a lot better.
kayley
@kayley0
So, this is how my day is going so far...
https://cloud-hj5qddtzb.vercel.app/0image.png