a. le premier stage - ourdailytech vanillajs -> transfer the
- 's in the loop as diagrammed:
b. le deuxieme stage - cryptomaven.xyz ->
/** * @param {number[]} array * @param {number} target * @return {number[]} */
c. le troisieme stage - CryptoMaven App on AWS - 12/21; CryptoMaven NFT conversion tool DAPP - 3/22 d. le quatrieme stage, 'fait accompli':: Solidity Contract on PulseChain for: 1.dailytech, cryptomaven, ourdailytech, friendsofgrootsociety, doggywoodboulevard'
A. Newsfeed: Nomics, MetaMask API: GATEWAY to PULSECHAIN B. RATE EXCHANGE: -1:1- Pulse Chain :: Ethereum C. Community: Aggregation of Twitter, combined with site community forum, in same dashboard; D. ChainLink data sync per minute; E. Avatar design page; and manual walk-thru to crypto currencies and meta-resources.
Mongo DB: AWS
GPS system from Doggywood boulevard, home mapping system from BitcoinTracker.net, Lysius also reboot -- note to self: I hate cobwebs!
Crypto Maven new home stationed within the Ethereum Virtual Machine - as blog, owner-input binded; Name: Thomas Milton D3
✨📦 webpack --mode production "main": "index.js", "scripts": { "test": "echo "Error: no test specified" && exit 1", "start": "webpack --mode production", "serve": "webpack-dev-server --output-public-path=/dist/"
const path = require('path');
module.exports = { entry: './src/index.js', output: { path: path.resolve(__dirname, 'dist'), filename: 'bundle_tmm_july-3.js' } };
A starter pack to build JavaScript applications using standards from ES2015, ES2016 & ES2017. It uses webpack, Babel and webpack-dev-server to compile and serve. It is fully compatible with Async/Await as it uses the Babel polyfill.
1.1.0
Install the dependencies
$ npm install
"main": "index.js", "scripts": { "test": "echo "Error: no test specified" && exit 1", "start": "webpack --mode production", "serve": "webpack-dev-server --output-public-path=/dist/"
const path = require('path');
module.exports = { entry: './src/index.js', output: { path: path.resolve(__dirname, 'dist'), filename: 'bundle_tmm.js' } };
A starter pack to build JavaScript applications using standards from ES2015, ES2016 & ES2017. It uses webpack, Babel and webpack-dev-server to compile and serve. It is fully compatible with Async/Await as it uses the Babel polyfill.
1.2.0 APRIL 17, 2022
DB MONGO
const { MongoClient, ServerApiVersion } = require('mongodb'); const uri = "mongodb+srv://thomas:@cluster1.jgrue.mongodb.net/myFirstDatabase?retryWrites=true&w=majority"; const client = new MongoClient(uri, { useNewUrlParser: true, useUnifiedTopology: true, serverApi: ServerApiVersion.v1 }); client.connect(err => { const collection = client.db("test").collection("devices"); // perform actions on the collection object client.close(); });
- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
- Ultimate Code Generator - https://webcode.tools/
- Free Stock Images - https://www.pexels.com
- Free Stock Images With Great API - https://unsplash.com/
- Free- Vectors, mockups - https://www.freepik.com
- Dummy Image Placeholders - https://source.unsplash.com/
- Dummy Image Placeholders - https://placeholder.com
- Free Icons - https://www.iconfinder.com
- Minify JS & CSS - http://minifier.org
- Code Optimization Tools - https://codebeautify.org
- Code Diff Checker - https://www.diffchecker.com
- ES6+ & JSX Compiler - https://babeljs.io/repl
- Sass Converter - https://www.sassmeister.com/
- Less Converter & More - http://www.webtoolkitonline.com
- Markdown Editor - https://stackedit.io
- Jade Converter - http://www.html2jade.org/
- Compress All Images - https://compressor.io/compress
- Compress JPG - http://jpeg-optimizer.com/
- Compress PNG - https://tinypng.com/
- Validate HTML - https://validator.w3.org
- Validate CSS - https://jigsaw.w3.org/css-validator
- Check Browser Compatibility - https://caniuse.com/
- ES6+ Compatibility Table - https://kangax.github.io/compat-table/es6/
- Client Side Code - https://codepen.io
- Client Side Code - https://jsfiddle.net
- Client Side Code - http://liveweave.com
- Server Side Code - https://repl.it
- Snippet Manager - https://gist.github.com
- Snippet Manager - https://pastebin.com
- Create Color Schemes - https://color.hailpixel.com
- Get Color Schemes of Websites - http://stylifyme.com
- Create Gradients - https://uigradients.com
- CSS Button Generator - http://css3buttongenerator.com
- HTML Entity Lookup - http://entity-lookup.leftlogic.com/
- Device Testing - http://www.responsinator.com
- What's My Browser Size - https://www.webpagefx.com/tools/whats-my-browser-size/
- In Browser Wireframing - https://app.moqups.com
- Very Basic In Browser Wireframing - https://wireframe.cc
- Speed & Performance Testing - https://tools.keycdn.com/speed
- Pingdom Speed Test - https://tools.pingdom.com/
- Public API Resources - https://github.com/toddmotto/public-apis?utm_source=mybridge&utm_medium=blog&utm_campaign=read_more
- Organized Docs for all Popular Web Technologies - https://devdocs.io
*I am _very_ ~excited~ today* will display as [bold]I am [italic]very [strikethrough]excited today. H6 Alt-H1 ====== *asterisks* **bold** ~~Scratch~~ 1. First ordered list item 3. Still numbers to two b/c ordered list. * Unordered sub-list Line break without new paragraph. (two trailing spaces) Beginning Indentation (space above) [inline link](https://link.com) [inline link with title](https:/link.com "Link's HomePage") ![alt text](https://link.icon.png "Logo Title Text 1" `Back-ticks make inline code ` ## MARKDOWN #### h1 ## h2 ### h3 ###### h6 U-H1 ====== U-H2 ----- *asterisks* _asterisks_ **asterisks** ~~strikethrough~~ #### ORDERED LIST 1. First ol 2. #### BULLETS * First ul * Second ul - First ul + First ul 1. First sub-ol 2. Second sub-ol .. ... Indented paragraphs Line break without paragraph.. Line break without paragraph #### BLOCKS OF CODE ``` no language indicated ```javascript var s = "javascript"; console.log(s); ``` ```python s = "python" print s #### Horizontal Rule --- *** ___ #### TABLES | Tables | Are | Cool | |--------|:------:|-----:| | col 3 | r-align| $1600| | col 2 | center | $120 | #### BLOCKQUOTES > blockquotes > this line in same blockquote [arbitrary case-insensitive reference text]: https://www.mozilla.org #### HTML <dl> <dt>Definition List</dt> <dd>stuff here...</dd> </dl> [1]: http://slashdot.org [link text itself]: http://www.reddit.com ## JUPYTER ### Typeface and fonts \textrm{Roman} \rm roman \rm\tiny tiny \Tiny Tiny \small small \normal normal \large lg \LARGE LG \huge hg \Huge Hg http://statacumen.com/teaching/ada1/ UNM Stat 427/527: Advanced Data Analysis I (ADA1) Prof Erik Erhardt Fall 2015 Converting from Markdown to LaTeX for poster. ---------- Step 1: Export the source code from your Rmd (Markdown) file so it can be read into your Rnw (LaTeX) file. R Console: Output R code from your homework (see top of my HW.Rmd file) fn.this <- "ADA1_HW_ALL_NESARC_Project_20151118.Rmd" setwd("C:/Dropbox/UNM/teach/ADA_Redesign_2015/ADA1_Content/homework") library(knitr) purl(fn.this) LaTeX %% Add your HW file's *.R file (from perl()) here <<source, comment = NA, echo = FALSE, message = FALSE, warning=FALSE, results='hide', include=FALSE>>= setwd("C:/Dropbox/UNM/teach/ADA_Redesign_2015/ADA1_Content/homework") source("ADA1_HW_ALL_NESARC_Project_20151118.R") @