It's for users having ssl files (crt.pem, key.pem)
If you are coding development env, edit 'hosts' file
Like
127.0.0.1 localhost ... local.mydomain.com ...
- install patch-package
It's for users having ssl files (crt.pem, key.pem)
If you are coding development env, edit 'hosts' file
Like
127.0.0.1 localhost ... local.mydomain.com ...
| import 'package:flutter/material.dart'; | |
| const double _kPanelHeaderCollapsedHeight = kMinInteractiveDimension; | |
| const EdgeInsets _kPanelHeaderExpandedDefaultPadding = EdgeInsets.symmetric( | |
| vertical: 64.0 - _kPanelHeaderCollapsedHeight, | |
| ); | |
| class _SaltedKey<S, V> extends LocalKey { | |
| const _SaltedKey(this.salt, this.value); |
References:
I started using React Native in September 2018. I always forget some things when I build new apps, so I'll keep track of the gotchas on this post.
Some topics, such as navigation, will be fundamental to how I think about apps. Others, will be one-line helpers that make apps work more smoothly.
It's gotten to the point where I find my own answers from 6 months before on certain Github issues.
I'll keep adding over time as I think of more. If anyone thinks these topics would be useful, let me know and I'll elaborate.
I have made libraries to address a number of the topics here, from navigation to design.
| # Dart: Validate Password | |
| This code snippet shows how to validate a password | |
| **Requirement** : | |
| Password should be more than 8 characters long | |
| It should contain | |
| at least one Uppercase ( Capital ) letter | |
| at least one lowercase character | |
| at least digit and | |
| special character. |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
| ; Press Ctrl+Shift+Space to set any currently active window to be always on top. | |
| ; Press Ctrl+Shift+Space again set the window to no longer be always on top. | |
| ; Source: https://www.howtogeek.com/196958/the-3-best-ways-to-make-a-window-always-on-top-on-windows | |
| ^+SPACE:: | |
| WinGetTitle, activeWindow, A | |
| if IsWindowAlwaysOnTop(activeWindow) { | |
| notificationMessage := "The window """ . activeWindow . """ is now always on top." | |
| notificationIcon := 16 + 1 ; No notification sound (16) + Info icon (1) | |
| } |
Feel free to contact me at robert.balicki@gmail.com or tweet at me @statisticsftw
This is a rough outline of how we utilize next.js and S3/Cloudfront. Hope it helps!
It assumes some knowledge of AWS.
| To make Pageant automatically run and load keys at startup: | |
| - Find the location of pageant.exe | |
| - Windows key + R to open the 'run' dialog box | |
| - Type: 'shell:startup' in the dialog box | |
| - Create a shortcut to the pageant.exe and put into this startup folder. |
| /** | |
| * @type {Object} JavaScript namespace for our application. | |
| */ | |
| var Custom_Modal = {}; | |
| (function($, Custom_Modal) { | |
| var $ = jQuery; | |
| _.extend( Custom_Modal, { view: {}, controller: {} } ); |