Skip to content

Commit 27ee21e

Browse files
Merge pull request #46 from hurricanemark/Phase2-BaselineToSeriousWorks
Phase2 baseline to serious works
2 parents 13e5d73 + cafb9c3 commit 27ee21e

22 files changed

+121
-364
lines changed

.dockerignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@
99
**/.editorconfig
1010
**/.aws
1111
**/dist
12-
**/utils.js
12+
**/utils.js
13+
**/index.copy.js

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ views/header2.ejs
55
index-temp.ejs
66
utils.js
77
WeatherApp_US_East1Key.ppk
8-
index copy.js
8+
index.copy.js

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,4 +237,16 @@ We will choose [Selenium IDE chrome extension](https://chrome.google.com/webstor
237237
Ran all test suites within paths "C:\Users\markn\AppData\Roaming\npm\node_modules\selenium-side-runner\dist\main.test.js".
238238

239239
StagingProjs>
240-
```
240+
```
241+
242+
## Convert Web App into Mobile App
243+
244+
The advantage of designing and implementing a responsive web app earlier is now paying off. If you were to open it using the browser on your phone. Its looks-and-feel is fine.
245+
246+
Before you invest time and effort developing mobile-native, convert this hosting URL using online converter such as [GoNative](https://gonative.io/app/0n4pabzw75m638htrqkvkmw5hw).
247+
248+
We also select [AppsGeyzer](https://appsgeyzer.com) to make another conversion for good measure. Download mobile image [here](https://appsgeyser.io/16161262/TechRolEmiWeather).
249+
250+
Often, this is enough to demonstrate proof of concept. You can use it to make further decision in your mobile development.
251+
252+
![iOS Data Screen](./public/iOSScreenRaw.PNG) ![iOS Screenshot](./public/iOSScreen1Raw.PNG)

crypto.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,5 @@ const toLocalDt = (unix_ts) => {
3030
return hours + ':' + minutes.substr(-2) + ':' + seconds.substr(-2);
3131
}
3232

33-
function test() {
34-
let enStr = encryptAES("e88e1a8096cd4897b79b230a9c49b243");
35-
console.log("Encrypted Key: " + enStr);
36-
// WEATHERBIT_KEY = Object.entries(Xcode).value;
37-
console.log("Decrypted key: " + JSON.parse(decryptAES(enStr)).text);
3833

39-
}
40-
41-
// test();
4234
export {encrypt, decrypt, encryptAES, decryptAES, toLocalDt};

index copy.js

Lines changed: 0 additions & 335 deletions
This file was deleted.

0 commit comments

Comments
 (0)