This is a simple theme to make Notes-Up look like GitHub markdown. Adaptation of sindresorhus/github-markdown-css for Notes-Up.
- Open Preferences
- Click viewer
- Enter the CSS below in "Global style modifications"
- Click close
This is a simple theme to make Notes-Up look like GitHub markdown. Adaptation of sindresorhus/github-markdown-css for Notes-Up.
| www.youtube.com/channel/UCLXo7UDZvByw2ixzpQCufnA | |
| www.youtube.com/channel/UCcXUhZB4t3g8EGdYiqwS4Aw | |
| www.youtube.com/channel/UCHnyfMqiRRG1u-2MsSQLbXA | |
| www.youtube.com/channel/UCBa659QWEk1AI4Tg--mrJ2A | |
| www.youtube.com/channel/UCvt0HYxX34vUvqu66HLXeUw | |
| www.youtube.com/channel/UClY084mbGLK_SLlOfgizjow | |
| www.youtube.com/channel/UCQHsMwcGoH1ygyi-pJs5Z8A | |
| www.youtube.com/channel/UC9mvRrl9o7rG65ABsGVvDBw | |
| www.youtube.com/channel/UCY1kMZp36IQSyNx_9h4mpCg | |
| www.youtube.com/channel/UCmtyQOKKmrMVaKuRXz02jbQ |
| https://kornel.ski/pornelski.atom | |
| https://keithjgrant.com/posts/index.xml | |
| https://webdevelopment-en-meer.blogspot.com/feeds/posts/default | |
| https://witblauw.blogspot.com/feeds/posts/default | |
| https://ictoblog.nl/feed | |
| https://pointieststick.com/feed/ | |
| https://keithjgrant.com/posts/index.xml | |
| https://www.wiserfirst.com/feed.xml | |
| https://vyshnav.xyz/feed.xml | |
| https://ferd.ca/feed.rss |
| # Config file for Qtile TWM written by Robijntje. | |
| # This is part of Robijntjes dotfiles. Copy it and do whatever | |
| # the hell you want with it. | |
| # This is my MacOS clone config. Only the look | |
| # is different from the main version. The rest of | |
| # the config is identical to the main config file. | |
| from typing import List # noqa: F401 |
| # Script for the :MOVE motor | |
| def on_received_value(name, value): | |
| if value == 0: | |
| moveMotorZIP.set_color(Kitronik_Move_Motor.colors(Kitronik_Move_Motor.ZipLedColors.WHITE)) | |
| Kitronik_Move_Motor.move(Kitronik_Move_Motor.DriveDirections.FORWARD, speed) | |
| elif value == 1: | |
| moveMotorZIP.set_color(Kitronik_Move_Motor.colors(Kitronik_Move_Motor.ZipLedColors.WHITE)) | |
| Kitronik_Move_Motor.move(Kitronik_Move_Motor.DriveDirections.REVERSE, speed) | |
| elif value == 2: |
| # Add your Python code here. E.g. | |
| from microbit import * | |
| import math | |
| from neopixel import NeoPixel | |
| from time import sleep | |
| import machine | |
| import utime | |
| from music import play,stop,BA_DING | |
| # A module to simplify the driving o the motors on Kitronik :MOVE Motor buggy with micro:bit |
| from microbit import * | |
| # Kitronik STOP:bit blocks | |
| # turn each LED on or off individually | |
| def stopBitLight(colour, illuminate): | |
| if colour == "Red": | |
| if illuminate == "On": | |
| pin0.write_digital(1) | |
| elif illuminate == "Off": | |
| pin0.write_digital(0) |
| # Import micro:bit modules | |
| from microbit import * | |
| from random import randrange | |
| import music | |
| from collections import OrderedDict | |
| moveTimer = 0 | |
| playerMoveSpeed = 2 #higher is slower | |
| fallTimer = 0 |
Dit zullen veel van jullie je misschien afvragen. Waarom moeten we kunnen programmeren, anderen kunnen het toch ook voor ons doen. De realiteit is helaas dat digitale apparaten een steeds grotere rol in ons leven spelen. Denk er maar eens over na: je winkelt vaak online via webshops, betaalt met een online betaalsysteem, bankiert online, speelt multiplayer spelletjes, gebruikt social media via je smartphone en binchwatched netflix op je smart tv. Het is belangrijk dat we in iedergeval tot op een zeker niveau begrijpen hoe deze apparaten werken. Hoe kan jij anders in je toekomstige werk met computers werken en beslissingen maken over technologie. Juist de onwetendheid van veel mensen zorgt voor enorme ICT problemen in de overheid omdat de mensen die erover beslissen er geen vestand van hebben.
Hier een korte uitleg over de basisbeginselen van programmeren. Geschreven door Robin Boers voor Digitale Geletterdheid. Enjoy!
| /* Set default namespace to XUL */ | |
| @namespace | |
| url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
| /* Set font size in folder pane */ | |
| #folderTree >treechildren::-moz-tree-cell-text { | |
| font-size: 12pt !important; | |
| } | |
| /* Set font size in thread pane */ |