Скопировать скрипт solution
в директорию с модулем.
Сделать его исполняемым с помощью команды:
chmod u+x solution
После этого для того, чтобы загрузить модуль solution
и создать node для него с major-номером 240 нужно выполнить команду:
Скопировать скрипт solution
в директорию с модулем.
Сделать его исполняемым с помощью команды:
chmod u+x solution
После этого для того, чтобы загрузить модуль solution
и создать node для него с major-номером 240 нужно выполнить команду:
GDB commands by function - simple guide | |
--------------------------------------- | |
More important commands have a (*) by them. | |
Startup | |
% gdb -help print startup help, show switches | |
*% gdb object normal debug | |
*% gdb object core core debug (must specify core file) | |
%% gdb object pid attach to running process | |
% gdb use file command to load object |
Guillaume Papin(@Sarcasm) has a thorough article about compilation databases.
% mkdir build
% (cd build; cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=YES ..)
% ln -s build/compile_commands.json
This profile achieves 50% - 80% release profile performance, while also provides a reasonable amount of safety checks and debugging support. This should also be the profile for your CI build.
-Og -Wall -Wextra -D_FORTIFY_SOURCE=2 -fstack-protector-strong -g -D_GLIBCXX_ASSERTIONS
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
INSTALLATION
On RetroPie shell as user pi:
cd RetroPie-Setup
mkdir -p ext/local/scriptmodules/libretrocores/lr-applewin
pushd ext/local/scriptmodules/libretrocores
wget -O lr-applewin.sh https://gist.githubusercontent.com/Gemba/9dff49492c3ad1d2d3fbb15bfb3ebc4a/raw/2d4edce7744be1fb1f610a52441b752a4f6f9931/lr-applewin.sh
popd
#!/usr/bin/env python | |
""" | |
Takes as input an argument with the starting page number (from 1 to 465). Without arguments downloads all from the first page. | |
""" | |
import os, sys | |
import urllib.request, json | |
n_pages = 465 |