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...

gatsby
Trending repository
CyberChef
GitHub security recommendation

CyberChef is a simple web app for analyzing and decoding data without having to deal with complex tools or programming languages. CyberChef encourages both technical and non-technical people to explore data formats, encryption and compression.

Popular topic

C++

C++ is a general purpose and object-oriented programming language.

streamlit
Trending repository
ksql
Trending repository
myonlinecode1988
myonlinecode1988 commented Sep 12, 2019

The field test_data is of type VARCHAR. I was attempting to convert "null" strings to null.

This query fails !

select case when test_data = 'null' then null
else test_data
end as test_field
from test_stream limit 10;
Caused by: java.lang.NullPointerException

This query works !

select case when test_data = 'null' then 'HAHA'
else test_data
end as test_field
from 
GitHub Universe
Upcoming event recommended by GitHub
Nov
13

GitHub Universe

November 13, 2019 - November 14, 2019 • San Francisco

GitHub Universe is a conference for the builders, planners, and leaders defining the future of software.
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.

caddy
Trending repository
mastodon
Trending repository
microsoft-authentication-library-for-js
Trending repository
rahulrastogi-git
rahulrastogi-git commented Sep 17, 2019

Team,
I am trying to implement msal-angular in my project, after so many attempts I still have question around best way to implement.

  1. Best way to redirect to azure login page, without showing login button on Navbar
  2. After login how to take user to first page of application, login success gives event but case where token is in cache, which event will be generated, or is there any better w
kornia
Trending repository
ducha-aiki
ducha-aiki commented Jul 29, 2019

The most of modules are lacking very useful __repr__ function. I am leaving this issue open until we catch-up.

  • create list of missing __repr__ s
  • fix all the old functions
  • add some test to lint to require __repr__ existence
You can’t perform that action at this time.