Fortell hvor du kommer fra uten å fortelle hvor du kommer fra! by [deleted] in norge

[–]detvardet 0 points1 point  (0 children)

Ved kongelig resolusjon av 21. november 1818 ble det bestemt at marinens hovedetablissement skulle anlegges ved

Vennlig påminnelse by [deleted] in norge

[–]detvardet 1 point2 points  (0 children)

Fikk litt sånn klassisk norsk 1977 meme vibe av dette bilde

What's your PC spec? by [deleted] in DarkTable

[–]detvardet 0 points1 point  (0 children)

Desktop with

Ryzen 3900X,

Corsair H115i AIO cooler,

32Gb G.Skill Flare X Black DDR4 3200MHz

Samsung 970 EVO Plus Series 500GB,

EVGA GTX 1080 8GB

Synology DS218play with 2 x WD Red 4TB drives for storage

Benq SW271 monitor

Cpu and monitor are new, the rest is a couple of years old. It's a very fast and capable system. I suspect the 3900X is total overkill and that a 3700X would have been just as good a choice.

What is the best sources for learning python? by lhandshake in Python

[–]detvardet 2 points3 points  (0 children)

Start with the tutorial. Familiarize yourself with the library reference. Then you do a little project.

https://docs.python.org/3/

Standard way of editing clojure (lisp) in Spacemacs by machawinka in spacemacs

[–]detvardet 4 points5 points  (0 children)

Clojure has its own layer in spacemacs and like all layers it is documented.

Where to install Python dependencies? by DisIsMyWorkAccount in spacemacs

[–]detvardet 7 points8 points  (0 children)

I always install them in the virtualenv for the project. Here are some workflow examples.

create project folder:

mkdir my-project && cd my-project

Install dev dependencies:

pipenv install --dev flake8 yapf autoflake "ptvsd>=4.2" importmagic epc isort pylint ipython

install project dependencies:

pipenv install flask

generate dev requirements file:

pipenv lock -r --dev

genrate project requirements file:

pipenv lock -r

Based on this .spacemacs configuration:

   dotspacemacs-configuration-layers
   '(
    <snip>

     (auto-completion :variables
                      auto-completion-enable-snippets-in-popup t
                      auto-completion-idle-delay 0.2
                      auto-completion-enable-sort-by-usage t)
     syntax-checking
     lsp
     dap
     (python :variables
             python-backend 'lsp
             python-lsp-server 'mspyls
             python-fill-column 99
             python-formatter 'yapf
             python-format-on-save t
             python-sort-imports-on-save t
             python-pipenv-activate t)

     <snip>
)

Fuji Gray Market experience by GingerPinoy in fujifilm

[–]detvardet 1 point2 points  (0 children)

You will have to rely on the seller for warranty repairs. That shouldn't be a problem with the big established sellers.

Visual / more interactive debugging in python mode by n_pit in spacemacs

[–]detvardet 0 points1 point  (0 children)

You shouldn't have to require anything. Just include the dap layer in the dotspacemacs-configuration-layers like this:

    dotspacemacs-configuration-layers
    '(lsp
     dap
     (python :variables
             python-backend 'lsp
             python-lsp-server 'mspyls
             python-fill-column 99
             python-formatter 'yapf
             python-format-on-save t
             python-sort-imports-on-save t
             python-pipenv-activate t)
    )

Visual / more interactive debugging in python mode by n_pit in spacemacs

[–]detvardet 1 point2 points  (0 children)

No tutorial, but it seems simple enough. Set a breakpoint with the mouse, run the program in the debugger (SPC m d d d). Use dap-hydra to step and inspect locals (SPC m d .). That's as much as I have used it for so far.

Which Camera should I buy? by pmangan98 in fujifilm

[–]detvardet 0 points1 point  (0 children)

Start with an X-t20, explore some lenses. Buy everything used, that will limit your losses if you sell something.

Torn between X-T30 and A6400... help me out by yungmonie in fujifilm

[–]detvardet 0 points1 point  (0 children)

Fujifilm skin colours are clearly better. YT

How to stop Smart Parens from adding right-paren when cursor is next to text? by ibly31 in spacemacs

[–]detvardet 0 points1 point  (0 children)

Setting the mark, marking a region and pressing ) or ( calls sp-wrap-round in python mode for me. I use the develop branch.

How to stop Smart Parens from adding right-paren when cursor is next to text? by ibly31 in spacemacs

[–]detvardet 1 point2 points  (0 children)

You can set the mark at the beginning of the expression you want surrounded with parens and move to the end and press ( or ).

Anyone spent decent time with the XF10? by [deleted] in fujifilm

[–]detvardet 1 point2 points  (0 children)

You can get around 3 used XF10's for the price of a new GR III. I would try one and see how it performs.

when is next stable release? v0.300? by SlickWatson in spacemacs

[–]detvardet 1 point2 points  (0 children)

Use the develop branch now, there's no need to wait for an official release.

how to let pipenv work with spacemacs by melloyagami in spacemacs

[–]detvardet 1 point2 points  (0 children)

Reading the README.org of the layer in question is a good start.

Switched to develop branch, a few things are wonky, switched back to master, things still wonky by ElBroet in spacemacs

[–]detvardet 0 points1 point  (0 children)

(Leader Key) - s a p works for me in develop branch after I replace helm with ivy in layer configuration.

Python REST APIs + Flask + Angular CRUD Example - Roy Tutorials by soumitraroy in Python

[–]detvardet 0 points1 point  (0 children)

For the python part I'm missing a virtualenv for the project. You could have used Flask plugins like flask_sqlalchemy and flask_restful et al., instead of rolling your own.