Comment by danbord on Unable to use bindNodeCallback
good tip, it made me advance in my problem resolution. Thanks
View ArticleAzure Functions Node.js typescript global variable
I have some node.js Azure Functions (httptriggers) coded with Typescript that I secure with a jwt token. After validating my token at the beginning of the funtion, I'd like to store it globally so I...
View ArticleSlow Azure functions deployment
I have a Node.js Azure Function in TypeScript. When I deploy, it takes like 25 minutes to deploy.Those are pretty basic functions with Prisma ORM. Building locally takes couple seconds only.Is that...
View Articleios17 safari AudioContext (Web Audio API) problem
Since I upgraded to ios17 my AudioContext is not working on Safari.I have a simple element that I connect a gain node through AudioContext. The audio loads the .mp3 file (remaining time is updated...
View ArticleSvelte/Vite/Typescript source map in browser all of a sudden broken
I have a Svelte project where I'm used to debug my .svelte files inside the web browser in dev tools.Don't know what changed but now searching for svelte files returns the processed javascript files....
View ArticleAnswer by danbord for Svelte/Vite/Typescript source map in browser all of a...
@NickonProblem been reported to Chromium :https://bugs.chromium.org/p/chromium/issues/detail?id=1425475Didn't had time to create a sample though
View ArticleAnswer by danbord for Svelte/Vite/Typescript source map in browser all of a...
Ok, seems to be related to Chromium. I have the problem with Chrome 111.I tested on a computer with Chrome 105 and its working well. So something broke in a recent Chrome update.I'll open another...
View ArticleUse Text-to-speech Azure service on public SPA (no authentication)
I have a public SPA website (written in Svelte), with no user authentication.I'd like to use the Azure Text-to-speech service (as either REST Api or with the azure-cognitive-services npm package).I now...
View ArticleRxjs await Observable complete
I’d like to await the completion of my observable. It has a takeUntil I receive a value emited from my cancel$ observable. Its possible that cancel$ emits a valeu befor observable1 even emits its first...
View ArticleAnswer by danbord for Rxjs await Observable complete
Ok, I finally found my answer here : .toPromise() and lastValueFrom() in rxjslastValueFrom takes a second parameter where you can define a default value when nothing has been emitted.
View ArticleUWP ToggleSwitch put Content on the Left
Is there an easy way to get the content (text) on the left side of a ToggleSwitch control? (Else than messing up the Template).Thanks
View ArticleUWP show Fullscreen Popup, ContentDialog or Flyout
I need to display a full screen dialog (in application window boundaries) in my UWP application, but can't seems to make it work. I tried with :ContentDialog only shows vertically stretched with...
View ArticleCypress get element that a child contains
I'm trying to find in a table my row that cy.contains() a specific text.I cannot do:cy.get("tr").contains("specific text")That will return my span element containing the textI cannot...
View ArticleAnswer by danbord for How to increase space between dotted border dots
Late to the party but I found that neat little tool online.https://kovart.github.io/dashed-border-generator/
View ArticleGit failed with a > fatal error. could not read Username for
I've been struggling with that issue for a couple days now. I'm unable to connect to my Git project (stored in VisualStudio.com) from a specific computer (it works on my second PC). Whenever I try to...
View ArticleAnswer by danbord for Primeng header misalign from body table
My workaround :p-table {cdk-virtual-scroll-viewport {overflow-y: scroll !important;}}
View ArticleUWP slider; hide the value displayed on top
I'm using a Slider control in my UWP app. I need to get rid of the value that is displayed on the top when I'm dragging the thumb of the slider.Tried to edit the template but cannot find that anywhere.
View ArticleXamarin Forms Display image from Embedded resource using XAML
I'm trying to display and embedded image in a shared project resource (as explained here on microsoft documentation). I created the ImageResourceExtension, the project compiles, but I get the following...
View ArticleList Items Vertically on a WrapPanel and take advantage of multiple columns
I need to list items (all of same size) vertically (with a ScrollViewer). I want the items to spread through x columns if the container is large enough to display x columnsI first tried that...
View Articleangular HttpClient with rxjs
I'm trying to do a simple thing in angular 7. I just need to call 1st a getKey REST api, then use the returned key to pass it to a 2nd REST api getData to get my data. In the end I want my service to...
View Article