More free space in OneDrive
Source:Open Clip Art Using Under Public Domain Attribution
A few days ago, I got an email from Microsoft. My OneDrive has upgraded to get 15GB space. That is cool. I can did more sync on my photo!
Tables Function in TinyMCE at Joomla
By default, Joomla is using TinyMCE in advanced mode. Even it calls "Advanced Mode", the functions are very basic, it is without any functions to control table, such as adding/deleting rows.
Acutally, TinyMCE has this kind of functions, You do not need to install any new plug-ins. Please go to Administration Panel, Click->Extensions-> Plug-ins-> Plug-in Manager: Editor - TinyMCE -> Select Functionality-> Extended.
There will be an extra row of icons in the TinyMCE.
WPF Animation
I built a feature to have an animation on the wide of a panel and the user click the minimize button. I wish to create a shrinking effect.
The best way I found is using DoubleAnimationUsingKeyFrames. This kind of animation can targeting any properties which is using a double as its value, such as Wide. Finally, I put the into a storyboard. Like the following
Code
DoubleAnimationUsingKeyFrames da = new DoubleAnimationUsingKeyFrames(); | |
LinearDoubleKeyFrame ad3 = new LinearDoubleKeyFrame(); | |
ad3.KeyTime = KeyTime.FromTimeSpan(new TimeSpan(0, 0, 0)); | |
ad3.Value = ActualWidth; | |
LinearDoubleKeyFrame ad = new LinearDoubleKeyFrame(); | |
ad.KeyTime = KeyTime.FromTimeSpan(new TimeSpan(0,0,6)); | |
ad.Value = 0; | |
Storyboard strbStoryboard = new Storyboard(); | |
strbStoryboard.Children.Add(da); | |
Storyboard.SetTargetProperty(da, new PropertyPath("(FrameworkElement.Width)")); | |
Storyboard.Begin(this); |
The example is from my opensource project, advgen contact manager
Windows Error:Kernel Security Check Failure(KERNEL_SECURITY_CHECK_FAILURE )
Source:Open Clip Art Using Under Public Domain Attribution
If you saw a blue screen during Windows 8 Installation with the message,"Kernel Security Check Failure"(KERNEL_SECURITY_CHECK_FAILURE ). I believe that is a memory problem. That is possible your ram died! Please get a blank USB drive and download memtest86. And then run the installation and put memtest on that USB drive. Finally, Plug-in that USB drive on the computer which you saw the blue screen. It will run some testes to see whether any problems on your RAM.
Windows 8.1 vs Windows 8.1 Pro
Source:Open Clip Art Using Under Public Domain Attribution
A lot of PCs and Laptops came with Windows 8.1 (Standard Edition). If you are a home user, that is not a big problem. But you are a Business User, even your office is only small office, you still need to consider that very careful. Windows 8.1 cannot join an active domain. If your office is using a Windows Server including Small Business Server, please use Windows 8.1 Professional. Moreover, Windows 8.1 cannot accept any Remote Desktop Connections. If you or your staff need to remote your desktop, please use Windows 8.1 Professional.
Well, that is not the end of world, even you bought PC or Laptop with WIndows 8.1. That is easy to upgrade to Professional with AUD$129, you do not need to rebuild your box again. Please go to Control Panel, and click Add Features to Windows 8.1. And then select buy a new license key. After the confirmation of payment, your windows will be upgraded to Windows 8.1 Professional.