-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
144 additions
and
32 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: IOT (Internet of Things) | ||
--- | ||
|
||
... | ||
|
||
--- | ||
|
||
**Topics to cover and ideas** | ||
|
||
- why it is big | ||
- what it means for programmers | ||
- massive job opportunities | ||
- the power of software vs hardware | ||
- it is all about code | ||
- most IOT vendors don't understand much about modern development practices and security | ||
- show shodan |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
title: WallabyJS and NodeJS | ||
--- | ||
|
||
... | ||
|
||
--- | ||
|
||
**Topics to cover and ideas** | ||
|
||
- why wallabyJS is a massive paradigm shift and why is it so good | ||
- real time test execution | ||
- only execution of tests affected by changes | ||
- ability to see the code coverage in real-time | ||
- ability to easily just run one test | ||
- which with the real-time coverage, provides a much better way to debug that the normal 'debug/breakpoint model' | ||
|
||
- why NodeJS took the world by storm | ||
- the power of async code | ||
- generating 20k requests with a couple lines of code | ||
- coding at the speed of thought (and type) | ||
- node history (based on chrome's V8) | ||
- the node forking incident (io.js) | ||
- why it was so important | ||
- why java could had done with a fork like that |
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
title: Strings should be banned | ||
--- | ||
|
||
... | ||
|
||
--- | ||
|
||
**Topics to cover and ideas** | ||
|
||
- Strings are not strongly typed | ||
- You never want a string , you want a specific type (with a very specific format/regex) | ||
- Strings are 4Gb monsters | ||
- What happens is some fields are given 100k of data (what is the impact on the back end | ||
- Each layer needs to validate all data that it receives and consumes |