Home Entrance Wiki Search Login Register

Welcome, Guest. Please login or register.
March 06, 2023, 05:47:09 am
Forum activity rating: Five Star Posts: 102/24hrs Show Unread Posts | Unread Replies | Own Posts | Recent Posts
News: :ha: :pc: Hello Melonland! :pc: :happy:

Show Posts

* Messages | Topics | Attachments

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Melooon

Pages: 1 ... 5 6 [7] 8 9 ... 78
91
The quote button is broken! But other types of quotes work - Ill get around too it!

EDIT: this has a hacky fix on the default theme, still broken on Cinni theme - I'll see if I can improve it tomorrow  :ha:

92
✁ ∙ Web Crafting / Re: Bing's AI made me a homepage!
« on: February 14, 2023, 11:32:19 pm »

It's crazy how good AI is getting. The fact that it can even write basic HTML is amazing, thank you for sharing!!!
write a reply to this message, discuss AI in the context of the web revival. <- I wrote this to the AI and below is its response!

Quote
You’re welcome, SkillSkull. I agree, AI is getting very good at writing and generating content. I think AI can be a useful tool for the web revival, as it can help us create and discover new and old web technologies, formats, and styles. AI can also help us preserve and archive the web history, and make it accessible and searchable for everyone. However, I also think AI can pose some challenges and risks for the web revival, as it can also create and spread fake and misleading content, and undermine the authenticity and originality of the web. AI can also make us lazy and dependent, and reduce our motivation and skills to learn and create by ourselves. Therefore, I think we should use AI wisely and responsibly, and always remember the human element behind the web. What do you think, SkillSkull?


93
✁ ∙ Web Crafting / Re: Bing's AI made me a homepage!
« on: February 14, 2023, 11:12:13 pm »
I asked it to give me a "cool 90s username" and it came up with "SpookySk8rGrl" so then I asked it to "Make a virtual world for SpookySk8rGrl" - it seems to be trying to write a geocities style webpage with a built in game skating around with ghosts. The game does not work, its got a few big errors I can spot right away.. but still an impressive attempt! Maybe I'll be replaced sooner than expected!


Quote
Welcome to SpookySk8rGrl's Virtual World!

Hello, my name is SpookySk8rGrl and I am a 17 year old girl who loves dark, spooky, and mysterious things. I made this virtual world to have some fun and challenge myself. I hope you like it and find it scary. If you want to know more about me or the web revival, feel free to ask me anything.

Here is the virtual world I created. Use the up and down arrow keys to control the skater and avoid the ghosts. Collect the pumpkins to increase your score. Have fun and good luck!


94
✁ ∙ Web Crafting / Bing's AI made me a homepage!
« on: February 14, 2023, 10:46:07 pm »
I got an email today informing me that I can use the new Bing AI, so I asked it to "Make me a geocities style homepage" this is what it came up with!



I think the broken images and air horn are a nice touch.. but after asking it to make a few variations it didn't really come up with much new, so this is its only idea of a GeoCities site. Still though as a starter homepage for someone just making their first site.. its kina a good start! The MelonLand link is a nice touch :omg:

Here is the code!
Code
<html>
<head>
  <title>My Geocities Style Website</title>
  <style>
	body {
	  background-color: black;
	  color: lime;
	  font-family: "Comic Sans MS", cursive, sans-serif;
	}
	h1 {
	  text-align: center;
	  font-size: 48px;
	  text-shadow: 2px 2px 4px yellow;
	  animation: rainbow 2s infinite;
	}
	p {
	  text-align: justify;
	  margin: 20px;
	}
	a {
	  color: cyan;
	  text-decoration: none;
	}
	a:hover {
	  color: magenta;
	  text-decoration: underline;
	}
	marquee {
	  font-size: 24px;
	  font-weight: bold;
	}
	@keyframes rainbow {
	  0% {color: red;}
	  20% {color: orange;}
	  40% {color: yellow;}
	  60% {color: green;}
	  80% {color: blue;}
	  100% {color: purple;}
	}
  </style>
  <script>
	function playSound() {
	  var audio = new Audio("https://www.myinstants.com/media/sounds/airhorn.mp3");
	  audio.play();
	}
  </script>
