💀

Posts tagged with :skull:

khang200923
@khang2009230
I (sort of) jailbroke ChatGPT
https://scrapbook-into-the-redwoods.s3.us-east-1.amazonaws.com/bf6f0118-3eed-4a13-838b-8de82fe21a83-image.png
khang200923
@khang2009230
https://scrapbook-into-the-redwoods.s3.us-east-1.amazonaws.com/ac4cf179-e241-4199-8a2a-8f1a677fea50-image.png
SouptikSamanta
@SouptikSamanta0
https://scrapbook-into-the-redwoods.s3.us-east-1.amazonaws.com/d98c4fdf-108e-43bc-8eec-86d774236696-cb931138-a3a1-40e5-a4bd-6b1a9e76d33a.pnghttps://scrapbook-into-the-redwoods.s3.us-east-1.amazonaws.com/f4b4d759-c080-4210-92b3-27757b9bc39c-d9819542-fe3c-4f95-aa09-269ba9545100.pnghttps://scrapbook-into-the-redwoods.s3.us-east-1.amazonaws.com/a97af118-f40f-4fdc-9236-1cb18d16a952-a026a653-34b6-4fca-9c5b-4215fe6b3f43.png
AaronLei
@AaronLei0
This is a site that went with a theme of
p_orange emoji
//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 emoji
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 emoji
....
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 emoji
Graveyard 🪦 is a very good example of some of their projects that have been left.
dead emoji
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 emoji
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 emoji
, 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