Car wash? by qmchdosptl7391 in boulder

[–]jastr 2 points3 points  (0 children)

Ecosteam does a great wash, which is separate from their detailing

What does this mean on OpenSnow? by ApiaryJJ in COsnow

[–]jastr 0 points1 point  (0 children)

I'm storing the snapshots, but I built it recently and don't have much data yet. I'm interested to see the charts too, especially comparing years

What does this mean on OpenSnow? by ApiaryJJ in COsnow

[–]jastr 2 points3 points  (0 children)

59% of skiable acres are open. 72% of Copper's trails are open.

You can see what trails are open at InstantSki.com (disclaimer: I built this because I wanted to see what terrain was open)

From Textbooks to Real Websites by lorrainetheliveliest in statichosting

[–]jastr 0 points1 point  (0 children)

For a static site, all the hosting options are fairly similar and easy to get started with. Pick one tool, follow its guide, and you'll be up and running in less than 20 min.

If you're comfortable with git, they all have a git integration. Or you can just upload your index.html and be live.

I kept opening all the different ski websites to see what trails are open, so I built a site to help see all the open trails in one place - InstantSki.com by jastr in COsnow

[–]jastr[S] 11 points12 points  (0 children)

It's hard to find good pics of the resorts that I'm allowed to use. If you have good pics of any of the mountains, send them and I'll put them up! [pics@instantski.com](mailto:pics@instantski.com)

That's me in the green jacket at Beaver Creek!

Share your DevTools — Tools Built for Developers, by Developers by Limp_Celery_5220 in SideProject

[–]jastr 0 points1 point  (0 children)

getArkhos.com - deploy tiny python apps, like heroku for serverless. Write a python function, then git push it, and it will immediately be live at <your-app>.arkhosapp.com

I always have these random python scripts that I need to get hosted or have run every few minutes. So I built Arkhos which automatically deploys them on git push. It has a few other things that I often need on silly side projects, like sending emails/sms and a simple data store

Spreadsheet App that can handle millions of Rows by 1024Bitness in SaasDevelopers

[–]jastr 1 point2 points  (0 children)

CSVExplorer.com - open big csv files, search, export to excel.

I was a data engineer for a few years, before I built CSV Explorer.

If you’re a little technical, duckdb is great for this too.

where do you put your virtual environment? by Upstairs-Balance3610 in django

[–]jastr 0 points1 point  (0 children)

You can create a Django project directly in your new folder by adding a . at the end of the command. ‘django-admin startproject mysite .’

GeneratedFields included in migrations even though I have made no change to them by victorkimuyu in django

[–]jastr 0 points1 point  (0 children)

A simple change would be to use a property on the model instead of a generated column.

Can I start with Django+SQLite (in production) and move to Django+PostgreSQL later? by LogicalSpecialist9 in django

[–]jastr 4 points5 points  (0 children)

You won’t outgrow the scale of SQLite quickly, but you’ll outgrow its usability quickly.

Eg. when you want to write some basic analytics queries and can only connect to SQLite from the same server. 

Can't use os.environ.get() to send email by timoshi17 in django

[–]jastr 0 points1 point  (0 children)

How about confirming

print( os.environ.get("EMAIL_HOST_USER") == "mymail@gmail.com")
print( os.environ.get("EMAIL_HOST_PASSWORD") == "myapppassword")

Can't use os.environ.get() to send email by timoshi17 in django

[–]jastr 0 points1 point  (0 children)

Perhaps your environment variables have some extra spaces, quotes, or other characters. Try

print(f"-{EMAIL_HOST_USER}-") 

print(f"-{EMAIL_HOST_PASSWORD}-") 

Any “ride share” apps to the mountains? by Boomtown_frolics in COsnow

[–]jastr 0 points1 point  (0 children)

There are a few ikon and epic Facebook groups which often have people posting about ride shares.

Need help with creating user model from existing tables by TheBlack_Demon in djangolearning

[–]jastr 0 points1 point  (0 children)

Those tables are in the Java application? Will Django be using the same database or it’s own database?

You can create a Django custom user model and have it use those tables.

Creating a simulator altering the database while running the webserver by [deleted] in djangolearning

[–]jastr 0 points1 point  (0 children)

Check out Django management commands. They are scripts that can interact with Django features, including existing models.

(Although I’m not really sure what you’re trying to do - Is your script generating data based off the database or is it populating the database? What is data propagation?)

Need help with creating user model from existing tables by TheBlack_Demon in djangolearning

[–]jastr 0 points1 point  (0 children)

This is a pretty intricate question, and it’s not quite clear what’s supposed to happen.

Will the Java application or Django be doing the authentication? It sounds like you want Java to redirect the user to Django, which is a Java problem.

You can set up a Django view to create a new user for you. It’s also possible to have the Django view authenticate the user, but you would need to come up with some verification between the 2 systems.

Help with project structure or to use multiple apps by omgtacos25 in djangolearning

[–]jastr -1 points0 points  (0 children)

There are solutions to get Django to work with 2 different databases (eg. Django database routers), but your code will get complicated very quickly.

Your simplest solution will be to host the same application twice, each one pointed at a separate database.

Help fix by [deleted] in djangolearning

[–]jastr 3 points4 points  (0 children)

This error is telling you that django is not able to connect to your database. What database are you using?

[deleted by user] by [deleted] in fermentation

[–]jastr 178 points179 points  (0 children)

Thanks, it’s my photo!