React ui
material ui http://www.material-ui.com/#/components/badge
react bootstrap http://gcanti.github.io/resources/tcomb-react-bootstrap/playground/playground.html
http://react-bootstrap.github.io/components.html#navbars
complementary tools https://github.com/facebook/react/wiki/Complementary-Tools
awesome-react https://github.com/enaqx/awesome-react#boilerplates
forms https://github.com/insin/newforms
kanban in js http://webix.com/demos/
react swal htt
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
{ | |
"modules": [ | |
{ | |
"type": "leaving", | |
"name": "leaving", | |
"screens": [ | |
{ | |
"type": "image_text", | |
"image": "img.com", | |
"image_text": "Returning to earth momentarily...", |
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
{ | |
"modules": [ | |
{ | |
"type": "welcome", | |
"name": "welcome", | |
"screens": [ | |
{ | |
"type": "image_text", | |
"image": "img.com", | |
"image_text": "Traveling to the Multiverse, one moment please...", |
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
{ | |
"modules": [ | |
{ | |
"type": "room", | |
"name": "room_welcome", | |
"screens": [ | |
{ | |
"type": "carla_text_two_levels", | |
"gray_text_top": "{{session_id.round_id.room_id.user_id.name}}, meet {{session_id.round_id.room_id.other_user_id.name}}.", | |
"gray_text_below": "{{session_id.round_id.room_id.other_user_id.name}}, meet {{session_id.round_id.room_id.user_id.name}}.", |
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
{ | |
"modules": [ | |
{ | |
"type": "prejoin", | |
"name": "breathe", | |
"screens": [ | |
{ | |
"type": "carla_text_two_levels", | |
"gray_text_top": "Okay, let’s start the session by taking three deep breaths so that we can relax.", | |
"gray_text_below": "Follow my count...", |
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
Unhandled rejection TypeError: Unable to generate certificate due to | |
StatusCodeError: 404 - "{\"message\":\"User pool us-east-2_76f5a0711ca3408d81e145b2321ea4e5 does not exist.\"}" | |
at /Users/rnjai/Desktop/auth/node_modules/cognito-express/lib/strategy.js:42:23 | |
at tryCatcher (/Users/rnjai/Desktop/auth/node_modules/bluebird/js/release/util.js:16:23) | |
at Promise._settlePromiseFromHandler (/Users/rnjai/Desktop/auth/node_modules/bluebird/js/release/promise.js:547:31) | |
at Promise._settlePromise (/Users/rnjai/Desktop/auth/node_modules/bluebird/js/release/promise.js:604:18) | |
at Promise._settlePromise0 (/Users/rnjai/Desktop/auth/node_modules/bluebird/js/release/promise.js:649:10) | |
at Promise._settlePromises (/Users/rnjai/Desktop/auth/node_modules/bluebird/js/release/promise.js:725:18) | |
at _drainQueueStep (/Users/rnjai/Desktop/auth/node_modules/bluebird/js/release/async.js:93:12) | |
at _drainQueue (/Users/rnjai/Desktop/auth/node_modules/bluebird/js/release/async.js:86:9) |
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
function saveResourcesToS3($file_Path, $content, $type){ | |
$bucket = $this->aws_s3_bucket; | |
$key = 'resources'.'/'.$this->application_version . $file_Path; | |
$base_put_array = [ | |
'Bucket' => $bucket, | |
'Key' => $key, | |
'Body' => $content, | |
'ACL' => 'public-read', | |
]; |
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
https://blogs.msdn.microsoft.com/sarahsays/2016/06/01/microsoft-bot-framework-part-2/ | |
https://docs.botframework.com/en-us/node/builder/guides/debug-locally-with-vscode/#navtitle | |
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
Following this in general -http://diyhacking.com/connect-raspberry-pi-to-laptop-display/ | |
1. SD card not readable - solved by http://goo.gl/lqaZ2H | |
Download first link. | |
2. The ethernet cable was connected from laptop to pi but the wireless internet was not getting shared over local area connection - | |
solved by http://goo.gl/MOfaZV | |
To do - | |
http://stackoverflow.com/questions/16040128/hook-up-raspberry-pi-via-ethernet-to-laptop-without-router | |
https://www.raspberrypi.org/blog/use-your-desktop-or-laptop-screen-and-keyboard-with-your-pi/ |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"> | |
<title>Node-Link Tree</title> | |
<link href="interactive_tree.css" rel="stylesheet" type="text/css" /> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js?1.27.2"></script> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.layout.js?1.27.2"></script> | |