Skip to content

Instantly share code, notes, and snippets.

View mazeeblanke's full-sized avatar
🎯
Focusing

Ewomazino Ukah mazeeblanke

🎯
Focusing
View GitHub Profile
@Developerayo
Developerayo / users.sql
Created March 2, 2021 12:00
Query: List of top 100 Nigerian Stack Overflow users
SELECT TOP 100
ROW_NUMBER() OVER(ORDER BY Reputation DESC) AS [#],
Id AS [User Link],
Reputation
FROM
Users
WHERE
LOWER(Location) LIKE '%nigeria%'
OR UPPER(Location) LIKE '%NIGERIA%'
ORDER BY
@mazeeblanke
mazeeblanke / types.js
Last active September 25, 2018 11:14
export const SET_EXPRESSION = 'SET_EXPRESSION';
export const CLEAR_EXPRESSION = 'CLEAR_EXPRESSION';
export const DELETE_LAST_EXPRESSION_ENTRY = 'DELETE_LAST_EXPRESSION_ENTRY';
export const EVALUATE_EXPRESSION = 'EVALUATE_EXPRESSION';