const [stuff, setStuff] = useState([]);
const request = "example/tasks.json", {
method: "POST",
body: JSON.stringify(taskData),
headers: { "Content-Type": "application/json" },
};
useEffect( ()=> {
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
early draft on wayback: | |
https://web.archive.org/web/20190822012241/https://poseidon01.ssrn.com/delivery.php?ID=320069123112084115082110093085000009049040064078088068077091108101087082065002125011054057055004118051018069087125025029003020015048049051033114027091118019093121004085077028000001095113093105065112124083066090004086089091078115005094126006068112072017&EXT=pdf | |
two hoaxes / fakes: this is related: https://stacker.news/items/88383 | |
https://draftable.com/compare/aWysWBkgckpv | |
Luke hidden file: | |
https://bitcoinhackers.org/@jb55/105595146491662406 | |
https://fullycrypto.com/bitcoin-whitepaper-draft-presented-in-hodlonaut-trial | |
https://fullycrypto.com/bitcoin-whitepaper |
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
## Ignore Visual Studio temporary files, build results, and | |
## files generated by popular Visual Studio add-ons. | |
# User-specific files | |
*.suo | |
*.user | |
*.sln.docstates | |
# Build results |
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
// starting cosmetics setup here | |
line = "--------------------" | |
line1 = "#####################################################################################" | |
print(line1) | |
print("__ _______ ______ _____ _____ _____ _____ _ __ ______ __") | |
print("\ \ / /_ _| ____|_ _| / ____| __ \ /\ / ____| |/ / | _ \ \ / /") | |
print(" \ \ /\ / / | | | |__ | | | | | |__) | / \ | | | ' / | |_) \ \_/ / ") | |
print(" \ \/ \/ / | | | __| | | | | | _ / / /\ \| | | < | _ < \ / ") | |
print(" \ /\ / _| |_| | _| |_ | |____| | \ \ / ____ \ |____| . \ | |_) | | | ") |
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
/* | |
* Handling Errors using async/await | |
* Has to be used inside an async function | |
*/ | |
try { | |
const response = await axios.get('https://your.site/api/v1/bla/ble/bli'); | |
// Success π | |
console.log(response); | |
} catch (error) { | |
// Error π¨ |