A general chat for developers. Don't ask to ask, just ask. Here's how: https://stackoverflow.com/help/how-to-ask
Hey I want to build an chatting app which includes 4 memers chatting and with video calling and audio calling + chatting what I do?
I'd first try to build a text only chat between 2 people, after I knew how to do that I'd try and implement on top off it. Don't start from the end start from the start
CodeMirror.MergeView
, I'm getting Uncaught TypeError: CodeMirror.MergeView is not a function
this error. Please help me what i'm doing wrong?.@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/' ?