Pos Questions
Ad
Ad
Post free backlinks on site
Free backlink maker Use this free Backlink Maker to generate a large number of quality backlinks in a matter of seconds. Enter the website URL and click 'Make Backlink'. Enter URL and create a backlink.
how to add pages in october cms
October CMS gives you flexible ways to add content and pages. In October cms you can add pages in two possible ways.static pages and CMS/Editor module.
Fetching data from Express.js API from react.js. Postman's request are working
Can anyone help me with little problem? i have express application which is completly working with requests from postman(adding, deleting, etc.)
What could be the benefit of such a complicated function to test if variable is not zero?
I'm working on my master's thesis (computer science) on code which is written for post-quantum-secure signatures. the whole thing can be found
Auth error with POST request: "Authentication credentials were not provided" using Axios, but works using POSTMAN
I'm using react and trying to handle password change by the user. i'm sending a post request like this:
Push notification to all users in firebase
I am trying to send a push notification to all users in my firebase app. is there a way to do it without using a topic? i have tried doing
Error in `<unknown>': corrupted double-linked list: 0x011eb8e0 happens Occasionally when calling free
I have a problem with free. i test my code in online compiler but everything is ok. however in my device (which is a pos) it
Check if a `read` would return EOF without consuming any data
I have a c program that receives data from another program over a (linux) pipe. i want the program to behave differently if the pipe was closed
How to get the number of deleted rows in PostgreSQL?
I am looking for a way to return the number of rows affected by a delete clause in postgresql. the
postgresql ignore milliseconds from timestamp when doing a select statement
I have tablea and it has a field of time_captured | timestamp without time zone | default now() it is being used to record when data was
Fetch /POST request to Server: Empty array when receiving multipart/form-data;
Im trying to upload an image (reactjs) to my server (nodejs+ express+ multerjs) to digital ocean. im using a post request with
ISO 8583 create LLLLVAR
Is it possible to use a field more than 999 bytes in iso8583? i wanna to send data in a filed which has more than 999 bytes. what is the
Ad
Why does the value of i not increment for i=i++; statement?
Code: for(int i=0;i<5;){ i=i++; printf("%d",i); } the above program print zeros infinitely, how
Converting int64_t to string in C
I am working with c programming language and using postgres database to insert records. one of the columns of the table in the database is of type
How to send Ms Azure push notifications to android device from Postman
I am trying to send azure push notification to android devices by using postman. to achieve this i saw post in
How to split a string into array in PostScript
What is the easiest way to split a string into array by a given character? for example, making an array of words by splitting over space; or even
What is the best SQL library for use in Common Lisp?
Ideally something that will work with oracle, ms sql server, mysql and posgress.
Meta-composition during music performances
A couple of weeks ago, my piano teacher and i were bouncing ideas off of each other concerning meta-composing music software. the idea was
How can I upload more than one file from a single HTML form in IE?
Internet explorer (from versions 4 to 7, at least) limits the number of files uploaded using a single 'input type="file"' form field to one. what
IE positions left sidebar below content
I am not familiar with this website but i am desperately seeking help with the website i am building. i'm sorry if i'm not in the right place or
$_POST is empty after form submission
I set up this test page up on my server. please tell me why the $_post array does not contain anything even when i submit the form. i
Returning API response correctly from Update method. Postgres db pg-promise Node.js
I'm just starting with building apis, node.js, postgres so this might be a bit of a naive question.. i have noticed that when i call the update
Ad
Escape password containing @ when using postgres pg_dump command
I 'm using postgres, i created db, user, password, this is the password: password = name&[email protected] i'm using the
How to declare local variables in postgresql?
There is an almost identical, but not really answered question
Why this postfix input calculator in c using stack of array doesn;t work?
I am learning data structures and as i go through i needed to make a postfix input calculator in c.i wanted to make it using stack and stack of
Setting file access time, modification time
I have a list of files in a mounted drive. i am trying to set access and modify time. this is the stat information before using utime to
Does POSIX-standard require it's specifications to be implemented in the C language only?
Based on the articles i've read on wikipedia and other sources, i've learnt that operating systems like the ones based on unix implement the
Decomposing Number Addition in C
I like to create a program that will decompose a number, suppose n = 123 expected out is 100 + 20 + 3 if the n =
Failed to convert value of type 'java.lang.String' to required type 'java.sql.Date'
There is a spring mvc app where the customer has the option to place an order. you can set the date and time of the order in the
Effective strategy for leaving an audit trail/change history for DB applications?
What are some strategies that people have had success with for maintaining a change history for data in a fairly complex database. one of the
How Do I Find a File in a Subversion Repository History?
Is it possible to look back through the history of a subversion repository for files of a certain name (even better would be for them to have a
How to concatenate strings of a string field in a PostgreSQL 'group by' query?
I am looking for a way to concatenate the strings of a field within a group by query. so for example, i have a table: id
How can I get a list of all functions stored in the database of a particular schema in PostgreSQL?
I want to be able to connect to a postgresql database and find all of the functions for a particular schema. my thought was that i could
Ad
Trying to post an Array of Objects in Laravel. ErrorException: Creating default object from empty value in file
I'm trying to send a post request with a data set like this: [ { "course_code":"cis341", "start_date":"2020-08-22",
Rebinding on Postback Based on Selected DropDown Value
Greetings! i have a dropdownlist within a formview which are bound to xmldatasources: <asp:formview id="myformview"
ASP DropDown causing ViewState to appear in Address bar
If you visit this page in internet explorer, and choose a
Use for the phppgadmin Reports Database?
Phppgadmin comes with instructions for creating a reports
Firebase REST API - how to set character encoding?
I'm calling the firebase rest api from a node.js process. the problem i'm seeing is that posts fail when the post body contains non-ascii
mirroring a subfolder between two writable SVN repos
I have a situation i'm trying to cope with involving my company's svn server. we keep all of our important code in a locked-down server (we'll
Is it possible to stop an AWS Postgres Aurora Global Database?
I want to run aws postgres aurora global database in my staging environment, but i want to stop it overnight and weekends. it seems like this
If a container exits within docker compose, does it take its healthcheck with it?
If i specify a service within a docker-compose.yaml file and that service (container) exits, does the healthcheck go down with
Cannot find module @angular-devkit/build-angular/package.json during docker-compose up
I found many answers online to the exception cannot find module '@angular-devkit/build-angular/package.json, among which adding
Polling Storybook with Docker-Compose
I am trying to run a basic nextjs and storybook application using docker and cannot get hot reloading to work with storybook. i tried adding the
Why my docker-compose build is failing when copying files
I have a project that is running just fine using fastapi (main.py). now i want to share it as a docker image. here is what i am doing: my
Ad
Docker-compose expected container is up to date
I created docker-compose yaml file to run a docker image after it has been pulled locally and this yaml file contain another services (mysql and
Docker: Why is docker compose not starting other containers?
Here is my docker-compose.yml file version: "3.9" services:
I want to communicate my client and kafka broker with docker compose
There are client, kafka and zookeeper in the same network, i am trying to connect from client to kafka with service_name:port but
Enabling Wordpress debug mode in docker-compose environment
I'm having problems understanding how to enable wordpress debug mode through docker-compose.
Spring Boot + Docker Compose: How to override 'Map<String, List<String>>' environment variable from yaml properties
I am using yaml properties file for the sping boot configuration. my structure of application.yml is following: information:
How can a container setup using Dockerfile communicate with a localhost:xxxx made available by another container setup using docker-compose?
My docker-compose looks like below: version: "3.0" services: elasticsearch: container_name:
How to start a named NodeJS container with a named image from a docker-compose file and and a Dockerfile specifying the image?
Given this directory structure: . ├── backend ├── compose.yaml └── frontend └── dockerfile.dev 2
Modify local file with Airflow running on Windows (with Docker Compose)
I have airflow running on windows using docker compose. i created a dag which appends data to a sqlite database. currently the dag
Docker compose error sed: can't create temp file: Permission denied
I have a simple dockerfile as below:- from tinkerpop/gremlin-server:3.4.12 in my docker-compose
Docker-Compose Django can't connect to DB or Celery
I have everything on one network (it talks to another app in another docker-compose file). but i keep getting this error:
docker-compose up --build hang at chown in entrypoint without error. How to resolve?
I'm trying to change the ownership of a mounted volume at startup so that a user in the container can write to it and the host can read from
Ad
Possible to pass `docker build` flags via docker-compose?
i have a dockerfile dockerfile.foo i run dockerfile.foo using docker run -p 8000:8000
How to docker compose to run azure container instance
I have a docker-compose file with multiple services like prometheus, grafana, spring boot ms and elk. i am able to start containers on my local
Docker Compose network_mode - adding argument causes local testing to fail
I'm trying to build an application that is able to use local integration testing via docker compose with google cloud emulator containers, while
Docker compose can't installed on Ubuntu 22.0.4
I was install docker compose on my ubuntu 22.0.4 with this command line $ mkdir -p ~/.docker/cli-plugins/ $ curl -sl
Why can't I run the mysql command in docker compose?
I have a project with a mysql database in a container. i use docker-compose to set my project up. and i want to run the mysql command to inspect
In docker-compose, why one service could reach another, but not the other way around?
I'm writing an automated test that involves running several containers at once. the test submits some workload to the tested service, and expects
docker-compose / postgres - how to disable data persistence?
I'm using postgres image form here. this image persist db
Python requests cannot resolve Docker-Compose services
I have 2 docker-compose set ups in separate repos. when i run them i want them to talk to each other on the same
Open separate terminal logs/output for all services - Docker Compose
I am running a web app with docker-compose with a react frontend and fastapi (python) backend. i am trying to get the output for both
Nginx blocking static files in docker-compose
I'm running docker-compose with vaultwarden image on internal port 8732, nginx works as a proxy server outside natively, which is listening to the
Docker compose refuses to apply environment variables
Update it appears the problem is specifically related to the run command in the dockerfile. if i remove it, the build works
Ad
why I can run docker-compose in Github action without install it
I make a copy/paste from
can't connect to mysql docker-compose
I can't connect my docker app to my mysql server. but i can connect the app to the server from my local machine. i use
Why does the DBMS say that the primary key is not present in the table
I am a cs student that is taking his first course in databases so here i am using postgresql to create a database with the following tables:
why this is a valid query in postgres? is it expensive for the dbms?
I am struggling to understand a part of a query, how could it be valid, and whether is an expensive bad practice or not. basically i have
Best way to measure query time in different DBMS (MySQL, SQlite, Postgres, MariaDB, Oracle)
For college i'm doing a thesis on performance in different dbms. i have set of tables with same set of data in 5 different dbms (mysql, mariadb,
Theoretical - Fastest way to compute different counts
I would like to know how experienced sql users would compute a lot of counts with different conditions. i have a table [population] and a table
Heroku postgres postgis - django releases fail with: relation "spatial_ref_sys" does not exist
Heroku changed their postgresql extension schema management on 01 august 2022.
Would syntax for composition be a useful addition to Java?
First off, i know next to nothing about language theory, and i barely know any other languages except java, but i had an idea that i think would
Why laravel auditing not functioning?
I have done my coding but the laravel audit seems not catch the data for update. the data i try to update is on the column of value, but on the
Installing Laravel with Composer create-project - how to use the newest version?
It has been a while since i created a new project with laravel framework. decided to install a fresh project so opened up v7 documentation at
Asp.Net core MVC Javascript Ajax parameters null HttpPost
I am writing a javascript function for a button <button type="button" class="btn btn-sm btn-outline-secondary"
Ad
Implementation example for Repository pattern with Linq to Sql and C#
I am looking for a repository pattern implementation example/resource that follows domain driven design principles for my asp.net mvc application.
ContactForm. Return div instead of a new htmlPage on [HttpPost]
I'm having a contactform in a view. when i hit submit the method below starts. in the try/catch section it now returns a new blank page with the
consecutive, not concurrent jQuery AJAX posts
I'm probably missing something obvious, but i don't seem to be able to get my ajax posts to run consecutively instead of concurrently with
Page only posts back with Fiddler attached?
I have reporting services set up with forms authentication. our app is sitting over reporting services and uses it's authentication extension as a
Is it possible to unlisten on a socket?
Is it possible to unlisten on a socket after you have called listen(fd, backlog)? edit: my mistake for not making myself clear. i'd like
Cannot run artisan migrate with docker-compose setup
I've got following setup and cannot get my head around why my docker-composer run --rm artisan migrate is struggling to connect to
Laravel/PDO JSONPATH request on Postgresql
I am trying to make a jsonpath request on a postgresql with laravel/pdo. here is what i need to archieve. select i.id as id,
JPA repository Boolean Query - return null pointer exception
I have java springboot project with repository that included boolean custom query. but the system run to null pointer exception apart from return
Postgresql query where statement positions
I have two tables that i want to join. it works without where conditions. after adding where conditions, i got syntax error near a
How to make express visible outside docker container
I am trying to setup docker with a nodejs/react env for local dev purposes, this is dockerfile for client: # pull docker hub base
Column doesn't exist error when trying to insert new value to table (on heroku using nodejs and pg library)
I'm playing with an app on heroku. it uses heroku postgresql but i have trouble inserting data to it. the code looks as follows:
Ad
Typoscript regex replacement asterisk to bold?
I have a string where i want to replace text surrounded by asterisks *text* to html <b>text</b> using
How to do C++ style destructors in C#?
I've got a c# class with a dispose function via idisposable. it's intended to be used inside a using block
Using Aggregation and Summarization in Postgresql
I have a simple query that is designed to summarize total_miles based on a group by aggregation of other columns:
Docker compose file invalid
I'm new to docker and i've created a dockerfile but am having difficulties with my docker-compose file. i'm currently getting the error
JOINING tables with two conditions or two columns in common in PostgreSQL
Postgresql question: i have two tables. table 1 has item, color, and size for all items in the store. table 2 is a pricing list and has item,
Why I am getting array JSON response when I call method from Web API?
I am getting array which include my json when i call that method in postman like [ { "spark_version":
sql query that depends on each value of other table
I'm not used to query sentences and this one is a bit tricky, i don't know even if it is possible (at least with just a single sql query) or if i
How to count total lines changed by a specific author in a Git repository?
Is there a command i can invoke which will count the lines changed by a specific author in a git repository? i know that there must be ways to
Undefined references to mq functions
I need simple example of function mq_close in c programming language. mq_close() closes the message queue descriptor mqdes. on
Unable to let a macro fetch tabular content issuing post http requests
I've been trying to get tabular content from a
Ad
Division in group by SQL table
I have the following sql code select (count(*) filter (where has_a)) as count_a, count(*) as total_count, process_date from(select
Postgres syntax error in IF statement with NOT EXIST statement
I want to use if statement in insertion. insert into <table_name>(<columns>) values (if not exists
Ad
Blog Categories
Ad