I have the following code : class thread_creation extends Thread{ int t; thread_creation(int x){ t=x; } public void run() { inc
I'm trying to make a chat based on this link: https://socket.io/get-started/private-messaging-part-1/ and I'm hoping to style it such that when the message is f
I want to make my local branches to match all the remote branches. For example, imagine that I have these branchs in my git: - branch-foo - branch-bar and in m
I have integration tests in golang that I want to run in the vscode debugger. After some laying around I got this to mostly function using the launch.json conf
Good day! I have a problem with registering users on the site, I tried many methods viewed on the Internet, but I made something similar, but it doesn't work. I
I have two Postgres 9.1 instances: one local, installed via Postgres.app on OS X, and one remote, on Heroku. I've ensured that lc_collate is en_US.UTF-8 on both
I have following table definition: CREATE TABLE my_table ( id UUID NOT NULL DEFAULT uuid_generate_v4() PRIMARY KEY, result UUID [] ); Entity