This file contains hidden or 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
# customizations to add so that VIM suits best bash scripting | |
set number | |
set showmatch | |
syntax enable | |
set autoindent | |
set smartindent |
This file contains hidden or 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
Access the VM location | |
Open CMD | |
Use the following command (replace YOUR_VM_NAME with your VM name): | |
vboxmanage setextradata YOUR_VM_NAME VBoxInternal/CPUM/HostCPUID/80000006/edx 0x02009140 |
This file contains hidden or 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
################################################################################################################# | |
# An example of local.conf modified by George Calin [email protected] , on 1st of December 2020 | |
# This local.conf supports Qt libraries and various other utilities (GStreamer, etc) | |
# The local.conf is tested and runs on Yocto 3.1 dunfell, and most likely with all versions until Yocto 2.6 Thud | |
# Pre Thud (Yocto 2.6) compatibility of each package and the local.conf structure has to be verified | |
################################################################################################################## | |
# You need to select a specific machine to target the build with. There are a selection | |
# of emulated machines available which can boot and run in the QEMU emulator: | |
# | |
#MACHINE ?= "qemuarm" |
This file contains hidden or 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
Public Sub GetData_from_SQLServerDatabase_with_VBA_Excel() | |
Dim strConnectionString As String, strQuery As String, strMessage As String | |
Dim objConn As ADODB.Connection | |
Dim rsData As ADODB.Recordset | |
Dim varArrayReader As Variant | |
Dim intLBoundColumn As Integer, intUBoundColumn As Integer ' this variable is meant to hold the lower and upper indexes of the 1st dimension of the Array (columns) | |
Dim intLBoundRow As Integer, intUBoundRow As Integer ' this variable is meant to hold the lower and upper indexes of the 2nd dimension of the Array (rows) | |
Dim i As Integer, j As Integer |
This file contains hidden or 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
Public Sub GetData_from_SQLServerDatabase_with_VBA_Excel() | |
Dim strConnectionString As String, strQuery As String, strMessage As String | |
Dim objConn As ADODB.Connection | |
Dim rsData As ADODB.Recordset | |
Dim varArrayReader As Variant | |
Dim intLBoundColumn As Integer, intUBoundColumn As Integer ' this variable is meant to hold the lower and upper indexes of the 1st dimension of the Array (columns) | |
Dim intLBoundRow As Integer, intUBoundRow As Integer ' this variable is meant to hold the lower and upper indexes of the 2nd dimension of the Array (rows) | |
Dim i As Integer, j As Integer |
This file contains hidden or 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
https://www.ics.com/blog/getting-started-qt-and-qt-creator-linux | |
step 1: $ sudo apt-get install build-essential libgl1-mesa-dev | |
step 2: sudo apt install gdb | |
step 3: | |
$ cd ~/Downloads | |
$ chmod a+x qt-unified-linux-x64-2.0.3-1-online.run |
This file contains hidden or 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
enable-migration | |
!!! Asigura-te ca este setat proiectul care contine referinta la Entity Framework in console | |
add-migration | |
!!! Creeaza clasele si codul .cs pentru migrarea datelor. Se utilizeaza un API C# care descrie in C# ce va aparea in SQL mai tarziu | |
update-database -script !!! Creeaza un fisier care contine codul T-SQL pentru construirea bazei de date si a tabelelor conform migrarii | |
ori | |
update-database -verbose !!! Efectueaza modificarile conform cu informatiile de migrare direct in baza de date. |