# For RHEL 7
yum install VirtualBox-5.1-5.1.14_112924_el7-1.x86_64.rpm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'Change the language of your PowerPoint | |
'In newer PowerPoint version, you need to first save your PowerPoint with macros enabled. | |
'Go to the VIEW tab, select MACROS (at the right), enter a name, e.g. toEnglish, and press create to enter below text. | |
'Now you can run the macro from the same menu. | |
'Alternatively, but less complete, go to the VIEW tab, select OUTLINE, select all slides (using CTRL-A). | |
'Now go to the REVIEW tab, select Language, and change the proofing language. | |
'Also make sure that you set the WINDOWS Language (taskbar, bottom right) to the preferred language, otherwise all new text | |
'will have the same problem (Press CTRL + WINDOWS + SPACE to switch the Keyboard input language). | |
Option Explicit | |
Sub toEnglish() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Add-EnvPath { | |
param( | |
[Parameter(Mandatory=$true)] | |
[string] $Path, | |
[ValidateSet('Machine', 'User', 'Session')] | |
[string] $Container = 'Session' | |
) | |
if ($Container -ne 'Session') { |
- First download
dbfpy
: http://sourceforge.net/projects/dbfpy/files/latest/download?source=files - Then install:
sudo python setup.py install
To convert DBF file to CSV:
./dbf2csv database.dbf
NewerOlder