October 23, 2024
Chicago 12, Melborne City, USA
python

Can someone suggest some college project ideas for Computer Science

I’m a Bsc. Computer Science student and I’m trying to create a project solo. I’ve been getting rejections and now I don’t have

Read More
PHP

How to use PHP?

— Create a temporary table to hold the xp_logininfo result CREATE TABLE #LoginInfo ( AccountName NVARCHAR(512), Type NVARCHAR(50), Privilege NVARCHAR(50), MappedLoginName NVARCHAR(512), PermissionPath

Read More
C#

How can I suppress “unused parameter” warnings in C?

For instance: Bool NullFunc(const struct timespec *when, const char *who) { return TRUE; } In C++ I was able to put a /*...*/

Read More
python

devcontainer: pylance issue

I have the following folder structure workspace │ docker-compose.yml │ Dockerfile │ ├───.devcontainer │ devcontainer.json │ └───app __init__.py main.py Dockerfile FROM python:3.9 docker-compose.yml

Read More
pdf

Laravel – open a pdf file from shared network using local default app in laptop

i have a question regarding to pdf open using local default app. I try to open an uploaded pdf file in a laravel

Read More
HTML

why json file value is not displayed (javascript)

<script> // Fetch JSON data fetch('dat.json') .then(response => response.json()) .then(data => { const tbody = document.querySelector('#dataTable tbody'); data.forEach(item => { const row =

Read More
C#

Kill syscall not working correctly on ArchLinux machine

I’m trying to use the signaling mechanism of UNIX to do some processing. To test out this functionality, I wrote the following code:

Read More
python

Selenium AWS Python 3.12 – How to Get in a Layer for Lambda Functions

I’ve been working on using Selenium with Python 3.12 in an AWS Lambda layer. While I’ve successfully set this up using Docker, I’m

Read More
javascript

How can I find the default rules for phone numbers in the google-libphonenumber NPM package?

I’m using the google-libphonenumber NPM package to format and parse phone numbers, specifically for New Zealand. I want to understand which default rules

Read More
C++

method for Calculating / Retrieving CPU Clockspeed in C?

For an assignment, I’ve been trying to work on a project to inspect and retrieve system information on Linux either in pure C,

Read More