godmar
godmar
May I ask a clarifying question regarding the items in Section T (Templates + Concepts), such as [T.13: Prefer the shorthand notation for simple, single-type argument concepts](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rt-shorthand). Is it correct...
Ok, this is a newbie question. The documentation says that I can use [mdx for the blog](https://github.com/pedronauck/gatsby-starter-docz#-whats-inside). How exactly do I do that? If I place an `index.mdx` instead of...
I observed the following and would like to know if my fix is correct. Suppose a chart is given two datasets called A and B. Normally, A animates to B....
While debugging #741, I noticed that your eosio-cpp driver uses a temporary file in /tmp that's created ad-hoc by concatenating "/tmp" and the file name, e.g. `/tmp/addressbook_with_age_and_notify.cpp.o` when compiling `addressbook_with_age_and_notify.cpp`...
One of my pet peeves with npm for as far as I remember has been that when following the [provided installation instructions](https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions-enterprise-linux-fedora-and-snap-packages) for Linux systems (specifically installing the [NodeSource provided...
After documenting the source of the permission corruption regularly occurring in `~/.npm/_cacache` (see issue #174 ) I looked at the opposite error, which is `sudo npm install -g` leaving files...
After running the digital clock for a few days, it gets stuck in the [loop here](https://github.com/timwaizenegger/raspberrypi-examples/blob/master/actor-led-7segment-4numbers/tm1637.py#L118-L123): ```python while(IO.input(self.__Datapin)): sleep(0.001) if(IO.input(self.__Datapin)): IO.setup(self.__Datapin, IO.OUT) IO.output(self.__Datapin, IO.LOW) IO.setup(self.__Datapin, IO.IN) ``` I can "fix"...
Consider this program: ```rust use rustyline::Editor; fn main() { let mut rl = Editor::::new(); if let Ok(line) = rl.readline(">> ") { println!("Line: {:x?}", line.as_bytes()); } } ``` When I run...
This code [here](https://github.com/meigo/svelte-video-player/blob/1a2bd325b9a1d45ab459af72aa20185744953e62/src/PlayIconCenter.svelte#L27) should be: ``` transition:fade|local={{ duration: 500 }}> ``` or else you trigger [this bug](https://github.com/sveltejs/kit/issues/7405).
Hi, when the components `source` property changes, should the video that's displayed be updated? My test case: ```svelte import VideoPlayer from 'svelte-video-player'; let src1 = 'https://res.cloudinary.com/dvm02rtnk/video/upload/v1628057414/blender/HERO_Blender_Grease_Pencil_Showcase_1080p_ctsjpy.mp4'; let src2 = 'https://res.cloudinary.com/dvm02rtnk/video/upload/v1628057411/blender/Agent_327_Operation_Barbershop_1080p_hf1iq7.mp4';...