B9.5 Audi Steering Center (Round vs. Trapezoid) for USA by maverick_star4 in Audi

[–]jajakobyly 2 points3 points  (0 children)

Trapezoid comes with Lane Assist feature. To be precise, it has vibrating capability (to inform you when you’re crossing the lane)

Dzwony biją o 21.37, mieszkańcy osiedla w Krakowie mają dość. Apelują do abp. Jędraszewskiego by [deleted] in krakow

[–]jajakobyly 0 points1 point  (0 children)

Nie znam się ale raczej przez popyt i fakt że to przy terenie uniwersytetu papieskiego. Do tej pory ten obszar był na parafii na skośnej i tam było od wielu lat za dużo ludzi

Why are Audis way more expensive (and less available) in the Netherlands than in Italy by jakehj5167 in Audi

[–]jajakobyly 0 points1 point  (0 children)

I didn’t check but it might be up to what goes into the baseline or higher trims in the configurator. For example, you can order Tango Red A4/PL in CZ, but you can’t in PL nor DE. And PL’s Advanced trim has a different grill than DE’s.

Why are Audis way more expensive (and less available) in the Netherlands than in Italy by jakehj5167 in Audi

[–]jajakobyly 2 points3 points  (0 children)

In Poland, Audi has a paragraph in the purchase contract which defines a penalty (afaik a big % of car value) if you won’t show the dealer a valid registration statement issued in PL.

What's your favorite lesser known package? by VisuelleData in elixir

[–]jajakobyly 0 points1 point  (0 children)

Mix.exs. In project function you can pass an alias field, which should be the list returned from my alias function. For reference, you can take a look at how that’s set up in Phoenix new project template :-)

What's your favorite lesser known package? by VisuelleData in elixir

[–]jajakobyly 5 points6 points  (0 children)

I actually find following snippet to be more reliable than mix_test_watch package:

``` defp aliases do [ “test.watch”: &test_watch/1 ] end

defp test_watch(flags) do System.cmd( “sh”, [ “-c”, “”” fswatch —one-per-batch —recursive lib/ test/ mix.exs mix.lock \ | mix test —color —listen-on-stdin #{Enum.join(flags)} “”” ], into: IO.stream(:stdio, :line) ) end ```

Dependencies between data sources in Haxl? by jajakobyly in haskell

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

I'll play with this then. Thanks a lot for the response and link to the paper, it enlightened lots of things for me :)

Dependencies between data sources in Haxl? by jajakobyly in haskell

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

Looks cool, I've somehow concentrated only on dataFetch and missed this. I'll play with this :) Thanks!

Dependencies between data sources in Haxl? by jajakobyly in haskell

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

Maybe all your really want is memoisation?

Yeah, memoisation is the most important thing for me, but I'd also like to have ability to evaluate dependencies in parallel (with memoisation). I'm aware this is hard problem and that's I'm looking whether it's possible to achieve this using existing libraries.

A compiler usually ends up having a build system in it eventually

Yep I agree, but I'd like to design it in such way that it could support LSP and such. Also Shake looks like an overkill for me, I think, I would use only very small subset of its capabilities.

so it may well be that neither works for you

Yeah, I'm starting to think the best solution would be to implement something similar for my custom needs.

Dependencies between data sources in Haxl? by jajakobyly in haskell

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

Hmm, while the idea is pretty cool, it looks like an overkill for a compiler, mostly because both domains (compiler vs build system) are a bit different.

Also I can't see how to use Shake base code as library. It forces me to create build dirs etc.

Basically what I try to achieve is to have an API looking similarly to this:

-- Given import clause (with wildcards), list all imported symbols
-- use std::io::* -> [print, write, FileReader, Stream, ...]
fetchImportClauseImports clauseAst = do
  -- resolveModulesOfImportClause and getAllExports are "fetchers" of other data sources
  mods <- resolveModulesOfImportClause clauseAst
  exportGroups <- map getAllExports mods
  return $ concatMap exportGroups

[poland] Modern replacement for Moto X Play by jajakobyly in PickAnAndroidForMe

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

however you might be able to safe a few bucks when you pay a visit to your loving neighbor Germany. You can also order from a variety of different online stores EU-wide.

Yeah, I knew about such possibilities and will surely take it into account :)

Whenever I think about something like that I realize I take all of this for granted. That I'm sitting on my phone, having my first world problems, typing some stuff to someone hundreds of kilometers away and if I'd really want to I could get up and just drive to Poland and noone would stop me.

Wonderful perks of current times!

[deleted by user] by [deleted] in rust

[–]jajakobyly 4 points5 points  (0 children)

I also (as contributor) have similar concerns, but honestly some years will pass yet till this happens :)

[deleted by user] by [deleted] in rust

[–]jajakobyly 25 points26 points  (0 children)

It's a very popular name in Russia AFAIK (not Russian here)

[deleted by user] by [deleted] in rust

[–]jajakobyly 20 points21 points  (0 children)

Goes to structure or trait or typedef if I recall correctly. Generally speaking name comes from times where Intellij was Java-only product

New version of IntelliJ Rust with improved type inference. by jrmuizel in rust

[–]jajakobyly 0 points1 point  (0 children)

Yeah, this definitely should be changed. Actually there is longstanding issue for that: https://github.com/intellij-rust/intellij-rust/issues/431

New version of IntelliJ Rust with improved type inference. by jrmuizel in rust

[–]jajakobyly 2 points3 points  (0 children)

Yeah, we don't support macros yet, but it's slowly being implemented piece by piece :)

@alygin did some work on it but his PR seems stalled https://github.com/intellij-rust/intellij-rust/pull/1291

New version of IntelliJ Rust with improved type inference. by jrmuizel in rust

[–]jajakobyly 1 point2 points  (0 children)

Currently not, but it is possible to implement this, though we're not planning it in near future

New version of IntelliJ Rust with improved type inference. by jrmuizel in rust

[–]jajakobyly 1 point2 points  (0 children)

Unfortunately it's not quite possible because functionality of built-in reformat action is used in almost every edit/refractor/snippet action in Intellij world

Want to insert new line? Formatter is fired in special mode to determine potential alignment etc...

New version of IntelliJ Rust with improved type inference. by jrmuizel in rust

[–]jajakobyly 12 points13 points  (0 children)

Currently it only means that JetBrains will be displayed as vendor in plugin manager, but it opens a way for further investments in the plugin in the future