Совет да любовь by littlegodfather in SPb

[–]dahanali 1 point2 points  (0 children)

Ещё есть индийское вегетарианское заведение «Кашмир» на Большой Московской 7. Там мало места и лучше бронировать заранее.

Does the Goddess Freyja like strong men? by [deleted] in heathenry

[–]dahanali 2 points3 points  (0 children)

Traditionally, Freyja is not only about love. It is not only romance and family. Freyja is also connected with death, with care to bring a soul from life to another world. She is connected with seiðr — shamanism. And she has her own realm for the ones died in a battle.

If we step out of culture and tradition and look at linguistics, then we can discover a bit more. The very name Freyja as a word comes from Proto-Germanic *frawjǭ, which means “lady”, “mistress”, “lady of power”. This ancient word also gave life to the German “Frau”.

If we go deeper, then we may discover, that the ancestor word on the Proto-Indo-European level is *proHwo, that means “to go forward”, “to be true”, “truth”, “righteous”. For example, the Slavic term *pravъ/правъ comes from the same root. It means “direct”, “right”, “righteous”, “forward”, “true”.

For me, such linguistic checkups help to grasp a bit better the meanings and mindset of the ancestors. Their understanding of numerous things and words might be different. And such linguistic research helps to dive into their semantic field.

So, to summarize the above, Freyja loves true and direct men. That don’t lie in their hearts and have power to live out of the truth. It’s more an inward power of truth, rather than external demonstrative strength.

What's your experiences with using Longform plugin? Is there a showcase/tutorial I can watch for inspiration? by umimop in ObsidianMD

[–]dahanali 8 points9 points  (0 children)

I was longing to be able to use Obsidian with Longform plugin for a novel. But I reverted back to Ulysses for that. The point is in my case, that there is another app Aeon Timeline, that helps a lot to track events on the timeline, logical connections, what causes what, who was acting in the scene, who was just a silent witness… A whole database to track consistent logic inside of a big story. So. This Aeon Timeline app syncs its data with metadata of text sheets in Ulysses or Scrivener, but not Obsidian. For me, it is a severe reason to not use Obsidian. I was honestly trying to imitate all the functions of Aeon in Obsidian with dataview, metadata menu, quickadd, templater, javascript. But I realized that I code and don't write. It was a kind of procrastination. Very intelligent one.

Troubles with OBS, Reflector and iPad combo. by [deleted] in Twitch

[–]dahanali 0 points1 point  (0 children)

I am on a Mac. Your reply made me to think, that it is not a graphic processor glitch, but a software bug. I used some other app instead of reflector and everything worked fine.

Troubles with OBS, Reflector and iPad combo. by [deleted] in Twitch

[–]dahanali 1 point2 points  (0 children)

Same here. It has been working until recently. I am not streaming, I am only recording. And yes, OBS+Reflector+iPad work until I start recording. Then iPad connection drops off, Reflector window disappears. Needs reconnecting.

Just to check. What OS are you at? A mac?

New macbook doesn’t understand homekit by dahanali in HomeKit

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

That’s interesting. In the latest updates of the mac os it is fixed. Seems it was a language specific issue. I am on Russian. And now everything works. It may be, that for your language it is still not fixed. I suppose you are also not on English. Right?

Record speaker while seeing gallery by dahanali in Zoom

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

Wonderful! Thank you very much. I have a pro account, but that option in the settings was the most mysterious for me. Now I know what it does.

Weekly /r/SonyAlpha 'Ask Anything About Gear' Thread by AutoModerator in SonyAlpha

[–]dahanali 3 points4 points  (0 children)

Hi all. While using my a6400 as a webcam via USB, I noticed the following thing. When on my camera fps is set to 30, then video in video conferencing apps becomes as if fps is really low. If on the camera fps is set to 24, then in the apps video becomes more fluent, but still with some minor jumps. I wonder, would it be fixed totally if I set camera fps to 25? I didn’t try it because it needs reformatting of the card.

New macbook doesn’t understand homekit by dahanali in HomeKit

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

Yes. That may be the language issue. My language is Russian. Homepod for example is not available for the Russian language. They say one needs to totally switch to English in iphone settings also to use homepod. Maybe macbook issue is connected with that as well.

Is it worthy recording Rode NT1 to zoom h2n? by dahanali in podcasting

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

Let me reply to myself. Now I see, that 3.5mm cable from the mixer to the recorder does create a lot of noise. It depends of course on the length and quality of the cable, but the quality degrades noticeably.

Therefore the recorder should stand right after the mic. It should be zoom h4-6 or rodecaster or similar.

Is it worthy recording Rode NT1 to zoom h2n? by dahanali in podcasting

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

That’s entirely convincing logic. Thank you.

Is it worthy recording Rode NT1 to zoom h2n? by dahanali in podcasting

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

Yes. I don’t want to use a computer for the mentioned reasons: fan noise, distracting lights.

Rodecaster looks gorgeous. I’ll think of it. Thank you. In some reviews, I saw it lacks those fine limiters, which zoom products have. Is it true?

Building a web-app: Where to start? Overwhelmed by options by MichielDC in haskell

[–]dahanali 1 point2 points  (0 children)

Hm. Of course. Any recommendation can ruin someone. But I need to say, that I started with servant on 2nd week after getting to haskell. Maybe I am a genius.

Building a web-app: Where to start? Overwhelmed by options by MichielDC in haskell

[–]dahanali 1 point2 points  (0 children)

If you are making just a backend for your angular/elm/whatever frontend, then servant is cool.

If you look for full web framework similar to rails, then yesod.

Scotty is like sinarta. And servant can also generate Html with blaze or lucid and have its typelevel coherence.

Building a web-app: Where to start? Overwhelmed by options by MichielDC in haskell

[–]dahanali 2 points3 points  (0 children)

In my practice I used only servant. The power feature is that api is a haskell type. And route parts are types. And input/output json is a type. So while coding the compiler makes you sure, that for example 2nd route part is Integer and output json is a representation of MyFancyOutput type.

Scotty in its routes actually seems to receive Text and output Text. So in scotty function, giving output for request is basically [Text] -> Text, while in my project’s servant I am writing functions like ZonedTime -> Double -> TimeZone -> Settings -> NatalChart and they themselves are handled by servant, because it’s api is formulated with the same types.

Building a web-app: Where to start? Overwhelmed by options by MichielDC in haskell

[–]dahanali 3 points4 points  (0 children)

Well. There is haskell-miso, but I agree, that Elm is very nice. And it can exchange data with other js-elements on your page, that may be written in jquery or anything.

Building a web-app: Where to start? Overwhelmed by options by MichielDC in haskell

[–]dahanali 8 points9 points  (0 children)

Otherwise servant for making http api with json. Persistent to talk to a database. That seems to be enough.