| Open file below, tested with the version 4.17 and 4.18: | |
| /Applications/pgAdmin\ 4.app/Contents/Resources/web/config.py | |
| and then find the line contains: "MASTER_PASSWORD_REQUIRED" and change the parameter into "False" | |
| Note: The folder location for Windows is in the comments. |
| from io import BytesIO | |
| from pprint import pprint as pp | |
| import requests | |
| from PIL import Image | |
| import matplotlib | |
| matplotlib.use('Agg') | |
| import matplotlib.pyplot as plt | |
| import 'package:flutter/material.dart'; | |
| void main() => runApp(TestApp()); | |
| class TestApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| theme: ThemeData( | |
| primaryColor: Colors.green[900], |
Wiki with registry keys for Windows Update: https://github.com/vFense/vFenseAgent-win/wiki/Registry-keys-for-configuring-Automatic-Updates-&-WSUS
Registry key of note:
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\WindowsUpdate\AU
| Entry name | Data type | Values |
|---|---|---|
| UseWUServer | Reg_DWORD | 1 = The computer gets its updates from a WSUS server. |
| 0 = The computer gets its updates from Microsoft Update. |
The React community is moving away from HOC (higher order components) in favor of render prop components (RPC). For the most part, HOC and render prop components solve the same problem. However, render prop components provide are gaining popularity because they are more declarative and flexible than an HOC.
Read more:
| FROM ruby:2.3.1 | |
| # Install dependencies | |
| RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs | |
| # Set an environment variable where the Rails app is installed to inside of Docker image: | |
| ENV RAILS_ROOT /var/www/app_name | |
| RUN mkdir -p $RAILS_ROOT | |
| # Set working directory, where the commands will be ran: |
Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html

