with import <nixpkgs> { };
mkShell {
name = "pybids-dev-env";
buildInputs = with python3Packages; [
python3
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
| # location ~/.TeXworks/configuration/syntax-patterns.txt | |
| # TeXworks: Patterns for syntax coloring | |
| # Each entry consists of three whitespace-separated fields: | |
| # <style> <spell?> <regex> | |
| # <style> is a combination of color and style flags | |
| # Valid syntax: | |
| # <fgcolor> | |
| # <fgcolor>/<bgcolor> |
configuration.nix
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
{ config, pkgs, ... }:
{
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
| #!/bin/bash | |
| echo "install tftp and dhcp server" | |
| sudo apt install isc-dhcp-server tftpd-hpa samba cifs-utils samba-client -y | |
| sudo systemctl start isc-dhcp-server | |
| sudo systemctl enable isc-dhcp-server | |
| sudo systemctl start tftpd-hpa |
CREATE FOLDER TO SHARE AND ADD PERMISSIONS
cd ~/Documents
mkdir sambaPublicShare
chmod 777 sambaPublicShareINSTALL SAMBA
sudo apt-get install samba
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| #include "freertos/FreeRTOS.h" | |
| #include "nvs_flash.h" | |
| #include "lwip/err.h" | |
| #include "esp_wifi.h" | |
| #include "esp_wifi_internal.h" | |
| #include "esp_system.h" | |
| #include "esp_event.h" | |
| #include "esp_event_loop.h" | |
| uint16_t offset = 0; |