Skip to content

Instantly share code, notes, and snippets.

View Divagnz's full-sized avatar
🌐
Always Coding

Divagnz Divagnz

🌐
Always Coding
  • CloudKeter
  • Queretaro
View GitHub Profile
def _analyze_learning_effectiveness(self, component):
'''Analyze effectiveness of learning mechanisms'''
def analyze_learning_outcomes():
'''Analyze outcomes of learning processes'''
outcomes = self._identify_learning_outcomes(component)
outcome_analysis = {}
for outcome in outcomes:
analysis = {
FROM node:18-alpine AS build
# Install dependencies only when needed
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
WORKDIR /app
# Copy and install the dependencies for the project
COPY package.json package-lock.json ./
RUN npm ci
# Copy all other project files to working directory
COPY . .
{"label":"Coverage Report","message":"82%","schemaVersion":1,"color":"green","namedLogo":"python"}
@Divagnz
Divagnz / ssdp.py
Created April 6, 2020 01:46 — forked from dankrause/ssdp.py
Tiny python SSDP discovery library with no external dependencies
# Copyright 2014 Dan Krause
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,