from Coursera course: Ancient Philosophy Parmenides Argument: Is vs. Is Not Parmenides argues that Change is unthinkable because we cannot talk about What is not. Change involves coming to be…
This became my favorite brine recipe. I especially liked the smoked tuna belly. Ingredients: About 10-15 lbs of tuna (albacore)2 quarts (64 oz) of Water 1 cup brown sugar 1…
Click on page -> CSS -> in inline, add the following: .grid_style .a-GV-w-hdr{ overflow-x: auto !important; } Click on region -> Appearance -> in CSS Classes, enter the class name…
Identification -> Type: Link Link -> Target -> Type : URL, and URL: #COLUMN_NAME# Link Attribute -> target="_blank" (if you would like it to be open on a separate page)
You can add a class called "custom_grid" to the Interactive Report Go to Grid Edit Region -> Appearance -> CSS Classes -> Add custom_grid in CSS Classes boxGo to Page…
How to add a constraint (in this case unique constraint) to an existing table ALTER TABLE mytable ADD CONSTRAINT user_role_uq UNIQUE (name, role); How to remove a constraint from an…
The scrollbar is located at the bottom of the report by default. You can add a top scrollbar for better usability. Click on the Page in CSS --> inline, add…
Source: https://www.kaggle.com/learn/geospatial-analysis, This is the code summary note for the Kaggle geospatial analysis geopandas frame has a geometry column that shows either a point/line/polygon Part 1: Your first map source:…
Newbie error.. I kept getting an error : unused manifest key: package.rand even though I included the following: rand = "0.8.3" My error was the location of where I added…
Source: https://doc.rust-lang.org/book/ch02-00-guessing-game-tutorial.html Here's the cheatsheet and summary of the rust tutorial (source) $ cargo new myproj $ cd myproj $ vi src/main.rs # to edit $ cargo run file: main.rs…
This is my rust installation cheatsheet create a new rust file, compile, and run executablecreate a rust project using Cargo, compile, check and run executable RUST file : manually you…
Cheatsheet for rust installation for MacOS // installing rust $ curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh // updating $ rustup update // installing c++ compiler if not installed…