Skip to content

Join GitHub (or sign in) to find projects, people, and topics catered to your interests.

Here's what's popular on GitHub today...

EntityFrameworkCore
Trending repository
miegir
miegir commented Sep 20, 2019

https://github.com/aspnet/EntityFrameworkCore/blob/03503351c9dd3daf05a1ff66520c00aba3e372eb/src/EFCore/Query/Internal/ExpressionEqualityComparer.cs#L238

I think that this line is supposed to be

throw new NotImplementedException($"Unhandled binding type: {memberBinding.BindingType}");

However, textual representation of the binding (that is output currently) will be helpful too,

OWASP cheatsheets
GitHub security recommendation

Browse a laser-focused collection of information on application security topics, created by a variety of application security professionals with expertise in specific topics.

Popular topic

Storybook

Storybook is a UI development environment for your UI components.

Roguelike Celebration
Upcoming event recommended by GitHub
Oct
5

Roguelike Celebration

October 05, 2019 - October 06, 2019 • San Francisco

The Roguelike Celebration is a community-generated weekend of talks, games, and conversations about roguelikes and related topics, including procedural generation and game design.
App recommended by GitHub

LeanBoard

Lean Board is a collaborative whiteboard with sticky notes which seamlessly connects with your GitHub issue. Login with your GitHub account, create a board for an issue and a snapshot of your notes is embedded in the issue automatically.

lazydocker
Trending repository
mudasar187
mudasar187 commented Jul 1, 2019

Hi, i'v tested out lazydocker today and i love it!
A feature to have is to have names on the containers where the Services window is.

I have a docker-compose.yml file:

version: '3.7'

services:
  mongodb:
    image: mongo
    container_name: "db_app"
    ports:
      - "27017:27017"

  frontend:
    image: quizgame/webclient
    container_name: "web_app"
    build:
   
prometheus
Trending repository
libpod
Trending repository
corefx
Trending repository
ahsonkhan
ahsonkhan commented Sep 16, 2019

Along with implementing support for Base64, add tests as well.

string base64String = "ABA=";
using (JsonDocument doc = JsonDocument.Parse($"{{\"data\":\"{base64String}\"}}"))
{
    JsonElement root = doc.RootElement;
    JsonElement data = root.GetProperty("data");
    byte[] base64Bytes = data.GetBytesFromBase64(); // {0, 16}
    Console.WriteLine(base64Bytes.Length); // Returns 2
You can’t perform that action at this time.