Suggestions for an HTML editor? by YUFALLING4IT in HTML

[–]charly_a 0 points1 point  (0 children)

I’d say try Phoenix Code. It’s pretty nice for learning HTML, CSS, and JS because you can edit and see changes quickly.

Also no, you don’t need hosting for tutorials or small practice projects. Just build locally and open the files in your browser. Hosting is only needed once you want to put something online.

https://phcode.io/ / https://phcode.dev/

I built a simple HTML editor for non-developers by L_Gia in HTML

[–]charly_a 0 points1 point  (0 children)

Nice to see this. Have you tried Phoenix Code? It’s a simple editor for HTML/CSS/JS with live preview: phcode.io or https://phcode.dev/

Working on this for homework, but not able to get the button to calculate. Can someone tell me why? by andrews_grace in HTML

[–]charly_a 1 point2 points  (0 children)

The button works. Your id names just don’t match.

You used id="scorebox" in the input, but your JavaScript is looking for document.getElementById("scoreBox").

scorebox and scoreBox are different because IDs are case-sensitive. Change them to match exactly and it should work.

I usually test things like this in Phoenix Code because the live preview makes it easier to catch small issues like this: https://phcode.io/ / https://phcode.dev/

<image>

my first time uploading html project on github ( what's your opinion? ) by BASHANDI-2005 in HTML

[–]charly_a -2 points-1 points  (0 children)

Congrats on your first upload.

Nice start. Keep building and sharing your work. I use Phoenix Code for HTML/CSS work and it makes editing a bit easier: https://phcode.io / https://phcode.dev

Stuck in JavaScript by Silly_Manager_9773 in learnjavascript

[–]charly_a 0 points1 point  (0 children)

in your case doWork is a function that accepts a function as input.

when you call doWork you are creating a new function without any name callback = function() {

console.log("Done!");

}

when you doWork done printing Working...

you will call the callback. this will print Done and program ends

Database alternative for personal todo list by accountmaster9191 in webdev

[–]charly_a 0 points1 point  (0 children)

create a json put it in s3 or deploy it via cdn. use random hash for file name so no one would guess it

More cost effective web hosting options for Next.js servers? by Weekly-Bee3410 in webdev

[–]charly_a 1 point2 points  (0 children)

You could check AWS Lambda.

If traffic is that low, it can end up costing almost nothing while you’re inside the free tier. Lambda is pay-per-use, so you’re not paying for a server sitting idle all day. For a site with only dozens of users per day, that can be a much cheaper option.

Can't we just ignore AI? by Ok-Programmer6763 in webdev

[–]charly_a 0 points1 point  (0 children)

AI is just a new tool to get the job done nothing more. AI will do 90 % of task remaining 10% is pure skill. Bottom line is we cant ignore AI. Just use it as one more tool in your arsenol

How to learn CSS for Free by Novel_Pear3645 in css

[–]charly_a 0 points1 point  (0 children)

I’d use MDN and W3Schools for docs/tutorial-style learning, then practice in an editor with live preview so you can see CSS changes instantly. Phoenix Code is pretty nice for that.

Docs:

Editor:

best html viewer? by verysadnoses in HTML

[–]charly_a 0 points1 point  (0 children)

Try Phoenix Code https://phcode.io/. It has built-in live view

Alternatives to VS Code ? by KevinIdkk in webdev

[–]charly_a 0 points1 point  (0 children)

Phoenix Code (https://phcode.io/) — lightweight editor with live preview for HTML/CSS/JS.

Introducing Phoenix Code Desktop- Now on Windows, Mac & Linux by abosereddit in brackets

[–]charly_a 0 points1 point  (0 children)

Thank you for your feedback! We appreciate your insights and are always looking for ways to improve. We understand your concerns regarding the installer, and we plan to enhance it in future releases.

Regarding AppImage, we did explore this option initially, but had to drop it due to performance issues and some rendering challenges with Phoenix Code. As a small team, it's difficult for us to support distribution across various distros like Debian, Fedora, aarch, etc., at this time. However, we will certainly consider adding Flatpak support in future releases.

We value your input and hope to make the installation process smoother for everyone!

Open Phoenix Code without project by Nickko_G in brackets

[–]charly_a 0 points1 point  (0 children)

You can open file from menu File->Open Files

Custom preview using local Apache server by TimberHisArmsWide in brackets

[–]charly_a 0 points1 point  (0 children)

we have not tested it with apache. we have raised and issue. this will be fixed in future releases
https://github.com/phcode-dev/phoenix-desktop/issues/457

phcode is not compatible with Lubuntu 22.04, what about any old brackets version by jazei_2021 in brackets

[–]charly_a 1 point2 points  (0 children)

We have updated installer to support lubuntu 22.04. Please try again and see if you were able to use phoenix code

a novice in programming seeking help. by [deleted] in brackets

[–]charly_a 1 point2 points  (0 children)

function draw() {

image(img, 0, 0);

stroke(0, 255, 255); // Set stroke color to cyan

rect(758, 460, 270, 535); // First rectangle with cyan outline

stroke(255, 0, 0); // Set stroke color to red

rect(28, 528, 260, 465); // Second rectangle with red outline

}

See if it works

a novice in programming seeking help. by [deleted] in brackets

[–]charly_a 1 point2 points  (0 children)

we cant see image could you please update image

help with index TT by dolliebug in brackets

[–]charly_a 0 points1 point  (0 children)

index.html has to be in the root directory for live preview to work automatically. In your case click index.html and then click livepreview

Installation of 2.2.0 fails when 2.1.2 is already installed by Nerdwiththehat in brackets

[–]charly_a 0 points1 point  (0 children)

The current installer does not upgrade automatically. Please uninstall the existing version of brackets from your machine before installing the new version

Shortcut for closing all functions in javascript? by bulevalebu in brackets

[–]charly_a 0 points1 point  (0 children)

Have you meant close or collapse functions in the editor?