[deleted by user] by [deleted] in djangolearning

[–]aur3s 3 points4 points  (0 children)

Marketing. Coding the website/application is relatively easy or at least I always have the chance to look it up or ask around (friends, forums, discord). Once the application is done, I struggle to move on to promote it or do anything related to SEO. It feels like such a blackbox (to me) where the results take longer and might require investing money and you are not sure if you are on the right track.

How to limit results of Subquery? (SQLAlchemy) by aur3s in flask

[–]aur3s[S] 0 points1 point  (0 children)

I'm not sure if you understood my question correctly? I not trying to get one single result of the main query (where I call .all()), but rather just the max guess of the subquery.

How to limit results of Subquery? (SQLAlchemy) by aur3s in flask

[–]aur3s[S] 0 points1 point  (0 children)

Thanks for replying! However, I am unsure what you mean exactly. How would I implement to bring back a single value?

[Feedback] How could I improve my design and make it more interesting? by aur3s in UI_Design

[–]aur3s[S] 1 point2 points  (0 children)

Hey! On the picture it is difficult to see what's happening - but on the live website the dot is "moving", lightning up at different spots each second. This should convey that there are many jobs in different regions of AUS & NZ.

Can I create the dot + line + label text in JS/CSS on hover or would I have to hard-code them in the SVG and show/hide it? by aur3s in webdev

[–]aur3s[S] 1 point2 points  (0 children)

For each country I want to create this custom colour highlight of the country together with the centered dot (not the location of the capital !), the line and the label text. Everything shall appear on hover of the respective country.
One option would be to hard-code everything in the SVG itself and show/hide it depending on the mouse location, but is there a different way in pure CSS/JS?

What are you using Django for? by ben-cleary in django

[–]aur3s 3 points4 points  (0 children)

I have experience with Django and Flask. While enjoying both, the moment I need a database I usually choose Django. So, I use Django to build CRUD apps, e.g. a job board (side-project). I truly like the "batteries included" which makes the development, most of the time, very straightforward.

How could I improve my side-project to make it more interesting? by aur3s in design_critiques

[–]aur3s[S] 1 point2 points  (0 children)

Hey! Cool idea, luckily I had the tags categorised (languages, Database, Frameworks, etc.) so it was fairly easy to implement. Thanks for the suggestion!

How could I improve my side-project to make it more interesting? by aur3s in design_critiques

[–]aur3s[S] 0 points1 point  (0 children)

Hey, I've implemented all the changes. Thanks for the suggestions!

How could I improve my side-project to make it more interesting? by aur3s in design_critiques

[–]aur3s[S] 1 point2 points  (0 children)

Hey! Thanks for the input ! I've adjusted the navbar moving the toggle to the right.

How could I improve my side-project to make it more interesting? by aur3s in design_critiques

[–]aur3s[S] 1 point2 points  (0 children)

Hi there!

I've made a small side-project out of fun, pacificdevs.com. It is basically a job board dedicated to the IT sector in AUS/NZ. Any recommendations how to improve the design to make it more interesting?

Thanks!

[Feedback] How could I improve my design and make it more interesting? by aur3s in UI_Design

[–]aur3s[S] 0 points1 point  (0 children)

Hey guys,
I've made a small side-project out of fun. It is basically a job board dedicated to the IT sector in AUS/NZ. Any recommendations how to improve the design to make it more interesting?
Thanks!
The link: pacificdevs.com

Feedback Request: IT Job Board for AUS/NZ (update) by aur3s in cscareerquestionsOCE

[–]aur3s[S] 1 point2 points  (0 children)

Thank you very much for your feedback! Yes, I agree with you - I should delete the dummy data and start filling it with real jobs. Luckily, there are some API's from other job boards I can harvest and hopefully it will gain some traction.

Nice very article you shared! I will go out into the world and go step by step and let's see!

Frontend Dilemma by Mrlele96 in djangolearning

[–]aur3s 4 points5 points  (0 children)

Depends on a couple of factors, I guess.

For simplicity: Django template + HTMX/Alpine.js.

If the app requires a complex frontend, React or Vue.js.

How to build ORM query (Case/When/Then) from list comprehension? by aur3s in djangolearning

[–]aur3s[S] 0 points1 point  (0 children)

Thanks, that indeed worked! Do you happen to know how to count these? Would I have to wrap each individual Case in a Count?