- After the OS image is installed on the SD card, open it.
- Create an empty file named ssh
- Create a file named wpa_supplicant.conf with the following content.
country=AU
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
import subprocess | |
def runcmd(cmd, verbose = False, *args, **kwargs): | |
process = subprocess.Popen( | |
cmd, | |
stdout = subprocess.PIPE, | |
stderr = subprocess.PIPE, | |
text = True, | |
shell = True |
import sys | |
import os | |
# todo: add main entry | |
# todo: check arg length | |
# todo: dd readme comment | |
''' | |
Pattern |
''' | |
The script is intended to remove comment line in soruce files. | |
The script checks all the files (recursively) in the same folder where it is run. | |
To change conditions see toBeRemoved(line) function. | |
''' | |
import os | |
def toBeRemoved(line): | |
if line[:4] == "/***": |
Download MSYS2 and follow the instructions: https://www.msys2.org/
Install MinGW64 https://stackoverflow.com/questions/30069830/how-to-install-mingw-w64-and-msys2
# Sample code from https://www.redblobgames.com/pathfinding/a-star/ | |
# Copyright 2014 Red Blob Games <[email protected]> | |
# | |
# Feel free to use this code in your own projects, including commercial projects | |
# License: Apache v2.0 <http://www.apache.org/licenses/LICENSE-2.0.html> | |
class SimpleGraph: | |
def __init__(self): | |
self.edges = {} | |
""" | |
Exports a blender model into my binary model format. | |
Python: 3.2 | |
Blender: 263 | |
Author: Eduárd Mándy | |
""" | |
""" | |
MBM FILE SRUCTURE |
// https://stackoverflow.com/questions/10150468/how-to-redirect-cin-and-cout-to-files | |
#include <iostream> | |
#include <fstream> | |
#include <string> | |
void f() | |
{ | |
std::string line; | |
while(std::getline(std::cin, line)) //input from the file in.txt |
// http://www.flipcode.com/archives/How_To_Find_Memory_Leaks.shtml | |
// http://en.cppreference.com/w/cpp/memory/new/operator_new | |
// http://en.cppreference.com/w/cpp/memory/new/operator_delete | |
#ifndef DETECT_MEMORY_LEAK_H | |
#define DETECT_MEMORY_LEAK_H | |
#include <cstdlib> | |
#include <cstring> | |
#include <iostream> |
// http://stackoverflow.com/questions/8767166/passing-2d-array-to-function/17569578#17569578 | |
#include <iostream> | |
template <size_t rows, size_t cols> | |
void process_2d_array_template( int( &array )[rows][cols] ) | |
{ | |
for ( size_t i = 0; i < rows; ++i ) | |
{ | |
std::cout << i << ": "; |