Smile

…to Remember, …to Forget

Browsing Posts in Programming

With Windows 10, there is a setting in windows system to reduce the motion/animation for users. >system settings > ease of access > display > show motion in windows > ON/OFF ON: animate.css is functioning (ver > 3.7.0)https://daneden.github.io/animate.css/ OFF: animate.css is not functioning Hey! It seems that you have animations disabled on your OS, turning Animate.css […]

On Windows 7, to add new firewall rules, or to modify the rules. To add a new firewall rule: netsh advfirewall firewall add rule name=”rdp-miles” dir=in localport=3389 action=allow remoteip=192.168.1.123,123.234.45.67/32 protocol=tcp To alter the firewall rule: netsh advfirewall firewall set rule name=”rdp-miles” new remoteip=192.168.1.0/24,123.234.45.67/32 To show the firewall rule netsh advfirewall firewall show rule name=”rdp-miles”

Select random rows with SQL… Select a random row with MySQL: SELECT column FROM table ORDER BY RAND() LIMIT 1

http://msdn.microsoft.com/en-us/library/b86b82w0.aspx Introduction to Objects in Visual Basic Provides an introduction to the terms and concepts used in object-oriented programming. Understanding Classes Provides an overview of classes and an example of how to define a class. Creating and Using Objects Shows how to create and use instances of classes. Collections in Visual Basic Provides an overview […]