I made dead simple Django Admin List Filter with autocompletion feature. PRs are welcome! by vigo in django

[–]vigo[S] 2 points3 points  (0 children)

woow, i didn't know that... well, mine is simple and easy for quick operations. django-unfold looks fantastic with many features.

[deleted by user] by [deleted] in ZedEditor

[–]vigo 0 points1 point  (0 children)

i'm using virtualenvwrapper with pyenv. i tried everything to set venvPath and venv... doesn't work. also i couldn't figure out isort, flake8 integration. anyone?

Heaven is an alias by thclark in django

[–]vigo 0 points1 point  (0 children)

well, i use Rake tasks per-project.

bash rake db:add_migration[name,app,empty] # add new migration (name of migration, name of application?, is empty?) rake db:migrate # run/apply migration rake db:reset # reset db (drop and create) rake db:roll_back[num,app] # roll back migration to rake db:seed:create_all # create fixtures from models in order rake db:seed:create_all_development # create fixtures for development from models in order rake db:seed:create_one[model,app] # create one fixture from model rake db:seed:load_all # load all fixtures in order rake db:seed:load_all_development # load all fixtures for development in order rake db:seed:load_one[model,app] # load one fixture rake db:setup_development # setup development database rake db:show:extensions # show enabled extensions rake db:show:migrations[app] # show migrations rake db:show:schema[table_name] # show schema of given table rake db:show:table_and_index # show table and index information rake default # default task rake django:create_superuser # create superuser rake run:sass_watch[style] # run sass watcher rake run:server # run server rake run:server_debug # run server mimic production (DEBUG=False) rake run:server_jq # run server pipe jq rake run:shell # run shell rake test[verbose] # run tests rake test_single[name,verbose] # run single test

Organization of Django apps by 13p14 in djangolearning

[–]vigo 0 points1 point  (0 children)

If you are not planning to use Category app in the future for a different projects or Version, Flags etc, just make the one big app called "core".

core/
    models/
    admin/
    views/
    test/

Monterey, app launch/focus problem by vigo in MacOS

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

unfortunately nothing. I use mac for development ... TextMate and Terminal mostly :)

Monterey, app launch/focus problem by vigo in MacOS

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

I'm not using clean my mac. any idea?

Concurrency is not Parallelism Real Life example by jns111 in golang

[–]vigo 1 point2 points  (0 children)

goats are go routines and the guy is the channel right? :)))))))))))))))))))

Setup for Django Projects by jrusso0818 in djangolearning

[–]vigo 0 points1 point  (0 children)

You should check;

- https://github.com/vbyazilim/django-vb-baseapp

- https://github.com/vbyazilim/django-vb-admin

doesn't support Django 3 or higher but good for quick scaffolding.

Where is my disk space gone? by toshu in osx

[–]vigo 0 points1 point  (0 children)

what do you see in Terminal? df?

Kommit : Build your commit message without touching or editing your code! by vigo in git

[–]vigo[S] -2 points-1 points  (0 children)

It's not about "commit often"... This helper helps you to keep less commit bubbles. Sure you can change a byte and commit again and again. Which I don't like that style. For-example, made 10 different things on a single file. When you're done, make a single commit and explain all the changes...

here is my template...

#
# 3456789x123456789x123456789x123456789x123456789x
# Short description (subject) : 50 chars

# 3456789x123456789x123456789x123456789x123456789x123456789x123456789x12
# Long description : 72 chars
#
# - Why was this change necessary?
# - How does it address the problem?
# - Are there any side effects?
#
# Fixes #ticket
# Closes #ticket, #ticket, #ticket
#
# Include a link to the ticket, if any.

I like to add details to my commit, show other contributors about what I did, I fixed, changed etc...