- Popup Mode
- Conditional formatting
- Number Formatting (for tooltip)
- Measure based on category, only Numeric Filter
- Saved Filters
- Alphanumeric filter*
- Filter Context support
- Single select for month / Day
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"privileges": [ | |
{ | |
"name": "ExportContent", | |
"essential": true | |
}, | |
{ | |
"name": "LocalStorage", | |
"essential": true | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example with nested conditionals (harder to read) | |
function processUserRegistration(user) { | |
if (user.hasValidEmail) { | |
if (user.isMinimumAge) { | |
if (user.hasAcceptedTerms) { | |
if (user.hasProvidedValidPassword) { | |
// Perform registration | |
return { | |
success: true, | |
userId: generateUserId(), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input | |
1 - 2 | |
1 - 3 | |
2 - 3 | |
2 - 4 | |
3 - 1 | |
3 - 2 | |
4 - 1 | |
4 - 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sqlite3 | |
import torch | |
from transformers import AutoTokenizer, AutoModel | |
from tqdm import tqdm | |
import gc | |
#python3 -m venv path/to/venv | |
#source path/to/venv/bin/activate | |
# Connect to the SQLite database | |
conn = sqlite3.connect('data.sqlite') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p> | |
<a href="https://inforiver.com/analytics-plus/">Inforiver Analytics+</a> is the fastest way to visualize your data | |
and share insightful | |
stories in Microsoft Power BI as a Power BI Certified Visual. Analytics+ also | |
enables large enterprises to migrate from Tableau, Spotfire, Qlik, Domo, | |
Cognos, SAP Lumira, or their static PowerPoint dashboards from Think-cell or | |
Mekko Graphics and consolidate them within Microsoft Power BI. | |
</p> | |
<p>The intuitive, no-code user experience (UX) helps even casual users build | |
dashboards and storyboards in minutes, with 100+ charts, cards, and tables |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ! command -v npx | |
then | |
echo "npx is required to be installed for this script" | |
exit | |
fi | |
echo "Creating a new project using create-react-app" | |
npx create-react-app $1 | |
cd $1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let randomLoop = 8; | |
let parentContainer = document.getElementsByClassName("scrollRegion"); | |
const getRandomNumber = (min, max) => { | |
return Math.floor(Math.random() * (max - min + 1) + min); | |
}; | |
function task(index) { | |
if (index >= randomLoop) return; | |
let parent = document.getElementsByClassName("scrollRegion")[1]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import express from 'express'; | |
import csrf from 'csurf'; | |
import cookieParser from 'cookie-parser'; | |
const app = express(); | |
app.use(cookieParser()); | |
app.use(csrf({ cookie: true })); | |
app.use((req, res, next) => { |
NewerOlder