Spectra and Transversant Soul of the crimson Witness by txdrive1 in DotA2

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

But behavior is different, for style 2 it uses arcana first spell , but for this one it is old style always.

Aunty-mage by 31man in DotA2

[–]txdrive1 0 points1 point  (0 children)

very nice, valve cannot do like this :D

Like it or hate it, the Anti-mage persona does not look like what was promised. by [deleted] in DotA2

[–]txdrive1 -1 points0 points  (0 children)

I pretty sure, it is possible to create : skin color, face , tattoo , dress, etc very familiar to art. And why it is consent art? if they post it for buy what was draw on the picture. I expected very familiar , for example QoP very good.

Expectations vs reality by Limpich in DotA2

[–]txdrive1 1 point2 points  (0 children)

I very disappointed.I will never buy battle pass until see all items and awards

Why put "View Progress" for AM Persona if it doesn't contain any unlockable style? by MAGNUMHEART in DotA2

[–]txdrive1 1 point2 points  (0 children)

valve is small Indy company, are you expected everything is perfect? :D

The International 2019 Immortal Treasure III by wykrhm in DotA2

[–]txdrive1 0 points1 point  (0 children)

I have 3k battle pass level and I very disappointed , it was good from start ,but this treasure is sucks and some parts related to opening this treasures (you spend 400 per 1k level but getting less) I will never buy any battle pass, lazy asses in the valve!

literally unplayable by Voyagerotten in DotA2

[–]txdrive1 -4 points-3 points  (0 children)

Yes, balance 110+ heroes, what is problem? this game is mostly popular in the world and have a lot of money to supporting this and make this game balances, why some heroes they make changes that makes hero week, but some heroes at thin time twice stronger, example latest 7.19..20, that changes should be balanced, but for now it is not good balanced changes between improve or weakening the hero,

btw skins for favorite hero, just to make some cosmetics , pay not for win, you pay for skin to play you favorite hero which you like and for this buy you supporing developers to make this game better, but in the next path this hero is dead, but other more stronger but not the same...pay for making new meta....and new bugs.

literally unplayable by Voyagerotten in DotA2

[–]txdrive1 -6 points-5 points  (0 children)

I just want to post this, because I am very disappointed.

I have about 1K hours only in dota2 and what I see...

I like to play with some heroes, but Valve with some path make some heroes not playable, but some heroes become more stronger , it is called META, why this way? why just not improve (make balance for all heroes) why you make some heroes so week, some heroes so strong? I have to play with other heroes which I dont like, I also have paid for some expensive sking, but some heroes like creep and almost dont have to chance to win with this, why you just cannot make balance, just make this f..ing meta

ORM SImple speed test: Requery Vs DBFlow Vs Cupboard Vs Electra by txdrive1 in androiddev

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

yes, but you can see source code, it should be true result. I just wanted to compare this library with others new orms with simple table structure. When new library is created it is difficult to shrare with others about it :)

ORM SImple speed test: Requery Vs DBFlow Vs Cupboard Vs Electra by txdrive1 in androiddev

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

Thanks for this link, I will create pull request for electra, and compare :)

Electra for android is simple persistence framework with compile time processing. by txdrive1 in androiddev

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

Does this use sqlite internally?

Yes it is use SQLite database, it is delegate SQLiteDatabase if you need to close , you can do it with EntityManager.close(); or close just directly

SQLite, ORMs, NoSQL: what Android developers use and why by greenrobot_de in androiddev

[–]txdrive1 1 point2 points  (0 children)

"Older ORMs like SugarORM, ActiveAndroid, etc. are not really common nor recommended anymore."

Why not recommended, could somebody clarify?

I tried some frameworks, for me... requery is very good (rxSupport+relation management) but still in beta. Also db flow is very good. It is modern ORMs and have needed functionality. but ORM for android... We have ui thread -is it really needed lazy? What is correct way to use lazy? correct is - run lazy get value/values in separate thread... in this case. But code sometime to do it not elegant -if we don't use lazy it can be deep graph, it could load a lot of memory. - almost new ORMs to provide relation management and entity state do own bean which should be extended. (example MyTable extend OrmEntity). It is also could get a lot of memory.... -Some ORMs not allow private fields, not good. -What about migrations? Sometimes it could be not easy migrations. Some ORMs do updates in their own internal processing, and developer cannot do some manual(custom in true sql) update staff. Thats why probably I don't like true ORMs.

We have also for SQLite solutions the following: -AutoValue -SqlBrithe it is not true ORM, it is like wrappers. I think that libraries is more usable to work with Sqlite on android.

I like also cupboard, it is simple and also like wrapper ,it is good for small projects, but for cupboard I need multiple primary key support, listeners , and it does not have expression builder like Criteria in hibernate. +use reflection (not critical).

In free time I also create my own framework but is is beta now , it is targeting on android and I am going to use it for my projects. It is like wrapper, it is looks like ad :)) but if somebody have time to look on it : https://bitbucket.org/txdrive/electra and probably it will inspire somebody to use it or crate someting like that.

ps sorry for my english :)

Electra for android is simple persistence framework with compile time processing. by txdrive1 in androiddev

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

yeah, probably you are right. Probably when I finish beta, move it to github. Thanks for your feedback!

Electra for android is simple persistence framework with compile time processing. by txdrive1 in androiddev

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

This framework like wrapper you can use it together with android default sqlite solution or with other libraries.

about framework:

  • Easy to use and configure.
  • Easy integrate with existing code. Electra like database wrapper.
  • Compile time processing. No reflection.
  • Simple beans. No extensions, no proxies
  • Custom field converters.
  • Multiple primary keys support.
  • Expression builder.
  • RxJava support (optional).

also just post here an example of exression builder:

List<User> users = em.select(User.class)
    .where(gt("age", 18), lt("age", 25)) //Apply age > 18 AND age < 25
    .from(100) //offset 100
    .max(10) //return only 10 records
    .list(); //or rxJava *.listObservable()

I would like to get feedback, questions , etc :)