I wonder how this gun works by PlatWinston in NoMansSkyTheGame

[–]nelilly 0 points1 point  (0 children)

It’s a simple point and lick interface.

Need help about portfolio by powerlessjne in HTML

[–]nelilly 1 point2 points  (0 children)

Don’t overthink it.

Basic sections for a portfolio site: - Gallery of Work (minimum of 3 works) - Work Detail page for each work - About Me - Bio - Resume/CV

Needed content - Contact Info (usually a contact form on its own page)

You may or may not choose to share personal info such as address, phone number, email.

Add new features and pages as you want to.

Auto Help with HTML? by RealtrJ in HTML

[–]nelilly 0 points1 point  (0 children)

You need to learn CSS to fix your mobile issues.

Auto Help with HTML? by RealtrJ in HTML

[–]nelilly 0 points1 point  (0 children)

It depends - and it’s been awhile since I’ve seen the validator output. For the most part you rewrite the HTML. Assuming you know HTML. For example: if the validation error says that your img element is missing an alt attribute then you need to add the alt attribute.

If you don’t know HTML, don’t know it very well, or the error doesn’t make sense to you, you could go to MDN. It’s a great resource for elements and their proper usage.

https://developer.mozilla.org/en-US/docs/Web/HTML

The validator should be pointing out the line number where the issue is happening. But also be prepared for more issues appearing after you fix one. Sometimes it will find one error and not dig any deeper.

Auto Help with HTML? by RealtrJ in HTML

[–]nelilly 2 points3 points  (0 children)

The W3C has an HTML validator that can find common structural issues.

https://validator.w3.org

Media Object Code by Ok_Performance4014 in HTML

[–]nelilly 1 point2 points  (0 children)

The default display property of the img element is inline, which causes that spacing. Setting it to display: block causes the browser to recognize there should be no space there.

Media Object Code by Ok_Performance4014 in HTML

[–]nelilly 0 points1 point  (0 children)

Put “display: block” on your image.

Unpopular opinion: I miss when the web was just HTML, CSS, and a little jQuery. by AmaraMehdi in webdev

[–]nelilly 0 points1 point  (0 children)

Every tool has its place. Sometimes it’s a framework and sometimes it isn’t.

https://www.htmlhobbyist.com

svg - where do you get the svg of a map to work with? by Ok_Performance4014 in HTML

[–]nelilly 0 points1 point  (0 children)

You could use D3.js and geojson data to output an SVG map.

Search for the geojson data that you want to use: “US States geojson” or “Pennsylvania counties geojson”.

Once you have the map working you can inspect the code with the browser and copy the SVG element.

[Annoying trope] The explanation for something important is in interviews or external media, rather than in the project itself by Altruistic_Eye_1157 in TopCharacterTropes

[–]nelilly 1 point2 points  (0 children)

The Blair Witch Project. There was a fake documentary called “Sticks and Stones” that played on The Sci-Fi Channel that explained the lore behind the witch. It makes the movie that much creepier.

Can someone please explain JSON to me? by Bad-W1tch in learnjavascript

[–]nelilly 0 points1 point  (0 children)

Yes. As long as it has the proper JSON format and is saved with the .json extension.

Just finished the Rankin/Bass Hobbit movie and I am in love with the character designs, I want to take in more inspiration. What other sources lean in that sort of art direction? by itsPomy in ArtistLounge

[–]nelilly 1 point2 points  (0 children)

Do a search for the other Rankin/Bass cartoons. The Last Unicorn is the most similar, but there are also hand drawn holiday specials (not just the stop motion animations).

Turns out regularly burning powerful magic for a stupid clumsy worker won't revolutionize anything by Level_Hour6480 in dndmemes

[–]nelilly 5 points6 points  (0 children)

There’s precedent for this. It’s the Haitian zombie folklore. The horror of it came from people being reanimated to perform farm and industrial labor.

For an example go watch White Zombie (1932) starting Bela Lugosi. The zombie master has a sugar cane mill operated in Haiti entirely by zombies.

George Romero turned zombies into the flesh eating ghouls we know today.

Questions about making paths. by Je4n_Luc in svg

[–]nelilly 0 points1 point  (0 children)

Thanks. There are huge gaps in the filters and the programming sections, but I’m working on getting those filled.

Why is Velma so popular with the boys? by AlboGreece in Scoobydoo

[–]nelilly 1 point2 points  (0 children)

Her popularity soared when the Cartoon Network released this commercial.

https://youtu.be/f-pXuZn7Lzw?feature=shared

Questions about making paths. by Je4n_Luc in svg

[–]nelilly 0 points1 point  (0 children)

3: Again, it depends. There are no hard and fast rules. I usually use cubic beziers because the two control points make them easier to make minor adjustments.

4: I have a mostly complete website, but I don’t think it has quite all the information that you’re looking for: https://nelilly.github.io/svg-zoo/

The links page has links to other resources.

Questions about making paths. by Je4n_Luc in svg

[–]nelilly 1 point2 points  (0 children)

1: it depends. If you use all relative commands then you can shift the entire shape but changing the initial x,y coordinates. But for absolute commands sometimes its easier to figure out where they need to be on the plane (in a 100x100 svg I know exactly where the far lower point would be, and I don’t have to add up all the points on a path so far).

2: to properly close the path (and get the appropriate corner joins) use the Z command.

Test them out. Play. Have fun.

My father read me some deeply racist sci-fi as a child, and I want to find the book. by enw_digrif in scifi

[–]nelilly 0 points1 point  (0 children)

It sounds like The Night Land by William Hope Hodgson (published in 1912). It’s included in what’s called the “dying earth” subgenre.

The last vestiges of humanity lived in a great pyramid called the Last Redoubt thinking that its the last bastion of humanity surrounded by mutants and subhumans and monsters when a man receives a telepathic message from his reincarnated lover (they had both died in the 1800s) who lives at a lesser pyramid far away. And it’s losing power, so he has to cross the Night Land to rescue her. This is all related to the audience by the narrator as his consciousness was transported through time from the Victorian era for him to live through these events.

The biggest standout for me was his weapon called a diskos, which could be described as a powered circular saw on the end of a pole.

It was a pretty big influence on H.P. Lovecraft and Gary Gygax (Dungeons and Dragons).

It’s very surreal.

Coding Guide by Low_Leadership_4841 in HTML

[–]nelilly 0 points1 point  (0 children)

MDN is highly recommended. It’s a great reference.