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 formatString(str) { | |
| let strArray = str.split('_'); | |
| let formattedString = ""; | |
| for(i=0; i< strArray.length;i++) { | |
| formattedString += makeFirstLetterUpperCase(strArray[i]); | |
| } | |
| } | |
| function makeFirstLetterUpperCase(str) { | |
| let str1 = str[0].toUpperCase() + str.slice(1,str.length); |
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
| RewriteEngine On | |
| # Some hosts may require you to use the `RewriteBase` directive. | |
| # If you need to use the `RewriteBase` directive, it should be the | |
| # absolute physical path to the directory that contains this htaccess file. | |
| # | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteRule ^(.*)$ index.html [QSA,L] |
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
| Awesome Flutter | |
| https://github.com/Solido/awesome-flutter | |
| Splash Screen: | |
| https://medium.com/@vignesh_prakash/flutter-splash-screen-84fb0307ac55 | |
| Form: | |
| https://codingwithjoe.com/building-forms-with-flutter/ | |
| Alert Dialog |
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
| echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p |
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
| [Desktop Entry] | |
| Version=1.0 | |
| Name=Eclipse | |
| Comment=Java IDE | |
| Type=Application | |
| Categories=Development;IDE; | |
| Exec=/home/{username}/Programs/eclipse/eclipse | |
| Terminal=false | |
| StartupNotify=true | |
| Icon=/home/{username}/Programs/eclipse/icon.xpm |
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
| # place this file in the same folder as your index.html on your server | |
| # make sure to set the right base href attribute in your index.html | |
| # this file ist hosted on GithubGist: | |
| # https://gist.github.com/julianpoemp/bcf277cb56d2420cc53ec630a04a3566 | |
| # REDIRECTION | |
| # to index.html to make routing work in production | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine on |
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
| https://hackernoon.com/the-100-correct-way-to-structure-a-react-app-or-why-theres-no-such-thing-3ede534ef1ed |
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
| https://codeburst.io/redux-a-crud-example-abb834d763c9 |
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
| https://levelup.gitconnected.com/typescript-and-react-using-create-react-app-a-step-by-step-guide-to-setting-up-your-first-app-6deda70843a4 |
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 hasRegExpU() { | |
| try { | |
| var pattern = new RegExp(".", "u"); | |
| return true; | |
| } catch (ex) { | |
| return false; | |
| } | |
| } |