- On 'My Account' -> 'Personal Information' & 'Notification Settings', the 'Save' button is shifted up about 5px.
- 'How It Works' buttons redirects to 'Not Found'.
- When you click the hamburger on the navigation top bar, the navigation options (i.e. 'Home', 'About') are slightly shifted to the right.
- (?) The navigation options drawer should close after I click outside the navigation options after they have been opened by the hamburger.
- On Sign In, the 'Forgot password?' button and 'Sign in' button are not horizontally centered with each other.
This file contains hidden or 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
#!/bin/bash | |
for dir in $(ls) | |
do | |
if [ ! -f $dir/package.json ]; then | |
echo 'No modules to install for: ' $dir | |
else | |
echo 'Reinstalling node_modules for: ' $dir; | |
if [ -d $dir/node_modules/ ]; then | |
rm -rf $dir/node_modules/ |
This file contains hidden or 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
console.log(data) | |
var filterBy | |
// filtering | |
switch (body.orderBy.toLowerCase()) { | |
case 'name': | |
filterBy = 'first_name' | |
break; | |
case 'age': | |
filterBy = 'age' | |
break; |
This file contains hidden or 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 to create a vocabulary from multiple text files under folders | |
function feat_vec = cse408_bow(filepath, voc) | |
[fid, msg] = fopen(filepath, 'rt'); | |
error(msg); | |
line = fgets(fid); % Get the first line from the file. | |
feat_vec = zeros(size(voc)); %Initialize the feature vector' | |
% array of words |
This file contains hidden or 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 to create a vocabulary from multiple text files under folders | |
function voc = buildVoc(folder, voc) | |
stopword = {'ourselves', 'hers', 'between', 'yourself', 'but', 'again', 'there', ... | |
'about', 'once', 'during', 'out', 'very', 'having', 'with', 'they', 'own', ... | |
'an', 'be', 'some', 'for', 'do', 'its', 'yours', 'such', 'into', ... | |
'of', 'most', 'itself', 'other', 'off', 'is', 's', 'am', 'or', ... | |
'who', 'as', 'from', 'him', 'each', 'the', 'themselves', 'until', ... | |
'below', 'are', 'we', 'these', 'your', 'his', 'through', 'don', 'nor', ... |
This file contains hidden or 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
{ | |
"type": "object", | |
"title": "Citrix Sales to Pokemon!", | |
"properties": { | |
"name": { | |
"title": "Seller Name", | |
"type": "string" | |
}, | |
"customer": { | |
"title": "Customer Name", |
This file contains hidden or 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
ToDo: | |
workspace - create another flow |
This file contains hidden or 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 React, { Component } from 'react' | |
export default class NodeSchemaInput extends Component { | |
handleChange = () => { | |
} | |
render() { | |
return <div> |
This file contains hidden or 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 React, { Component } from 'react' | |
import JsonSchemaForm from 'react-jsonschema-form' | |
import NodeNumberInput from '../components/node-number-input' | |
import NodeSchemaInput from '../components/node-schema-input' | |
import FlowDataInput from '../components/flow-data-input' | |
export default class FlowJsonSchemaEditor extends Component { | |
state = { |
NewerOlder