- Export your Ghost content (aka backup)
- Open in an editor that support Regex find/replace
- Search for:
/content/images/\d{4}/(\w{3}|\d{2})/
| //------------------------------------------------ | |
| //--- 010 Editor v9.0.2 Binary Template | |
| // | |
| // File: ETL.bt | |
| // Authors: Zhentar | |
| // Version: 1.0 | |
| // Purpose: Microsoft Event Tracing for Windows ETL file format | |
| // Category: Misc | |
| // File Mask: *.etl | |
| // History: |
This was tested on a ThinkPad P70 laptop with an Intel integrated graphics and an NVIDIA GPU:
lspci | egrep 'VGA|3D'
00:02.0 VGA compatible controller: Intel Corporation Device 191b (rev 06)
01:00.0 VGA compatible controller: NVIDIA Corporation GM204GLM [Quadro M3000M] (rev a1)
A reason to use the integrated graphics for display is if installing the NVIDIA drivers causes the display to stop working properly.
In my case, Ubuntu would get stuck in a login loop after installing the NVIDIA drivers.
This happened regardless if I installed the drivers from the "Additional Drivers" tab in "System Settings" or the ppa:graphics-drivers/ppa in the command-line.
| { | |
| "tree" : { | |
| "nodeName" : "NODE NAME 1", | |
| "name" : "NODE NAME 1", | |
| "type" : "type3", | |
| "code" : "N1", | |
| "label" : "Node name 1", | |
| "version" : "v1.0", | |
| "link" : { | |
| "name" : "Link NODE NAME 1", |
| #include <stdio.h> | |
| #include <lua.h> | |
| #include <lualib.h> | |
| #include <lauxlib.h> | |
| #include "luajit.h" | |
| int main(int argc, char *argv[]) | |
| { | |
| int status; | |
| lua_State *L; |
| // attribution: http://stackoverflow.com/a/15281070/32453 | |
| // you can compile this with gcc [mingw or mingw-w64] and probably other compilers as well | |
| #include <stdlib.h> // NULL | |
| #include <stdbool.h> // false | |
| #include <windows.h> // AttachConsole, CTRL_C_EVENT, etc. | |
| #include <stdio.h> // printf | |
| #include <strsafe.h> | |
| void logLastError() |
| global | |
| nbproc 1 | |
| maxconn 65536 | |
| defaults | |
| timeout connect 5s | |
| timeout queue 5s | |
| timeout server 30s | |
| timeout tunnel 1h |