I had some drawing in Microsoft Word that i want to convert to DXF. Using this procedure you can convert the drawings to DXF format. You need these softwares: Libreoffice Writer (free) Libreoffice Draw (free) Inkscape (free) I followed this procedure: Open Word files with Libreoffice Writer Delete not correctly…
Information and Communications Technology
-
-
CakePHP 4.x Lighttpd Configuration
This is the configuration for running a cakephp application 4.x on the lighttpd web server: The above configuration is tested on Windows. In this example the cakephp application is served on /TestCake subdomain.
-
Xenserver 7.0 / XCP-ng 7.5 API Python Backup Running VMs
Python 3 script equivalent to the previous powershell gist script. This is the gist: https://gist.github.com/nikiink/97356430e6fd5025ca217afc00831ef6
-
Xenserver 7.0 API PowerShell Backup Running VMs
The script backups one or more virtual machines on one or more Xenserver hosts. The configuration of virtual machine to backup is read from an xml file. This is the gist on github: https://gist.github.com/nikiink/cdc687d1bbe227e5cfa3e5759c7f7214 ## EQUIVALENT BASH SCRIPT: ## SNAPUUID=`xe vm-snapshot uuid=$VMUUID new-name-label="SNAPSHOT-$VMUUID-$DATE"` ## xe template-param-set is-a-template=false ha-always-run=false uuid=${SNAPUUID} ##…
-
Windows Update Automatic Download, Install, Reboot and repeat (reboot and recall)
With this scheduled task you can install all windows updates without user intervention. The reboot is automatic until all updates are installed. Download the three files on the following gist. The files must be copied in the folder C:\WUA: C:\WUA\WUA_SearchDownloadInstall.vbs C:\WUA\WUA_SearchDownloadInstall.bat C:\WUA\WUA_SearchDownloadInstall.xml After copying these three files open the task…
-
Windows 7 Recovering RegBack Scheduled Task
If you want to recover the task that backups the registry of windows 7. You must import this file in the Task Scheduler (save as xml and import): <Task xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task"> <RegistrationInfo> <Author>$(@%systemroot%\system32\regidle.dll,-600)</Author> <Version>1.0</Version> <Source>$(@%systemroot%\system32\regidle.dll,-601)</Source> <URI>Microsoft\Windows\Registry\RegIdleBackup</URI> <Description>$(@%systemroot%\system32\regidle.dll,-602)</Description> <SecurityDescriptor>O:BAG:BAD:P(A;;FA;;;BA)(A;;FA;;;SY)(A;;FR;;;IU)(A;;FRFX;;;S-1-5-80-2970612574-78537857-698502321-558674196-1451644582)</SecurityDescriptor> </RegistrationInfo> <Triggers> <CalendarTrigger> <StartBoundary>2008-01-01T00:00:00</StartBoundary> <ScheduleByDay> <DaysInterval>10</DaysInterval> </ScheduleByDay> <RandomDelay>PT1H</RandomDelay> </CalendarTrigger> </Triggers> <Settings> <Enabled>true</Enabled> <MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>…
-
Samsung Grand 2 G7102 updating to android 4.4.2 and replacing touch emergency calls only
Hello, yesterday i replaced the touch screen to my Galaxy Grand 2. It has android version 4.3 and after replacing the touch screen all was working. So, after replacing touch screen i decided to update android to version 4.4.2. After updating the phone didn’t boot anymore. It hangs on boot with…
-
[Android] Automatic brightness without sensor using front camera
I have a Samsung Grand Neo Plus. That phone misses the brightness sensor but has the front facing camera. Using Lux Lite (the free version) or Lux (the full version) application it’s possible to configure the front facing camera as brightness sensor. After installing it, the application uses the light…
-
Android 5 Lollipop Enable Mobile Data with Llamalab Automate
Using Automate on a rooted Galaxy S4 with Lollipop 5.0.1 i was in trouble enabling or disabling mobile data. My android is rooted correctly but automate give me a timeout error. To enable/disable mobile data i used a shell superuser command action block with one of these commands: svc data…
-
Reset/Restore Glam'our START boot hangs
I found an android phone of the Glam’our brand, the START model hanging on boot with the Glam’our logo unable to boot. The phone was rooted and with link2sd plus installed and with most of the applications linked to sd. I tryed resetting it to factory defaults. I found no documentation about that. I…