Using CSS to Validate Input

Requirement:

// Should not match
''
' '
'  '
'   '
// Should match
'one-word'
'one-word '
' one-word'
' one-word '
'one phrase with whitespace'
'one phrase with whitespace '
' one phrase with whitespace'
' one phrase with whitespace '
Read More

Disable auto reboot after update on Windows Server 2016

Usually all servers need to be reboot mannually instead of do it automatically because we need to make sure all services are online after reboot. I cannot find Download only option on GUI Windows Update Settings on Windows Server 2016. But we can run command sconfig with admintrators privilege to change it.

Read More

Python Generator

What is generator in Python?

  • A simple way of creating iterators
  • A function with yield statement instead of return statement. It can have mutilple yield statements.
  • Iterator methods __iter__() and __next__() are implemented automatically.
  • yield statement pauses the function saving all its states and later continues from there on successive calls.
  • When called, it returns an object (iterator) but does not start execution immediately.
Read More