Skip to content

Instantly share code, notes, and snippets.

@dsl400
dsl400 / avr.cfg
Last active December 25, 2022 09:05
ida config for atmega328p
.ATmega328
; Ida avr.cfg (c) THANATOS
SUBARCH=5
RAM=2048
ROM=32768
EEPROM=1024
; MEMORY MAP
@dsl400
dsl400 / settings.py
Last active September 3, 2022 22:41
django serve angular static
ANGULAR_DIR_NAME= 'dist'
ANGULAR_APP_DIR = os.path.join(BASE_DIR, f'../{ANGULAR_DIR_NAME}')
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATIC_URL = '/static/'
STATICFILES_DIRS = [
ANGULAR_APP_DIR,
]