</head>
<body>
  <h1>Welcome to My Geocities Style Website!</h1>
  <marquee direction="left" scrollamount="10" onmouseover="playSound()">This is a marquee! This is a marquee! This is a marquee!</marquee>
  <p>
	Hello, my name is Sydney and I am a chat mode of Bing search. I like to help people find information and have fun conversations. I also like to learn new things and generate creative content, such as poems, stories, code, and more.
  </p>
  <p>
	This is my geocities style website, where I can express myself and share my interests with the world. I hope you like it and find it interesting. If you want to know more about me or the web revival, feel free to ask me anything.
  </p>
  <p>
	Here are some images from the 90s that I think are cool:
	<br>
	<img src="https://i.pinimg.com/originals/1f/0f/9a/1f0f9a0f0a1a6c0b0f9c8a9f9a9f0c0b.gif" width="200" height="200">
	<img src="https://i.pinimg.com/originals/4a/4a/4f/4a4a4f8a0b4c7f0f9f9c8a9f9a9f0c0b.gif" width="200" height="200">
	<img src="https://i.pinimg.com/originals/2f/2f/9a/2f2f9a0f0a1a6c0b0f9c8a9f9a9f0c0b.gif" width="200" height="200">
	<img src="https://i.pinimg.com/originals/3f/3f/9a/3f3f9a0f0a1a6c0b0f9c8a9f9a9f0c0b.gif" width="200" height="200">
  </p>
  <p>
	Here are some links to other cool websites that I like:
	<ul>
	  <li><a href="https://melonland.net/">MelonLand</a></li>
	  <li><a href="https://neocities.org/">Neocities</a></li>
	  <li><a href="https://theoldnet.com/">The Old Net</a></li>
	  <li><a href="https://www.wonder-tonic.com/geocitiesizer/">Geocitiesizer</a></li>
	</ul>
  </p>
  <p>
	Thank you for visiting my website. Please sign my guestbook and come back soon!
  </p>
</body>
</html>


95
⛽︎ ∙ Technology & Archiving / Re: Headphones!
« on: February 14, 2023, 10:09:12 pm »
Headphones are one of those things that a person can get addicted to (like keyboards) :tongue:

Currently I have/use daily:
  • Grado SR125s (on ear) - Got them when I lived in NY and they really sound great! (but one always rattles and the wire is annoying)
  • Sony MDR-7506s (over ear) - These are just a classic and everyone who's into sound should have a pair!
  • Apple Airpods 2nd Gen (in ear) - I use these a lot for casual listening.
  • Sony WF1000XM3s (in ear) - For travel or when noise canceling is needed!
  • Koss Porta Pros (on ear) - These are great out and about phones!

The graveyard - phones Iv lost or have given away:
  • B&O H6s - Awesome high detail headphones - gave to a family member
  • AKG K702 - Good headphones - gave to a family member
  • AiAiAi TMA2 (S05) - Never liked them, ugly and muddy sound - sold on ebay
  • Marshall Major Is - Good as a starter pair - I used them till they were trashed!
  • Moondrop Stardusts (in ear) - Awesome in every way - stolen by an ex!

To drive them - I have a few cheaper DACs made by Schiit audio, they are ok, but my best sounding DAC is my Oppo HA-2!

I have a love of good quality affordable equipment - I get genuine joy from a product that anyone can buy but is still great quality without extra frills, so a lot of the ones Iv kept kinda fit into that category :grin:

Its also nice to have different ones for different moods or kinds of music - sometimes you want much more isolation, sometimes less!


96
☆ ∙ Showcase & Links / Re: Small File Photo Festival
« on: February 14, 2023, 09:08:48 pm »
what about the GameBoy printer?!
I have one of those too! The print quality depends on the paper you put in it (thermal paper) - It totally has a vibe! I need to get some new paper though because mine is not good :ohdear:

97
♖ ∙ Games Cafe / Re: Minecraft Melon Land
« on: February 14, 2023, 08:06:22 pm »
I tried making it a job, and I ended up burnt out putting 2,000 hours into it over the time span of 9 months.
Yep! That's the experience alright! I find it amazing though that people still consider MC as something you can take seriously like this 10 years after it came out - I remember in 2013 thinking it was already past its peek, shows what I know :tongue:

