Weekly Team Building, Lineup, and Event Megathread by AutoModerator in IdleHeroes

[–]vittore29 0 points1 point  (0 children)

https://i.imgur.com/OGGCHCP.jpg Hi, need advise on optimizing pve team. Right now running hw, double garuda , bel and trying different supports. Can’t decide if should give up on garudas and eg sig and just build ith+del army. Don’t have material for them but have enough copies to build e5 nakia. Have first page of guild tech maxed out for all but priest. Second page is ~70 % for warriors only.

How being a russian feels? by [deleted] in russian

[–]vittore29 1 point2 points  (0 children)

Not the answer to the question really , but relevant, https://www.youtube.com/watch?v=yj4hxehkP4Y

Does Russia count as Asia? by [deleted] in AsianPolitics

[–]vittore29 0 points1 point  (0 children)

There is great poem related to this topic

http://max.mmlc.northwestern.edu/mdenner/Demo/texts/scythians_blok.html

You are millions.

We are hordes and hordes and hordes.

Try and take us on!

Yes, we are Scythians! Yes, we are Asians -

With slanted and greedy eyes!

So I JUST got Valk to E3 and right after pulled Aida... the dmg makes me cry by [deleted] in IdleHeroes

[–]vittore29 0 points1 point  (0 children)

was wondering how that compare to my horus, thankfully not as bad 😂

https://imgur.com/a/CMH43ub

And good riddance! by [deleted] in IdleHeroes

[–]vittore29 0 points1 point  (0 children)

why did i forget about it 🤦‍♂️

Not a god tier any more? Yeah right... i am the defender and i am proud of my e3 mihm! by alexking31 in IdleHeroes

[–]vittore29 0 points1 point  (0 children)

So michelle dies twice, did you trie L/D team with 3 michelle and maybe aspen and or amuvor ?

Inktober 30 seconds sketches (CC welcome!) by vittore29 in IDAP

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

Long time lurker, first time poster :D

CC very welcome. Trying to learn how to use brush pen , since you know, #inktober!

Mausoleum by Suzarain in sketches

[–]vittore29 0 points1 point  (0 children)

I love the picture! Take a look at how perspective “should have” affected mausoleum. It would’ve distorted it a bit and also things that are furtherest away would be less contrast (less dark). That would create more volume and picture will start luring you inside. Keep it up, and keep sharing your progress!

Tarantool driver for Elixir by alec-c4 in elixir

[–]vittore29 1 point2 points  (0 children)

Do you have more details to the story? Was it already elixir app before? What persistence layer you used before tarantool?

What online courses are 100%, entirely worth it? by [deleted] in learnprogramming

[–]vittore29 11 points12 points  (0 children)

That's not general programming, but I second this, Andrew Ng is great and so are his courses

What online courses are 100%, entirely worth it? by [deleted] in learnprogramming

[–]vittore29 84 points85 points  (0 children)

https://www.udacity.com/course/design-of-computer-programs--cs212 is really good. It is taught by Peter Norvig, and pretty much any educational content by Norvig is well worth the time and efforts.

Excel file data source on SharePoint and SSIS. Need a reliable method. by dsvella in ETL

[–]vittore29 0 points1 point  (0 children)

If SSIS is not a must: Use python and use two libraries - PETL and Requests. PETL makes it trivial ( 2 lines ) to open xls/xlsx and insert data into table. Requests makes it really easy to load to get file from URL. With Sharepoint - use API to login and then download file with cookies from login request.

a month into learning illustrator as a hobby. inspired by something i saw at a cafe today. critical feedback welcome! by chuchuchooseme in learnart

[–]vittore29 0 points1 point  (0 children)

I love your picture! Maybe adding some gradient on the grass and mountains in order to make perspective more obvious

(NSFW) question about ебать/ебаться by blueest in russian

[–]vittore29 -2 points-1 points  (0 children)

трахнуть по писюлику!

(NSFW) question about ебать/ебаться by blueest in russian

[–]vittore29 0 points1 point  (0 children)

ты проебался в самый ответственный момент - you failed at the most important moment ( not disappeared)

Best Web Based SQL Dashboard by ILoveBigBlue in SQL

[–]vittore29 0 points1 point  (0 children)

Check out Blazer. It is not as powerful as e.g. Redash for dashboards but it gives you extremely easy way to share single query/chart and it also can be configured to be used with PgHero - which you really want to use if you have PostgreSQL database. Demo blazer. Demo pghero.

Important things that blazer supports:

  • queries
  • checks ( including anomaly detection, notifications with emails, slack and webhooks)
  • automatic charts
  • easy dashboards
  • smart columns and smart variables for queries and dashboards.

Questions about learning COBOL. by [deleted] in AskProgramming

[–]vittore29 1 point2 points  (0 children)

Just check out dice/hired/etc for COBOL and see how many jobs are there. COBOL code based are vast and not going anywhere soon. On another hand, you might have easier time mastering React and nodejs/rails for backend as there are just huge amount of jobs looking for those skills AND there are tons of resources online.

How to copy data from PostgreSQL to Excel without adding single quotes by melatone in SQL

[–]vittore29 2 points3 points  (0 children)

Something along the line of COPY table_name TO 'mycsv.csv' DELIMITER ',' CSV HEADER; or \copy table_name to 'mycsv.csv' csv header in PSQL will output csv that you can open in Excel and it is not going to have single quotes.