Skip to content

Instantly share code, notes, and snippets.

View euclid1990's full-sized avatar
🍔
Code for food

Nguyen Van Vuong (Vic) euclid1990

🍔
Code for food
View GitHub Profile
@euclid1990
euclid1990 / iTerm2-profile.json
Last active November 7, 2021 15:30
iTerm2 Profile - Config word/line deletion and navigation shortcut
{
"Ansi 1 Color" : {
"Green Component" : 0,
"Blue Component" : 0,
"Red Component" : 0.73333334922790527
},
"Tags" : [
],
"Ansi 12 Color" : {
@euclid1990
euclid1990 / NULL_AS_MAX.sql
Created November 11, 2021 04:57
Consider NULL as MAX in SQL
DROP FUNCTION IF EXISTS fconsider_null_as_max;
DELIMITER //
CREATE FUNCTION fconsider_null_as_max (originalYear INT)
RETURNS INT
BEGIN
RETURN CASE
WHEN MAX(originalYear IS NULL) = 0 THEN MAX(originalYear)
ELSE originalYear
END;
END; //