A general chat for developers. Don't ask to ask, just ask. Here's how: https://stackoverflow.com/help/how-to-ask
@jgonggrijp
var value, orig1, orig2, dv, panes = 2,
highlight = true,
connect = null,
collapse = false;
initUI();
function initUI() {
var target = document.getElementById("view");
target.innerHTML = "";
let dv = CodeMirror.MergeView(target, {
value: value,
origLeft: panes == 3 ? orig1 : null,
orig: orig2,
lineNumbers: true,
mode: "",
highlightDifferences: highlight,
connect: connect,
collapseIdentical: collapse
});
}
I thought once its constructor is initialized i'll get two panes in the UI but getting that error mentioned above.
grid grid-cols-7
. I have been using multiple methods(float and flex) to properly render and align the divs, but can't seem to make them work the way it should be. Any insight into what is happening here will be helpful.
Hi,
I decided I want to try to get my first Software Development job.
How is my portfolio, so far?
https://ronald-ronaldmcorona.vercel.app
Hi. This might be a silly thing to ask, but I need help in understanding how 'sed' commands work. Like what is the difference between
sed -i -e "s/# tlsProvider=.*/tlsProvider=OpenSSL/" apache-pulsar-2.7.2/conf/bookkeeper.conf
and
sed -i -e "s/tlsProvider=.*/tlsProvider=OpenSSL/" apache-pulsar-2.7.2/conf/bookkeeper.conf
Whats with the 's/#' and the 's/' ?
I have these fonts
// Optimo Plain
@font-face {
font-family: 'Optimo-Plain';
src: url('/styles/resources/font/optimo/Plain-Light.otf') format('opentype');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Optimo-Plain';
src: url('/styles/resources/font/optimo/Plain-LightIta.otf') format('opentype');
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: 'Optimo-Plain';
src: url('/styles/resources/font/optimo/Plain-Regular.otf') format('opentype');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Optimo-Plain';
src: url('/styles/resources/font/optimo/Plain-RegularIta.otf') format('opentype');
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: 'Optimo-Plain';
src: url('/styles/resources/font/optimo/Plain-Medium.otf') format('opentype'); /* [1] */
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Optimo-Plain';
src: url('/styles/resources/font/optimo/Plain-MediumIta.otf') format('opentype'); /* [1] */
font-weight: 700;
font-style: italic;
}
///* ========================================================================
// #FONT VARS
// ======================================================================== */
$rd-font--family-regular: Optimo-Plain, Helvetica Neue, Helvetica, Arial, sans-serif;
$rd-font--family-mono: BB-Roller-Regular, Courrier, sans-serif;
this font seems to create an issue. If I remove optimo plain, it will look ok otherwise font look like got a glitch. is the problem in the font itself?
font-variant-ligatures: none;
but I am afraid this will might have the side effect.Hello everyone! I have two questions:
I think that this is due to the rolling update strategy we have on RMQ. Can we keep it and address the second point in some other way?
Thank you in advance!
Hi can anyone me help how to align this flex-wrap div, its always breaking into another line when i tried to wrap this divs.