Top new questions this week:
|
This is the first JavaScript code I've ever written, alert("hello, world!"); aside.
This site is closing quite a lot of questions because people won't read the rulebook or pay attention to the ...
|
In the pursuit of SQL enlightenment, I wrote a quick SEDE query to display Rep, Age and Overall Rank.
Sorted by Age, then Rank (Which is generated by Rep).
SELECT TOP 150
ROW_NUMBER() OVER (ORDER BY ...
|
It was suggested on Meta for July 2015 Community Challenge to make a bot that can find questions with bad titles. I wrote this query to help others find examples to help them make write their code.
...
|
In a YouTube video I watched, the speaker said it is important to know how to calculate between numbers of different bases; i.e. two, ten, and sixteen. I was then inspired to write a small C program ...
|
I'm making a simple to-do list with jQuery. This is my first step in JavaScript and jQuery. How can I improve my code? User enter tasks in input field, submit by pressing 'Enter'. On double-click, he ...
|
I am starting a software engineering degree soon and have been practicing the last couple months. I have posted some code I wrote for a basic Tic Tac Toe game below (C++). I have read the worst thing ...
|
I often create new accounts or virtual machines, and then have to load my SSH public key/signature in to the authorized keys on that account. That process can be tedious, so I created this script that ...
|
Greatest hits from previous weeks:
|
I know there is a simpler way of doing this, but I just really can't think of it right now. Can you please help me out?
String sample = "hello world";
char arraysample[] = sample.toCharArray();
int ...
|
This is the code for a simple dice roll. Any opinions for this are welcome and any suggestions to improve it would be appreciated.
Is there a more efficient algorithm to generate random numbers in ...
|
Can you answer these?
|
I am new to Node.js and Socket.io. I implemented a realtime chat service that has a chatroom feature. When the actual product is launched, there will be at least 200 concurrent users with 50 groups of ...
|
This is part of an implementation of Rabin-Williams signatures as described by Bernstein in Section 6 of "RSA signatures and Rabin–Williams signatures: the state of the art" using Tweaked Roots.
The ...
|
I have a simple c# mvc client that calls an external api..here is my attempt
public class ProductController : Controller
{
private readonly IProductService _productService;
public ...
|