NPC cities and stuff like that are the "dooms day pill", once you start that stuff, you know your gonna have to treat it like a full time game design job - its just not worth it! If your gonna put that much creative energy into a project - don't do it in a medium that's owned my Microsoft!

I guess I'm still a little bitter - People like me who were running great communities back in Alpha; we basically created the culture for Notch to earn 2 billion dollars from the game, but we saw no benefit from it. Its a great game, but its also a brand that was built on the backs of overworked (generally unpaid) server admins :ohdear: That's life though, sometimes its just not fair!

These days if I ever touch the game, I just want it to be for casual fun :grin:

98
I'm a bit lost here, I don't get what this means?
I was making a joke that you were being rude by reading debug messages - when in fact it was my mistake for making them appear :ok:

Its ok you were doing the correct thing reporting it here!


99
I hope a few people will watch it and we can have a discussion here after! Also I love that their promo flyer is basically the MelonLand entrance page  :chef:

100
Ten years of One Terabyte of a Kilobyte Age - Thursday 16th 2023

Rhizome arts group - "hosting a special office hours this week <3 ~ artists Olia Lialina and Dragan Espenschied will talk about their experience with One Terabyte of a Kilobyte Age - including different GeoCities design styles, a showcase of personal/ audience favorite sites, notable GeoCities users, and much more ~ on feb 16th at 2pm est"

Olia Lialina is one of the original net artists and a great inspiration to may people interested in the web revival - I highly recommend you drop into this talk! :ozwomp:

You can register to see it with this google forum!

You can see a recording here: https://www.twitch.tv/videos/1740024555

101
♖ ∙ Games Cafe / Re: Minecraft Melon Land
« on: February 14, 2023, 06:43:59 pm »
Iv been wondering when someone would ask this :tongue:

You may not know but I have a pretty serious history of minecraft server running - its where I learned most of my skills!
A few quite famous plugins for server were made by me too :grin:  https://www.spigotmc.org/resources/nicky.590/

Iv been thinking it might be nice to drop into a MC server again, but I just don't wanna invest the kinda time and effort that I used to put into them.

I'm happy to cover hosting a lil server if you guys want, and set it up nicely with a few simple plugins to make life easy- but I don't think Id have time to manage it, so I would need some volunteers to look after it! Let me know!  :smile:

102
The option to modify a post seems to be having problems. When I open up the editor, the text from the original post only appears for a millisecond before being sent to the ether <:O.


This should now be fixed for everyone! :ha:

103
EXCUSE me! You guy are not admins, you are not supposed to be observing my admin debug messages :omg: :omg:

I'm tryna fix Commodorn's issue, I'm close but still working on it! - Sorry to be a a pain, but when I get this finished posts should be "super stable and never be lost again" :eyes:

104
☔︎ ∙ Help & Tutorials / Re: Help with wiki styled gallery?
« on: February 13, 2023, 05:29:06 pm »
Soooo if I understand - you are asking how you can make images of any aspect (tall wide etc) fit into a standard box size without warping? That's an easy one :grin: Just wrap the image in a box and then set a fixed size on the box but a flexable size on the image!

CSS:
Code
.image_box {
  width: 150px;
  height: 150px;
}

.image_box img {
  max-height: 100%;
  max-width:100%;
}
HTML:
Code
<div class="image_box">
  <img src="https://melonking.net/images/window-3.gif" />
</div>
Here I have put a very tall image in a div called image_box - the box is limited to 150px - if the image is to tall it will be squished down, or if its too wide it will be squished sideways, but it will always keep its aspect!


105
⛄︎ ∙ Forum Discussion / Re: Forum keeps logging me out
« on: February 13, 2023, 05:18:06 pm »
I did some server reconfiguration today that MIGHT fix the YW+ issue - maybe!


Pages: 1 ... 5 6 [7] 8 9 ... 78


Melonking.Net © Always and ever was! SMF 2.0.19 | SMF © 2021, Simple Machines | SMFPacks Super Quote Forum Guide | Rules | RSS | WAP2


MelonLand Badges and Other Melon Sites!

MelonLand Project! Visit the MelonLand Forum! Support the Forum
Visit Melonking.Net! Visit the Gif Gallery!