<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Gossip Burst</title><link>https://devapps.quickvid.app</link><description>Refined celebrity coverage with sleek polish.</description><language>en-us</language><lastBuildDate>Wed, 15 Jul 2026 00:52:18 -0400</lastBuildDate><atom:link href="https://devapps.quickvid.app/rss.xml" rel="self" type="application/rss+xml" /><item><title>Python regex match space only</title><link>https://devapps.quickvid.app/python-regex-match-space-only.html</link><guid isPermaLink="true">https://devapps.quickvid.app/python-regex-match-space-only.html</guid><description>In python3, how do I match exactly whitespace character and not newline \n or tab \t?
I&amp;#039;ve seen the \s+[^\n] answer from Regex match space not \n answer, but for the following example it does no......</description><pubDate>Wed, 15 Jul 2026 04:34:10 -0400</pubDate></item><item><title>NEG in Assembly</title><link>https://devapps.quickvid.app/neg-in-assembly.html</link><guid isPermaLink="true">https://devapps.quickvid.app/neg-in-assembly.html</guid><description>neg 3BH
As I understand, I should get C5, but from my own calculations I got C4 (I switch each 1 to 0 and each 0 to 1). What&amp;#039;s the problem?...</description><pubDate>Wed, 15 Jul 2026 04:19:33 -0400</pubDate></item><item><title>Error compiling Autorest Generated Client</title><link>https://devapps.quickvid.app/error-compiling-autorest-generated-client.html</link><guid isPermaLink="true">https://devapps.quickvid.app/error-compiling-autorest-generated-client.html</guid><description>After autogenerating client using Swagger OpenApi 3.0 spec, I&amp;#039;m unable to compile the generated client. I get error on objects ClientDiagnostics, RawRequestUriBuilder, Utf8JsonRequestContent.
RestC......</description><pubDate>Wed, 15 Jul 2026 04:07:38 -0400</pubDate></item><item><title>What is a mock and when should you use it?</title><link>https://devapps.quickvid.app/what-is-a-mock-and-when-should-you-use-it.html</link><guid isPermaLink="true">https://devapps.quickvid.app/what-is-a-mock-and-when-should-you-use-it.html</guid><description>I just read the Wikipedia article on mock objects, but I&amp;#039;m still not entirely clear on their purpose. It appears they are objects that are created by a test framework when the actual object would b......</description><pubDate>Wed, 15 Jul 2026 04:07:37 -0400</pubDate></item><item><title>How to see the systemd service logs in Ubuntu</title><link>https://devapps.quickvid.app/how-to-see-the-systemd-service-logs-in-ubuntu.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-see-the-systemd-service-logs-in-ubuntu.html</guid><description>I have a below service file:
[Unit]
Description=demo service
Requisite=mosquitto.service
BindsTo=mosquitto.service
[Service]
Type=simple
ExecStart=/usr/bin/python3 /home/john/Documents/source/demo......</description><pubDate>Wed, 15 Jul 2026 04:03:49 -0400</pubDate></item><item><title>How to add multiple columns to pandas dataframe in one assignment</title><link>https://devapps.quickvid.app/how-to-add-multiple-columns-to-pandas-dataframe-in-one-assignment.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-add-multiple-columns-to-pandas-dataframe-in-one-assignment.html</guid><description>I&amp;#039;m trying to figure out how to add multiple columns to pandas simultaneously with Pandas. I would like to do this in one step rather than multiple repeated steps.
import pandas as pd
data = {&amp;#039;co......</description><pubDate>Wed, 15 Jul 2026 04:03:21 -0400</pubDate></item><item><title>ORA-20002: YOU ARE NOT ALLOWED TO CHANGE THE PASSWORD FOR CRITICAL SCHEMAS</title><link>https://devapps.quickvid.app/ora-20002-you-are-not-allowed-to-change-the-password-for-critical-sche.html</link><guid isPermaLink="true">https://devapps.quickvid.app/ora-20002-you-are-not-allowed-to-change-the-password-for-critical-sche.html</guid><description>I&amp;#039;m trying to change the password for Oracle DB user but I&amp;#039;m getting below error:
ORA-28003: password verification for the specified password
ORA-20002: YOU ARE NOT ALLOWED TO CHANGE THE PASSWORD ......</description><pubDate>Wed, 15 Jul 2026 04:02:50 -0400</pubDate></item><item><title>Amazon API gateway timeout</title><link>https://devapps.quickvid.app/amazon-api-gateway-timeout.html</link><guid isPermaLink="true">https://devapps.quickvid.app/amazon-api-gateway-timeout.html</guid><description>I have some issue with API gateway. I made a few API methods, sometimes they work longer than 10 seconds and Amazon returns 504 error. Here is screenshot below:
Please help! How can I increase tim......</description><pubDate>Wed, 15 Jul 2026 04:00:56 -0400</pubDate></item><item><title>classpath - running a java program from the command line</title><link>https://devapps.quickvid.app/classpath-running-a-java-program-from-the-command-line.html</link><guid isPermaLink="true">https://devapps.quickvid.app/classpath-running-a-java-program-from-the-command-line.html</guid><description>My code compiled fine with the following command:
javac -cp &amp;quot;../lib/*&amp;quot; AvroReader.java
(lib is where i put my jar files)
At run time I get a ClassNotFoundException on the following line:
...</description><pubDate>Wed, 15 Jul 2026 03:50:38 -0400</pubDate></item><item><title>Can I set subject/content of email using mailto:?</title><link>https://devapps.quickvid.app/can-i-set-subject-content-of-email-using-mailto.html</link><guid isPermaLink="true">https://devapps.quickvid.app/can-i-set-subject-content-of-email-using-mailto.html</guid><description>Is it possible to set the subject/content of email when I use mailto:?...</description><pubDate>Wed, 15 Jul 2026 03:50:18 -0400</pubDate></item><item><title>Hibernate openSession() vs getCurrentSession()</title><link>https://devapps.quickvid.app/hibernate-opensession-vs-getcurrentsession.html</link><guid isPermaLink="true">https://devapps.quickvid.app/hibernate-opensession-vs-getcurrentsession.html</guid><description>I have some questions about using Hibernate in JSP web application.
What should be the value for hibernate.current_session_context_class?
Then, which of the following statements should be used? An......</description><pubDate>Wed, 15 Jul 2026 03:32:00 -0400</pubDate></item><item><title>Center image in div horizontally [duplicate]</title><link>https://devapps.quickvid.app/center-image-in-div-horizontally-duplicate.html</link><guid isPermaLink="true">https://devapps.quickvid.app/center-image-in-div-horizontally-duplicate.html</guid><description>I have an img in a div (class=&quot;top_image&quot;) and I want this image to be exactly in the middle of the div but nothing I try works...
Thanks for any help!...</description><pubDate>Wed, 15 Jul 2026 03:25:55 -0400</pubDate></item><item><title>ISODate is not defined</title><link>https://devapps.quickvid.app/isodate-is-not-defined.html</link><guid isPermaLink="true">https://devapps.quickvid.app/isodate-is-not-defined.html</guid><description>I am trying to get results from mongodb using nodejs/mongoose.
var dateStr = new Date(year,month,day,0,0,0);
var nextDate = new Date(year,month,day,23,59,59);
GPSData.find({&quot;createdAt&quot; : { $gte :......</description><pubDate>Wed, 15 Jul 2026 03:21:03 -0400</pubDate></item><item><title>Microsoft SQL int type take not negative value</title><link>https://devapps.quickvid.app/microsoft-sql-int-type-take-not-negative-value.html</link><guid isPermaLink="true">https://devapps.quickvid.app/microsoft-sql-int-type-take-not-negative-value.html</guid><description>I have a problem. I created a table in Microsoft SQL and I would like one column to take not negative values. For example, EmployeeSalary column type is int and it hasn&amp;#039;t a negative value....</description><pubDate>Wed, 15 Jul 2026 03:13:30 -0400</pubDate></item><item><title>An exception occurred while executing a transact-sql statement or batch</title><link>https://devapps.quickvid.app/an-exception-occurred-while-executing-a-transact-sql-statement-or-batc.html</link><guid isPermaLink="true">https://devapps.quickvid.app/an-exception-occurred-while-executing-a-transact-sql-statement-or-batc.html</guid><description>I keep getting the error message: an exception occurred while executing a transact-sql statement or batch
when trying to do anything in SQL Server Management Studio 2016.
This occurs when I t......</description><pubDate>Wed, 15 Jul 2026 03:09:28 -0400</pubDate></item><item><title>How to hide/delete underline input Angular Material?</title><link>https://devapps.quickvid.app/how-to-hide-delete-underline-input-angular-material.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-hide-delete-underline-input-angular-material.html</guid><description>I have input element in Angular Material:
&amp;lt;md-input-container&amp;gt;
&amp;lt;input type=&quot;text&quot; mdInput placeholder=&quot;&quot;&amp;gt;
&amp;lt;/md-input-container&amp;gt;
When input has focus it displays underline. How t......</description><pubDate>Wed, 15 Jul 2026 02:50:15 -0400</pubDate></item><item><title>How can I generate a Git patch for a specific commit?</title><link>https://devapps.quickvid.app/how-can-i-generate-a-git-patch-for-a-specific-commit.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-can-i-generate-a-git-patch-for-a-specific-commit.html</guid><description>I need to write a script that creates patches for a list of SHA-1 commit numbers.
I tried using git format-patch &amp;lt;the SHA1&amp;gt;, but that generated a patch for each commit since that SHA-1 value.......</description><pubDate>Wed, 15 Jul 2026 02:48:27 -0400</pubDate></item><item><title>How do take natural log of a double in MATLAB?</title><link>https://devapps.quickvid.app/how-do-take-natural-log-of-a-double-in-matlab.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-do-take-natural-log-of-a-double-in-matlab.html</guid><description>I am attempting to that the natural log of a number, I get the message:
tf2 = 60*ln(B1);
Undefined function &amp;#039;ln&amp;#039; for input arguments of type &amp;#039;double&amp;#039;.
So i try to cast the number as a float whic......</description><pubDate>Wed, 15 Jul 2026 02:10:03 -0400</pubDate></item><item><title>How to create a delete mutation in GraphQL?</title><link>https://devapps.quickvid.app/how-to-create-a-delete-mutation-in-graphql.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-create-a-delete-mutation-in-graphql.html</guid><description>StackOverflow!
One day ago I&amp;#039;ve started to learn a new thing for me - GraphQL.
Now I know how to add and read objects from a database using GraphQL. I have tried to find an answer to question &quot;how......</description><pubDate>Wed, 15 Jul 2026 01:49:11 -0400</pubDate></item><item><title>non-numeric argument to binary operator [closed]</title><link>https://devapps.quickvid.app/non-numeric-argument-to-binary-operator-closed.html</link><guid isPermaLink="true">https://devapps.quickvid.app/non-numeric-argument-to-binary-operator-closed.html</guid><description>I&amp;#039;m attempting to create my first function in R. The function should take in a data frame, x-series from data frame, y-series from data frame, and plot a scatter plot. Seems simple enough, but I run ...</description><pubDate>Wed, 15 Jul 2026 01:45:09 -0400</pubDate></item><item><title>ReactJS Router V4 history.push not working</title><link>https://devapps.quickvid.app/reactjs-router-v4-history-push-not-working.html</link><guid isPermaLink="true">https://devapps.quickvid.app/reactjs-router-v4-history-push-not-working.html</guid><description>I have upgraded to React Router V4 and now struggling with the history.push method.
I have an index.js file:
import React from &quot;react&quot;;
import { render } from &quot;react-dom&quot;;
import { BrowserRouter,......</description><pubDate>Wed, 15 Jul 2026 01:31:57 -0400</pubDate></item><item><title>How to convert string to boolean in typescript Angular 4</title><link>https://devapps.quickvid.app/how-to-convert-string-to-boolean-in-typescript-angular-4.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-convert-string-to-boolean-in-typescript-angular-4.html</guid><description>I know am not the first to ask this and as I mentioned in my title ,I am trying to convert string value boolean .
I have previously put some values into local storage,Now I want to get all the val......</description><pubDate>Wed, 15 Jul 2026 01:27:32 -0400</pubDate></item><item><title>nginx - set multiple server_name with ssl-support</title><link>https://devapps.quickvid.app/nginx-set-multiple-server-name-with-ssl-support.html</link><guid isPermaLink="true">https://devapps.quickvid.app/nginx-set-multiple-server-name-with-ssl-support.html</guid><description>I&amp;#039;d love to use nginx to serve a website with multiple domain names and SSL:
webmail.example.com
webmail.beispiel.de
Both use the same vhost so I only set the server_name twice.
Problem is, that ......</description><pubDate>Wed, 15 Jul 2026 01:26:43 -0400</pubDate></item><item><title>Extract day of week from date field in PostgreSQL assuming weeks start on Monday</title><link>https://devapps.quickvid.app/extract-day-of-week-from-date-field-in-postgresql-assuming-weeks-start.html</link><guid isPermaLink="true">https://devapps.quickvid.app/extract-day-of-week-from-date-field-in-postgresql-assuming-weeks-start.html</guid><description>select extract(dow from datefield)
extract a number from 0 to 6, where 0 is Sunday; is there a way to get the day of the week in SQL assuming that weeks start on Monday (so 0 will be Monday)?...</description><pubDate>Wed, 15 Jul 2026 01:23:37 -0400</pubDate></item><item><title>Connecting via hostname using socket works, but not for all ports</title><link>https://devapps.quickvid.app/connecting-via-hostname-using-socket-works-but-not-for-all-ports.html</link><guid isPermaLink="true">https://devapps.quickvid.app/connecting-via-hostname-using-socket-works-but-not-for-all-ports.html</guid><description>I wanted to see how sockets work, so I skimmed through the HOWTO and the docs and tried to write my own code. The server side looks like this:
ssock = socket.socket(socket.AF_INET, socket.SOCK_STR......</description><pubDate>Wed, 15 Jul 2026 01:23:22 -0400</pubDate></item><item><title>Error &amp;#039;Invalid hostname for this tenancy&amp;#039; on using graph api of sharepoint to subscribe event notification</title><link>https://devapps.quickvid.app/error-039-invalid-hostname-for-this-tenancy-039-on-using-graph-api-of-.html</link><guid isPermaLink="true">https://devapps.quickvid.app/error-039-invalid-hostname-for-this-tenancy-039-on-using-graph-api-of-.html</guid><description>I am new to sharepoint and now I am trying to create a webhook for my sharepoint sites, such that on any crud operation i would get notification in my app
I have created a webapp to receive notifi......</description><pubDate>Wed, 15 Jul 2026 01:21:13 -0400</pubDate></item><item><title>What should I do to use bing translator in iOS?</title><link>https://devapps.quickvid.app/what-should-i-do-to-use-bing-translator-in-ios.html</link><guid isPermaLink="true">https://devapps.quickvid.app/what-should-i-do-to-use-bing-translator-in-ios.html</guid><description>I want to translate a word in my app. First I wanted to use Google Translate but I saw Google Translate&amp;#039;s API is not free. So I tried to use Bing Translator, I followed this tutorial, but in step 3......</description><pubDate>Wed, 15 Jul 2026 01:03:15 -0400</pubDate></item><item><title>How to list the certificates stored in a PKCS12 keystore with keytool?</title><link>https://devapps.quickvid.app/how-to-list-the-certificates-stored-in-a-pkcs12-keystore-with-keytool.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-list-the-certificates-stored-in-a-pkcs12-keystore-with-keytool.html</guid><description>I wanted to list the certificates stored in a PKCS12 keystore.
The keystore has the extension .pfx...</description><pubDate>Wed, 15 Jul 2026 01:02:54 -0400</pubDate></item><item><title>Why can&amp;#039;t you import python 2 modules in python 3?</title><link>https://devapps.quickvid.app/why-can-039-t-you-import-python-2-modules-in-python-3.html</link><guid isPermaLink="true">https://devapps.quickvid.app/why-can-039-t-you-import-python-2-modules-in-python-3.html</guid><description>Is there any theoretical reason that stops this? As far as I know python modules can be written in C? What&amp;#039;s the reason you can&amp;#039;t call functions written in python 2 in python 3?...</description><pubDate>Wed, 15 Jul 2026 00:51:16 -0400</pubDate></item><item><title>Basic plotting in running IDL procedure</title><link>https://devapps.quickvid.app/basic-plotting-in-running-idl-procedure.html</link><guid isPermaLink="true">https://devapps.quickvid.app/basic-plotting-in-running-idl-procedure.html</guid><description>I started learning IDL a few hours ago. I have constructed the following procedure in a .pro called &amp;#039;plots.pro&amp;#039;:
PRO PLOTS
num=findgen(40)*10
line=sin(num*!DtoR)
plot, num, line
END
It seems I sh......</description><pubDate>Wed, 15 Jul 2026 00:38:51 -0400</pubDate></item><item><title>CSS selector for table column</title><link>https://devapps.quickvid.app/css-selector-for-table-column.html</link><guid isPermaLink="true">https://devapps.quickvid.app/css-selector-for-table-column.html</guid><description>I dont have much experience with CSS, but I am trying to help a friend format a table using CSS. Right now I got stuck trying to format table width, here is an example of the table:
https://form.jo......</description><pubDate>Wed, 15 Jul 2026 00:32:30 -0400</pubDate></item><item><title>How to create a Slanted wall with Revit API?</title><link>https://devapps.quickvid.app/how-to-create-a-slanted-wall-with-revit-api.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-create-a-slanted-wall-with-revit-api.html</guid><description>Im trying to develop script for myself in dynamo(Revit 2021), but I don&amp;#039;t understand how can I create the slanted wall?
According to this blog of changes in revit 2021, there are such parameters for ...</description><pubDate>Wed, 15 Jul 2026 00:05:21 -0400</pubDate></item><item><title>Converting Numpy Array to OpenCV Array</title><link>https://devapps.quickvid.app/converting-numpy-array-to-opencv-array.html</link><guid isPermaLink="true">https://devapps.quickvid.app/converting-numpy-array-to-opencv-array.html</guid><description>I&amp;#039;m trying to convert a 2D Numpy array, representing a black-and-white image, into a 3-channel OpenCV array (i.e. an RGB image).
Based on code samples and the docs I&amp;#039;m attempting to do this via Py......</description><pubDate>Tue, 14 Jul 2026 23:58:00 -0400</pubDate></item><item><title>ColdFusion cfmail how do I keep the formatting</title><link>https://devapps.quickvid.app/coldfusion-cfmail-how-do-i-keep-the-formatting.html</link><guid isPermaLink="true">https://devapps.quickvid.app/coldfusion-cfmail-how-do-i-keep-the-formatting.html</guid><description>In my ColdFusion program I create email (HTML/CSS) for one or many recipients, and place it in a .cfm file. The email is nicely formatted. When I run the saved file as a program, the cfmail tag s......</description><pubDate>Tue, 14 Jul 2026 23:40:05 -0400</pubDate></item><item><title>Get the current URL with JavaScript?</title><link>https://devapps.quickvid.app/get-the-current-url-with-javascript.html</link><guid isPermaLink="true">https://devapps.quickvid.app/get-the-current-url-with-javascript.html</guid><description>All I want is to get the website URL. Not the URL as taken from a link. On the page loading I need to be able to grab the full, current URL of the website and set it as a variable to do with as I p......</description><pubDate>Tue, 14 Jul 2026 23:36:36 -0400</pubDate></item><item><title>ModuleNotFoundError: No module named &amp;#039;scikitplot&amp;#039;</title><link>https://devapps.quickvid.app/modulenotfounderror-no-module-named-039-scikitplot-039.html</link><guid isPermaLink="true">https://devapps.quickvid.app/modulenotfounderror-no-module-named-039-scikitplot-039.html</guid><description>I want to use scikitlearn in my notebook. I installed it by this code:
!pip install scikit-plot
from scikitplot.estimators import plot_feature_importances
from scikitplot.metrics import ...</description><pubDate>Tue, 14 Jul 2026 23:34:16 -0400</pubDate></item><item><title>How to create HOC for auth in Next.js?</title><link>https://devapps.quickvid.app/how-to-create-hoc-for-auth-in-next-js.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-create-hoc-for-auth-in-next-js.html</guid><description>I want to create basic Next.js HOC for authentication. I searched but I didn&amp;#039;t figure it out.
I have an admin page in my Next.js app. I want to fetch from http://localhost:4000/user/me and that URL ...</description><pubDate>Tue, 14 Jul 2026 23:11:05 -0400</pubDate></item><item><title>Why do I get an error &quot;&amp;#039;unicode&amp;#039; object does not support item deletion&quot; when trying to delete values from a JSON object?</title><link>https://devapps.quickvid.app/why-do-i-get-an-error-039-unicode-039-object-does-not-support-item-del.html</link><guid isPermaLink="true">https://devapps.quickvid.app/why-do-i-get-an-error-039-unicode-039-object-does-not-support-item-del.html</guid><description>I am trying to loop through a list of objects deleting an element from each object. Each object is a new line. I am trying to then save the new file as is without the element contained within the o......</description><pubDate>Tue, 14 Jul 2026 23:10:14 -0400</pubDate></item><item><title>Matlab - multiply matrix with vector of matrices</title><link>https://devapps.quickvid.app/matlab-multiply-matrix-with-vector-of-matrices.html</link><guid isPermaLink="true">https://devapps.quickvid.app/matlab-multiply-matrix-with-vector-of-matrices.html</guid><description>I have a matrix of scalars (A): 1 2 3 4 5 6 7 8 9
And 3 other matrices of the same size (100X200), B,C,D.
I want to do the following:
A*[B,C,D] so that the outcome will be [1*......</description><pubDate>Tue, 14 Jul 2026 23:02:40 -0400</pubDate></item><item><title>Map to List error: Series object not callable</title><link>https://devapps.quickvid.app/map-to-list-error-series-object-not-callable.html</link><guid isPermaLink="true">https://devapps.quickvid.app/map-to-list-error-series-object-not-callable.html</guid><description>from nsepy import get_history
from datetime import date
import datetime
import pandas as pd
import numpy as np
file = r&amp;#039;C:\Users\Raspberry-Pi\Desktop\Desktop\List.xlsx&amp;#039;
list = pd.read_excel(file)
l......</description><pubDate>Tue, 14 Jul 2026 22:56:00 -0400</pubDate></item><item><title>No exact matches in call to initializer error message in swift</title><link>https://devapps.quickvid.app/no-exact-matches-in-call-to-initializer-error-message-in-swift.html</link><guid isPermaLink="true">https://devapps.quickvid.app/no-exact-matches-in-call-to-initializer-error-message-in-swift.html</guid><description>I&amp;#039;m confused. Could someone please tell me why I get a &quot;No exact matches in call to initializer&quot; error when I have this code.... let bill = textField.text let billTotal = Double(bill)
but......</description><pubDate>Tue, 14 Jul 2026 22:55:22 -0400</pubDate></item><item><title>Overflow Error in Python&amp;#039;s numpy.exp function</title><link>https://devapps.quickvid.app/overflow-error-in-python-039-s-numpy-exp-function.html</link><guid isPermaLink="true">https://devapps.quickvid.app/overflow-error-in-python-039-s-numpy-exp-function.html</guid><description>I want to use numpy.exp like this:
cc = np.array([ [0.120,0.34,-1234.1]
])
print 1/(1+np.exp(-cc))
But this gives me error:
/usr/local/lib/python2.7/site-packages/ipykernel/__main__.py:5: ...</description><pubDate>Tue, 14 Jul 2026 22:54:19 -0400</pubDate></item><item><title>Different axis indication between np.delete and np.mean in numpy array of Python</title><link>https://devapps.quickvid.app/different-axis-indication-between-np-delete-and-np-mean-in-numpy-array.html</link><guid isPermaLink="true">https://devapps.quickvid.app/different-axis-indication-between-np-delete-and-np-mean-in-numpy-array.html</guid><description>I have learned the axis indication of numpy array from how is axis indexed in numpy&amp;#039;s array
The article says that, for 2-D array, axis=0 stands for each col in array, and axis=1 for each row in arr......</description><pubDate>Tue, 14 Jul 2026 22:51:44 -0400</pubDate></item><item><title>Value too great for base (error token is &quot;08&quot;) [duplicate]</title><link>https://devapps.quickvid.app/value-too-great-for-base-error-token-is-08-duplicate.html</link><guid isPermaLink="true">https://devapps.quickvid.app/value-too-great-for-base-error-token-is-08-duplicate.html</guid><description>Here my problem is to find the difference of using single bracket [ ] and double brackets [[ ]] in if statement.
#!/bin/bash
vara=08;
varb=10;
## single bracket in if statment is working.
if [ $v......</description><pubDate>Tue, 14 Jul 2026 22:48:44 -0400</pubDate></item><item><title>Does At symbol (@) and Dollar Sign ($) has any special meaning in C or C++</title><link>https://devapps.quickvid.app/does-at-symbol-and-dollar-sign-has-any-special-meaning-in-c-or-c.html</link><guid isPermaLink="true">https://devapps.quickvid.app/does-at-symbol-and-dollar-sign-has-any-special-meaning-in-c-or-c.html</guid><description>Recently one of my friend encountered this question in an interview. The interviewer asked him if the special characters like $, @, |, ^, ~ have any usage in c or c++ and where.
I know that |, ^ a......</description><pubDate>Tue, 14 Jul 2026 22:47:37 -0400</pubDate></item><item><title>How are ssl certificates verified?</title><link>https://devapps.quickvid.app/how-are-ssl-certificates-verified.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-are-ssl-certificates-verified.html</guid><description>What is the series of steps needed to securely verify a ssl certificate? My (very limited) understanding is that when you visit an https site, the server sends a certificate to the client (the bro......</description><pubDate>Tue, 14 Jul 2026 22:46:50 -0400</pubDate></item><item><title>ModuleNotFoundError When Importing open_clip</title><link>https://devapps.quickvid.app/modulenotfounderror-when-importing-open-clip.html</link><guid isPermaLink="true">https://devapps.quickvid.app/modulenotfounderror-when-importing-open-clip.html</guid><description>error importing open_clip,
When importing open_clip I always get this error:
Traceback (most recent call last): File &amp;quot;c:\Users\noahs\Desktop\New folder\test.py&amp;quot;, line 1, in &amp;lt;module&amp;g......</description><pubDate>Tue, 14 Jul 2026 22:46:03 -0400</pubDate></item><item><title>gradlew is not found (No such file or directory)</title><link>https://devapps.quickvid.app/gradlew-is-not-found-no-such-file-or-directory.html</link><guid isPermaLink="true">https://devapps.quickvid.app/gradlew-is-not-found-no-such-file-or-directory.html</guid><description>I load a project from git and build it successfully on MacBook. When I type &amp;#039;./gradlew assembleRelease&amp;#039; in terminal window, I get an error:
bash: ./gradlew: No such file or directory
So I check if ...</description><pubDate>Tue, 14 Jul 2026 22:41:13 -0400</pubDate></item><item><title>HTML radio buttons will not display side by side</title><link>https://devapps.quickvid.app/html-radio-buttons-will-not-display-side-by-side.html</link><guid isPermaLink="true">https://devapps.quickvid.app/html-radio-buttons-will-not-display-side-by-side.html</guid><description>I&amp;#039;m having some trouble with my HTML form, I&amp;#039;ve tried looking it up and looking for solutions online and the &quot;solutions&quot; I found did not work for me. The issue that I am having is that my Radio But......</description><pubDate>Tue, 14 Jul 2026 22:37:00 -0400</pubDate></item><item><title>How to plot cdf in matplotlib in Python?</title><link>https://devapps.quickvid.app/how-to-plot-cdf-in-matplotlib-in-python.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-plot-cdf-in-matplotlib-in-python.html</guid><description>I have a disordered list named d that looks like:
[0.0000, 123.9877,0.0000,9870.9876, ...]
I just simply want to plot a cdf graph based on this list by using Matplotlib in Python. But don&amp;#039;t know if ...</description><pubDate>Tue, 14 Jul 2026 22:36:00 -0400</pubDate></item><item><title>How to specify a constructor with a functional component (fat arrow syntax)?</title><link>https://devapps.quickvid.app/how-to-specify-a-constructor-with-a-functional-component-fat-arrow-syn.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-specify-a-constructor-with-a-functional-component-fat-arrow-syn.html</guid><description>Given this component:
import React from &amp;#039;react&amp;#039;
import ReactDOM from &amp;#039;react-dom&amp;#039;
import PropTypes from &amp;#039;prop-types&amp;#039;
const NewGoalInput = props =&amp;gt; { return ( &amp;lt;input type=&quot;text&quot; onKeyUp={...</description><pubDate>Tue, 14 Jul 2026 22:27:10 -0400</pubDate></item><item><title>Javascript swap array elements</title><link>https://devapps.quickvid.app/javascript-swap-array-elements.html</link><guid isPermaLink="true">https://devapps.quickvid.app/javascript-swap-array-elements.html</guid><description>Is there any simpler way to swap two elements in an array?
var a = list[x], b = list[y];
list[y] = a;
list[x] = b;...</description><pubDate>Tue, 14 Jul 2026 22:25:30 -0400</pubDate></item><item><title>Python. AttributeError: &amp;#039;NoneType&amp;#039; object has no attribute &amp;#039;startswith&amp;#039;</title><link>https://devapps.quickvid.app/python-attributeerror-039-nonetype-039-object-has-no-attribute-039-sta.html</link><guid isPermaLink="true">https://devapps.quickvid.app/python-attributeerror-039-nonetype-039-object-has-no-attribute-039-sta.html</guid><description>Why is it this code won&amp;#039;t work and give AttributeError?
internship = parser.find_all(&amp;#039;a&amp;#039;, attrs = {&amp;#039;title&amp;#039;: lambda job: job.startswith(&amp;#039;Internship&amp;#039;)})
while this one works:
internship = parser....</description><pubDate>Tue, 14 Jul 2026 22:16:17 -0400</pubDate></item><item><title>org.json.simple.JSONArray cannot be cast to org.json.simple.JSONObject</title><link>https://devapps.quickvid.app/org-json-simple-jsonarray-cannot-be-cast-to-org-json-simple-jsonobject.html</link><guid isPermaLink="true">https://devapps.quickvid.app/org-json-simple-jsonarray-cannot-be-cast-to-org-json-simple-jsonobject.html</guid><description>I&amp;#039;m trying to parse below json file:
{&quot;units&quot;:[{&quot;id&quot;:42, &quot;title&quot;:&quot;Hello World&quot;, &quot;position&quot;:1, &quot;v_id&quot;:9, &quot;sites&quot;:[[{&quot;id&quot;:316, &quot;article&quot;:42, &quot;clip&quot;:...</description><pubDate>Tue, 14 Jul 2026 21:57:09 -0400</pubDate></item><item><title>How to increase size of DOSBox window?</title><link>https://devapps.quickvid.app/how-to-increase-size-of-dosbox-window.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-increase-size-of-dosbox-window.html</guid><description>I am running Turbo C on DOSBox in Ubuntu 12.04.
The problem is that two black stripes are coming on either of screen. I want to remove them.
My computer is a Dell Studio 15z with screen resolution ...</description><pubDate>Tue, 14 Jul 2026 21:48:10 -0400</pubDate></item><item><title>How to convert a List into a Map in Dart</title><link>https://devapps.quickvid.app/how-to-convert-a-list-into-a-map-in-dart.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-convert-a-list-into-a-map-in-dart.html</guid><description>I looking for an on-the-shelf way to convert a List into a Map in Dart.
In python for example you can do:
l= [ (&amp;#039;a&amp;#039;,(1,2)), (&amp;#039;b&amp;#039;,(2,3)), (&amp;#039;c&amp;#039;,(3,4) ) ]
d=dict(l)
==&amp;gt; {&amp;#039;a&amp;#039;: (1, 2), &amp;#039;c&amp;#039;: (3, 4),......</description><pubDate>Tue, 14 Jul 2026 21:23:54 -0400</pubDate></item><item><title>Unable to load Private Key. (PEM routines:PEM_read_bio:no start line:pem_lib.c:648:Expecting: ANY PRIVATE KEY) [closed]</title><link>https://devapps.quickvid.app/unable-to-load-private-key-pem-routines-pem-read-bio-no-start-line-pem.html</link><guid isPermaLink="true">https://devapps.quickvid.app/unable-to-load-private-key-pem-routines-pem-read-bio-no-start-line-pem.html</guid><description>I have a .key file which is PEM formatted private key file. I didn&amp;#039;t make this file but I got this from somewhere.
I wanted to see its MD5 hash with openssl tool like below command.
openssl rsa -in ...</description><pubDate>Tue, 14 Jul 2026 21:17:09 -0400</pubDate></item><item><title>How to solve the java.nio.file.NoSuchFileException?</title><link>https://devapps.quickvid.app/how-to-solve-the-java-nio-file-nosuchfileexception.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-solve-the-java-nio-file-nosuchfileexception.html</guid><description>I have a file called &quot;result.csv&quot;, from that file i want to read certain data and display them. I have that file in my eclipse project folder itself. Still i&amp;#039;m unable to read the file. public sta......</description><pubDate>Tue, 14 Jul 2026 21:02:27 -0400</pubDate></item><item><title>How to cast the size_t to double or int C++</title><link>https://devapps.quickvid.app/how-to-cast-the-size-t-to-double-or-int-c.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-cast-the-size-t-to-double-or-int-c.html</guid><description>My question is that
I have a size_t data, but now I want to convert it to double or int.
If I do something like size_t data = 99999999; int convertdata = data;
the compiler will report warni......</description><pubDate>Tue, 14 Jul 2026 20:31:08 -0400</pubDate></item><item><title>Is there an onSelect event or equivalent for HTML &lt;select&gt;?</title><link>https://devapps.quickvid.app/is-there-an-onselect-event-or-equivalent-for-html-select.html</link><guid isPermaLink="true">https://devapps.quickvid.app/is-there-an-onselect-event-or-equivalent-for-html-select.html</guid><description>I have an input form that lets me select from multiple options, and do something when the user changes the selection. Eg,
&amp;lt;select onChange=&quot;javascript:doSomething();&quot;&amp;gt; &amp;lt;option&amp;gt;A&amp;lt;/......</description><pubDate>Tue, 14 Jul 2026 20:30:35 -0400</pubDate></item><item><title>Arrange 2 items per row using flexbox</title><link>https://devapps.quickvid.app/arrange-2-items-per-row-using-flexbox.html</link><guid isPermaLink="true">https://devapps.quickvid.app/arrange-2-items-per-row-using-flexbox.html</guid><description>Imagine I have following markup
&amp;lt;div class=&quot;container&quot;&amp;gt; &amp;lt;div class=&quot;item&quot;&amp;gt;&amp;lt;/div&amp;gt; &amp;lt;div class=&quot;item&quot;&amp;gt;&amp;lt;/div&amp;gt; &amp;lt;div class=&quot;item&quot;&amp;gt;&amp;lt;/div&amp;gt; &amp;lt;div......</description><pubDate>Tue, 14 Jul 2026 20:13:13 -0400</pubDate></item><item><title>Pass Multiple Parameters to jQuery ajax call</title><link>https://devapps.quickvid.app/pass-multiple-parameters-to-jquery-ajax-call.html</link><guid isPermaLink="true">https://devapps.quickvid.app/pass-multiple-parameters-to-jquery-ajax-call.html</guid><description>I have the following jquery code to call a webmethod in an aspx page
$.ajax({ type: &quot;POST&quot;, url: &quot;popup.aspx/GetJewellerAssets&quot;, contentType: &quot;application/json; charset=utf-8&quot;, dat......</description><pubDate>Tue, 14 Jul 2026 19:55:11 -0400</pubDate></item><item><title>Fatal error: Uncaught Error: Call to undefined method UserController</title><link>https://devapps.quickvid.app/fatal-error-uncaught-error-call-to-undefined-method-usercontroller.html</link><guid isPermaLink="true">https://devapps.quickvid.app/fatal-error-uncaught-error-call-to-undefined-method-usercontroller.html</guid><description>I created a login with the classes but gives me an error ( ! ) Fatal error: Uncaught Error: Call to undefined method UserController::checkLogin() in C:\xampp\htdocs\progettoPersonale\control......</description><pubDate>Tue, 14 Jul 2026 19:46:37 -0400</pubDate></item><item><title>Finding the type of an object in C++</title><link>https://devapps.quickvid.app/finding-the-type-of-an-object-in-c.html</link><guid isPermaLink="true">https://devapps.quickvid.app/finding-the-type-of-an-object-in-c.html</guid><description>I have a class A and another class that inherits from it, B. I am overriding a function that accepts an object of type A as a parameter, so I have to accept an A. However, I later call functions that ...</description><pubDate>Tue, 14 Jul 2026 19:46:25 -0400</pubDate></item><item><title>I&amp;#039;m getting this error for my verilog code, &quot;Illegal operation for constant expression&quot;</title><link>https://devapps.quickvid.app/i-039-m-getting-this-error-for-my-verilog-code-illegal-operation-for-c.html</link><guid isPermaLink="true">https://devapps.quickvid.app/i-039-m-getting-this-error-for-my-verilog-code-illegal-operation-for-c.html</guid><description>when ever I compile this code, I get the following errors.
module mv2_generate
( input [127:0] c_array [1:0], input [127:0] p_array [1:0], input [127:0] p1_array [1:0], output reg ......</description><pubDate>Tue, 14 Jul 2026 19:46:01 -0400</pubDate></item><item><title>Angular - How to apply [ngStyle] conditions</title><link>https://devapps.quickvid.app/angular-how-to-apply-ngstyle-conditions.html</link><guid isPermaLink="true">https://devapps.quickvid.app/angular-how-to-apply-ngstyle-conditions.html</guid><description>I have a div that I want to style based on a condition.
If styleOne is true I want a background colour of red. If StyleTwo is true, I want the background colour to be blue. I&amp;#039;ve got half of it work......</description><pubDate>Tue, 14 Jul 2026 19:13:03 -0400</pubDate></item><item><title>3 Dimensional Array Names in R</title><link>https://devapps.quickvid.app/3-dimensional-array-names-in-r.html</link><guid isPermaLink="true">https://devapps.quickvid.app/3-dimensional-array-names-in-r.html</guid><description>In the 3 Dimensional array bellow :
ar &amp;lt;- array(someData, c(5, 5, 5));
rownames(ar) &amp;lt;- ...; #to set up row names
colnames(ar) &amp;lt;- ...; #to set up col names
How can i set the third dim......</description><pubDate>Tue, 14 Jul 2026 19:12:13 -0400</pubDate></item><item><title>Javascript format date / time [duplicate]</title><link>https://devapps.quickvid.app/javascript-format-date-time-duplicate.html</link><guid isPermaLink="true">https://devapps.quickvid.app/javascript-format-date-time-duplicate.html</guid><description>I need to change a date/time from 2014-08-20 15:30:00 to look like 08/20/2014 3:30 pm
Can this be done using javascript&amp;#039;s Date object?...</description><pubDate>Tue, 14 Jul 2026 19:01:31 -0400</pubDate></item><item><title>Reading a binary file with python</title><link>https://devapps.quickvid.app/reading-a-binary-file-with-python.html</link><guid isPermaLink="true">https://devapps.quickvid.app/reading-a-binary-file-with-python.html</guid><description>I find particularly difficult reading binary file with Python. Can you give me a hand?
I need to read this file, which in Fortran 90 is easily read by
int*4 n_particles, n_groups
real*4 group_id(...</description><pubDate>Tue, 14 Jul 2026 18:58:08 -0400</pubDate></item><item><title>Argument type is not assignable to parameter type and it should be</title><link>https://devapps.quickvid.app/argument-type-is-not-assignable-to-parameter-type-and-it-should-be.html</link><guid isPermaLink="true">https://devapps.quickvid.app/argument-type-is-not-assignable-to-parameter-type-and-it-should-be.html</guid><description>I have defined a class CommandProcessor&amp;lt;T&amp;gt; as having T derive from Command and contain a default constructor:
public class CommandProcessor&amp;lt;T&amp;gt; : ICommandProcessor&amp;lt;T&amp;gt; where T : Co......</description><pubDate>Tue, 14 Jul 2026 18:47:00 -0400</pubDate></item><item><title>input type=&quot;submit&quot; Vs button tag are they interchangeable? [duplicate]</title><link>https://devapps.quickvid.app/input-type-submit-vs-button-tag-are-they-interchangeable-duplicate.html</link><guid isPermaLink="true">https://devapps.quickvid.app/input-type-submit-vs-button-tag-are-they-interchangeable-duplicate.html</guid><description>input type=&quot;submit&quot; and button tag are they interchangeable? or if there is any difference then When to use input type=&quot;submit&quot; and when button ?
And if there is no difference then why we have 2 t......</description><pubDate>Tue, 14 Jul 2026 18:37:08 -0400</pubDate></item><item><title>Calling another PL/SQL procedure within a procedure</title><link>https://devapps.quickvid.app/calling-another-pl-sql-procedure-within-a-procedure.html</link><guid isPermaLink="true">https://devapps.quickvid.app/calling-another-pl-sql-procedure-within-a-procedure.html</guid><description>I&amp;#039;m new to PL/SQL &amp;amp; would greatly appreciate help in this. I&amp;#039;ve created a procedure to copy contracts. Now I want to call another procedure from within this procedure which shall copy all the ...</description><pubDate>Tue, 14 Jul 2026 18:34:32 -0400</pubDate></item><item><title>java.lang.IllegalStateException: Software rendering doesn&amp;#039;t support hardware bitmaps</title><link>https://devapps.quickvid.app/java-lang-illegalstateexception-software-rendering-doesn-039-t-support.html</link><guid isPermaLink="true">https://devapps.quickvid.app/java-lang-illegalstateexception-software-rendering-doesn-039-t-support.html</guid><description>I need to get the screenshot of a View. I have tried two methods to do this work. Unfortunately, both result in the same bug.
Here is the log:
java.lang.IllegalArgumentException: Software rendering ...</description><pubDate>Tue, 14 Jul 2026 18:18:24 -0400</pubDate></item><item><title>Git - Remove commit from history</title><link>https://devapps.quickvid.app/git-remove-commit-from-history.html</link><guid isPermaLink="true">https://devapps.quickvid.app/git-remove-commit-from-history.html</guid><description>I did something extremely stupid. I entered a curseword in my code and I pushed the code on the master branch. I pushed a few more times after that so people do not pull the bad stuff, but I can st......</description><pubDate>Tue, 14 Jul 2026 17:47:15 -0400</pubDate></item><item><title>Webpack5 + react-refresh-webpack-plugin does not work</title><link>https://devapps.quickvid.app/webpack5-react-refresh-webpack-plugin-does-not-work.html</link><guid isPermaLink="true">https://devapps.quickvid.app/webpack5-react-refresh-webpack-plugin-does-not-work.html</guid><description>I wanted to setup react with webpack, babel, and typescript myself since I would like to know more and have a consistent boilerplate for development.
I have been trying to setup fast refreshing and......</description><pubDate>Tue, 14 Jul 2026 17:44:06 -0400</pubDate></item><item><title>extract column value based on another column pandas dataframe</title><link>https://devapps.quickvid.app/extract-column-value-based-on-another-column-pandas-dataframe.html</link><guid isPermaLink="true">https://devapps.quickvid.app/extract-column-value-based-on-another-column-pandas-dataframe.html</guid><description>I am kind of getting stuck on extracting value of one variable conditioning on another variable. For example, the following dataframe:
A B
p1 1
p1 2
p3 3
p2 4
How can I get the value of A when B......</description><pubDate>Tue, 14 Jul 2026 17:36:34 -0400</pubDate></item><item><title>User jezrael - Stack Overflow</title><link>https://devapps.quickvid.app/user-jezrael-stack-overflow.html</link><guid isPermaLink="true">https://devapps.quickvid.app/user-jezrael-stack-overflow.html</guid><description>Stack Overflow | The World’s Largest Online Community for Developers...</description><pubDate>Tue, 14 Jul 2026 17:35:48 -0400</pubDate></item><item><title>Get path from open file in Python</title><link>https://devapps.quickvid.app/get-path-from-open-file-in-python.html</link><guid isPermaLink="true">https://devapps.quickvid.app/get-path-from-open-file-in-python.html</guid><description>If I have an opened file, is there an os call to get the complete path as a string?
f = open(&amp;#039;/Users/Desktop/febROSTER2012.xls&amp;#039;)
From f, how would I get &quot;/Users/Desktop/febROSTER2012.xls&quot; ?...</description><pubDate>Tue, 14 Jul 2026 17:35:02 -0400</pubDate></item><item><title>How to alter a column and change the default value?</title><link>https://devapps.quickvid.app/how-to-alter-a-column-and-change-the-default-value.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-alter-a-column-and-change-the-default-value.html</guid><description>I got the following error while trying to alter a column&amp;#039;s data type and setting a new default value:
ALTER TABLE foobar_data ALTER COLUMN col VARCHAR(255) NOT NULL SET DEFAULT &amp;#039;{}&amp;#039;; ERROR 1064 (...</description><pubDate>Tue, 14 Jul 2026 17:26:11 -0400</pubDate></item><item><title>Slicing a vector in C++</title><link>https://devapps.quickvid.app/slicing-a-vector-in-c.html</link><guid isPermaLink="true">https://devapps.quickvid.app/slicing-a-vector-in-c.html</guid><description>Is there an equivalent of list slicing [1:] from Python in C++ with vectors? I simply want to get all but the first element from a vector.
Python&amp;#039;s list slicing operator:
list1 = [1, 2, 3]
list2 = ...</description><pubDate>Tue, 14 Jul 2026 17:15:01 -0400</pubDate></item><item><title>NVIDIA Cuda error &quot;all CUDA-capable devices are busy or unavailable&quot; on OSX</title><link>https://devapps.quickvid.app/nvidia-cuda-error-all-cuda-capable-devices-are-busy-or-unavailable-on-.html</link><guid isPermaLink="true">https://devapps.quickvid.app/nvidia-cuda-error-all-cuda-capable-devices-are-busy-or-unavailable-on-.html</guid><description>Quite often, I get the CUDA library to completely fail and return with an error 46 (&quot;all CUDA-capable devices are busy or unavailable&quot;) even for simple calls like cudaMalloc. The code runs successf......</description><pubDate>Tue, 14 Jul 2026 17:11:37 -0400</pubDate></item><item><title>How do you change the launcher logo of an app in Android Studio?</title><link>https://devapps.quickvid.app/how-do-you-change-the-launcher-logo-of-an-app-in-android-studio.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-do-you-change-the-launcher-logo-of-an-app-in-android-studio.html</guid><description>I was wondering how to change the launcher icon in Android Studio....</description><pubDate>Tue, 14 Jul 2026 17:08:42 -0400</pubDate></item><item><title>how to make a new line in a jupyter markdown cell</title><link>https://devapps.quickvid.app/how-to-make-a-new-line-in-a-jupyter-markdown-cell.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-make-a-new-line-in-a-jupyter-markdown-cell.html</guid><description>md
$S$: a set of shops
$I$: a set of items M wants to get
I&amp;#039;d like to make a new line between this two sentences.
We usually put &quot; (space)&quot; after the first sentence before a new line, but it doesn&amp;#039;t ...</description><pubDate>Tue, 14 Jul 2026 17:07:29 -0400</pubDate></item><item><title>Get ZeroDivisionError: float division in python</title><link>https://devapps.quickvid.app/get-zerodivisionerror-float-division-in-python.html</link><guid isPermaLink="true">https://devapps.quickvid.app/get-zerodivisionerror-float-division-in-python.html</guid><description>In the code below: highly simplified. I get ZeroDivisionError: float division
Any value below one gives errors. Other times 5/365 gives the error.
How do I fix?
import math
def top( t): r......</description><pubDate>Tue, 14 Jul 2026 17:00:14 -0400</pubDate></item><item><title>Create a list of Image types in Racket</title><link>https://devapps.quickvid.app/create-a-list-of-image-types-in-racket.html</link><guid isPermaLink="true">https://devapps.quickvid.app/create-a-list-of-image-types-in-racket.html</guid><description>I am trying to create a scene with multiple images of the same type on that scene. I know how to create an image however, I need to create many images based on an arbitrary value &amp;#039;n&amp;#039;. I believe the......</description><pubDate>Tue, 14 Jul 2026 16:58:15 -0400</pubDate></item><item><title>IntelliJ how to zoom in / out</title><link>https://devapps.quickvid.app/intellij-how-to-zoom-in-out.html</link><guid isPermaLink="true">https://devapps.quickvid.app/intellij-how-to-zoom-in-out.html</guid><description>The IntelliJ keymap says:
Zoom in: Keypad + =
Zoom out Keypad - -
But they have no effect. Anyone have this working?
New info: Now I have added more key-bindings:
Zoom in: Alt-Shift-=
Zoom ou......</description><pubDate>Tue, 14 Jul 2026 16:52:27 -0400</pubDate></item><item><title>pm uninstall -k --user 0 Failure [DELETE_FAILED_USER_RESTRICTED]</title><link>https://devapps.quickvid.app/pm-uninstall-k-user-0-failure-delete-failed-user-restricted.html</link><guid isPermaLink="true">https://devapps.quickvid.app/pm-uninstall-k-user-0-failure-delete-failed-user-restricted.html</guid><description>I have been following the instructions from https://www.xda-developers.com/disable-system-app-bloatware-android/ to remove bloatware (that actually kills FCM and blocks notifications.
However I ...</description><pubDate>Tue, 14 Jul 2026 16:41:05 -0400</pubDate></item><item><title>Split string with delimiters in C</title><link>https://devapps.quickvid.app/split-string-with-delimiters-in-c.html</link><guid isPermaLink="true">https://devapps.quickvid.app/split-string-with-delimiters-in-c.html</guid><description>How do I write a function to split and return an array for a string with delimiters in the C programming language?
char* str = &quot;JAN,FEB,MAR,APR,MAY,JUN,JUL,AUG,SEP,OCT,NOV,DEC&quot;;
str_split(str,&amp;#039;,&amp;#039;);...</description><pubDate>Tue, 14 Jul 2026 16:38:56 -0400</pubDate></item><item><title>How to determine whether an object has a given property in JavaScript</title><link>https://devapps.quickvid.app/how-to-determine-whether-an-object-has-a-given-property-in-javascript.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-to-determine-whether-an-object-has-a-given-property-in-javascript.html</guid><description>How can I determine whether an object x has a defined property y, regardless of the value of x.y?
I&amp;#039;m currently using
if (typeof(x.y) !== &amp;#039;undefined&amp;#039;)
but that seems a bit clunky. Is there a bet......</description><pubDate>Tue, 14 Jul 2026 16:30:58 -0400</pubDate></item><item><title>glmnet installation Error: C++17 standard requested but CXX17 is not defined</title><link>https://devapps.quickvid.app/glmnet-installation-error-c-17-standard-requested-but-cxx17-is-not-def.html</link><guid isPermaLink="true">https://devapps.quickvid.app/glmnet-installation-error-c-17-standard-requested-but-cxx17-is-not-def.html</guid><description>I am trying to install glmnet on an HPC by running install.package(&amp;quot;glmnet&amp;quot;). However, right after downloading, I get the following error:
Error: C++17 standard requested but CXX17 is not ...</description><pubDate>Tue, 14 Jul 2026 16:27:25 -0400</pubDate></item><item><title>Spring Boot org.junit.runners.model.InvalidTestClassError: Invalid test class 1. Test class should have exactly one public zero-argument constructor</title><link>https://devapps.quickvid.app/spring-boot-org-junit-runners-model-invalidtestclasserror-invalid-test.html</link><guid isPermaLink="true">https://devapps.quickvid.app/spring-boot-org-junit-runners-model-invalidtestclasserror-invalid-test.html</guid><description>I have a problem about running some tests through JUnit in my Spring Boot application.
When I tried to run any test of repositorytest, I got the issue shown below.
org.junit.runners.model....</description><pubDate>Tue, 14 Jul 2026 16:23:31 -0400</pubDate></item><item><title>Concisely deep copy a slice?</title><link>https://devapps.quickvid.app/concisely-deep-copy-a-slice.html</link><guid isPermaLink="true">https://devapps.quickvid.app/concisely-deep-copy-a-slice.html</guid><description>In Go, what&amp;#039;s a concise/well-performing way to deep copy a slice? I need to copy the slice to a new backing array, because the other array is owned by something else and may be modified after the c......</description><pubDate>Tue, 14 Jul 2026 16:18:39 -0400</pubDate></item><item><title>putty : export or import tunnel settings to another computer</title><link>https://devapps.quickvid.app/putty-export-or-import-tunnel-settings-to-another-computer.html</link><guid isPermaLink="true">https://devapps.quickvid.app/putty-export-or-import-tunnel-settings-to-another-computer.html</guid><description>I have a set of tunnels in my putty. how do i export my tunnel settings?The tunnel images are as below....</description><pubDate>Tue, 14 Jul 2026 16:12:35 -0400</pubDate></item><item><title>Why use the &amp;#039;ref&amp;#039; keyword when passing an object?</title><link>https://devapps.quickvid.app/why-use-the-039-ref-039-keyword-when-passing-an-object.html</link><guid isPermaLink="true">https://devapps.quickvid.app/why-use-the-039-ref-039-keyword-when-passing-an-object.html</guid><description>If I am passing an object to a method, why should I use the ref keyword? Isn&amp;#039;t this the default behaviour anyway?
For example:
class Program
{ static void Main(string[] args) { Te......</description><pubDate>Tue, 14 Jul 2026 16:12:07 -0400</pubDate></item><item><title>grep invert search with context</title><link>https://devapps.quickvid.app/grep-invert-search-with-context.html</link><guid isPermaLink="true">https://devapps.quickvid.app/grep-invert-search-with-context.html</guid><description>I want to filter out several lines before and after a matching line in a file.
This will remove the line that I don&amp;#039;t want:
$ grep -v &quot;line that i don&amp;#039;t want&quot;
And this will print the 2 lines bef......</description><pubDate>Tue, 14 Jul 2026 16:08:04 -0400</pubDate></item><item><title>The maximum value for an int type in Go</title><link>https://devapps.quickvid.app/the-maximum-value-for-an-int-type-in-go.html</link><guid isPermaLink="true">https://devapps.quickvid.app/the-maximum-value-for-an-int-type-in-go.html</guid><description>How does one specify the maximum value representable for an unsigned integer type?
I would like to know how to initialize min in the loop below that iteratively computes min and max lengths from s......</description><pubDate>Tue, 14 Jul 2026 16:05:18 -0400</pubDate></item><item><title>What does the `is` keyword do in typescript?</title><link>https://devapps.quickvid.app/what-does-the-is-keyword-do-in-typescript.html</link><guid isPermaLink="true">https://devapps.quickvid.app/what-does-the-is-keyword-do-in-typescript.html</guid><description>I came across some code that looks like this:
export function foo(arg: string): arg is MyType { return ...
}
I haven&amp;#039;t been able to search for is in either the docs or google, it&amp;#039;s a pretty c......</description><pubDate>Tue, 14 Jul 2026 16:00:51 -0400</pubDate></item><item><title>Error &quot;initializer element is not constant&quot; when trying to initialize variable with const</title><link>https://devapps.quickvid.app/error-initializer-element-is-not-constant-when-trying-to-initialize-va.html</link><guid isPermaLink="true">https://devapps.quickvid.app/error-initializer-element-is-not-constant-when-trying-to-initialize-va.html</guid><description>I get an error on line 6 (initialize my_foo to foo_init) of the following program and I&amp;#039;m not sure I understand why.
typedef struct foo_t { int a, b, c;
} foo_t;
const foo_t foo_init = { 1, 2......</description><pubDate>Tue, 14 Jul 2026 15:58:47 -0400</pubDate></item><item><title>Using Get-StoredCredential function in VS Code</title><link>https://devapps.quickvid.app/using-get-storedcredential-function-in-vs-code.html</link><guid isPermaLink="true">https://devapps.quickvid.app/using-get-storedcredential-function-in-vs-code.html</guid><description>I use a Get-StoredCredential function in my Powershell ISE profile to authenticate the various modules I use, which avoids the need for authentication prompts when loading PS modules
I would now li......</description><pubDate>Tue, 14 Jul 2026 15:57:24 -0400</pubDate></item><item><title>How can I install perf for Linux kernel 6.1.0-060100-generic on Ubuntu? [closed]</title><link>https://devapps.quickvid.app/how-can-i-install-perf-for-linux-kernel-6-1-0-060100-generic-on-ubuntu.html</link><guid isPermaLink="true">https://devapps.quickvid.app/how-can-i-install-perf-for-linux-kernel-6-1-0-060100-generic-on-ubuntu.html</guid><description>I like to try out the new capability of perf c2c/mem for AMD arch (in detai: https://www.phoronix.com/news/Linux-6.1-Perf)
My environment is
OS: Ubuntu 22.04.2 LTS x86_64
Kernel: 6.1.0-060100-gener......</description><pubDate>Tue, 14 Jul 2026 15:46:40 -0400</pubDate></item></channel></rss>