نظرات اشتراک‌ها
توصیه‌ی مشاوران امنیتی: از Rust و یا #C استفاده کنید و ++C را رها کنید!
اتحادیه یا سازمان   five eye کارش جاسوسی هستش....
اولین دیدگاه زیر همین پست بنظرم جالب گفته
If the Five Eyes agencies want us to move to something they call "secure"., that just guarantees they are not, in fact, secure. or likely their new tools dont work on C++ and thus they want us all to move to something newer. 

اشتراک‌ها
IQueryable و طراحی‌های نشتی‌دار
public interface IRepository
{
    IQueryable<T> Query<T>();
}
Programmers who define such interfaces invariably have a specific ORM in mind, and they implicitly tend to stay within the bounds they know are safe for that specific ORM. This is a leaky abstraction .  
IQueryable و طراحی‌های نشتی‌دار
اشتراک‌ها
ref returns و ref locals در C# 7 از کدهای unsafe سریعتر هستند

Results

Method Jit Platform Mean Scaled
ByReference LegacyJit X64 1.649 us 1.00
ByReferenceUnsafe LegacyJit X64 1.721 us 1.04
ByReference LegacyJit X86 1.666 us 1.00
ByReferenceUnsafe LegacyJit X86 1.673 us 1.00
ByReference RyuJit X64 1.684 us 1.00
ByReferenceUnsafe RyuJit X64 1.709 us 1.02

To our surprise, the safe way is faster than unsafe! 

ref returns و ref locals در C# 7 از کدهای unsafe سریعتر هستند
نظرات مطالب
بررسی ORM های مناسب جهت استفاده در اندروید
Realm هم به نظر گزینه مناسبی هست. یکی از مزیت‌هاش ساده بودنشه:
Realm realm = Realm.getInstance(this);

// All writes are wrapped in a transaction
// to facilitate safe multi threading
realm.beginTransaction();

// Add a person
Person person = realm.createObject(Person.class);
person.setName("Young Person");
person.setAge(14);

realm.commitTransaction();

RealmResults<User> result = realm.where(User.class)
                                 .greaterThan("age", 10)  // implicit AND
                                 .beginGroup()
                                      .equalTo("name", "Peter")
                                      .or()
                                      .contains("name", "Jo")
                                 .endGroup()
                                 .findAll();

اشتراک‌ها
API های ویروس کرونا

If you have wanted to build something to spread information about COVID-19, here's a great place to start! This free API sources its data from Johns Hopkins CSSE. You can make a difference! 

API های ویروس کرونا