Questions tagged [multiple-entries]

64 questions
8
votes
2 answers

html-webpack-plugin multiple entry points adding all scripts

I'm building a project on an ejected react cli. The reason I ejected it is because there will be multiple pages being generated and some stand alone scripts that I wanted to make and have them take advantage of the ES6 and debugging tools provided…
Philll_t
  • 4,267
  • 5
  • 45
  • 59
8
votes
1 answer

RESTful using Jersey: method to POST multiple entities

I am trying to develop a method in my RESTful web service in Java to insert multiple entries into a MySQL DB using POST request. The generated RESTful Web Service has a method to insert a single entity, but not multiple ones. For example, it…
lemons
  • 121
  • 1
  • 5
8
votes
2 answers

How to delete multiple records in entity framework without looping using LINQ?

I want to delete multiple records in entity framework without using a for loop or any other loop using LINQ. Something that we can do it in SQL is there any way to delete multiple records in entity framework?
Vishal
  • 12,133
  • 17
  • 82
  • 128
7
votes
2 answers

Multi-bullet Doxygen @note?

In non-Doxygen comments, I often have: /* Lorem ipsum etc. * * Notes: * - A first note. * - Some other note note. */ But with Doxygen, I have @note (or \note), not @notes). So, should I use multiple @notes, or do I put all notes under the same…
einpoklum
  • 118,144
  • 57
  • 340
  • 684
2
votes
1 answer

Is it possible in Webpack to have multiple subdirectory entry points with multiple relative outputs

Is it possible to set an entry point for each child directory then outputs to a relative build folder. The result would be a structure something like: blockholder │ │ ├── package.json ├── webpack.config.js │ │ ├── block1 │ ├── index.js │ └──…
Finglish
  • 9,692
  • 14
  • 70
  • 114
2
votes
1 answer

Pandas Dataframe - find sums in column B across each label in column A

Lets say we have the following Data: ... col1 col2 col3 0 A 1 info 1 A 2 other 2 B 3 blabla I want to use python pandas to find duplicate entries (in column 1) and add them up based on…
fgypas
  • 326
  • 2
  • 11
2
votes
1 answer

How to merge menu entries for normal and visual mode?

I have many menu entries like these: nnoremenu 94.015.10 &MyMenu.Test\ :call Test("%","keyw2",keyw3") vnoremenu 94.015.10 &MyMenu.Test\ :call Test("'<,'>","keyw2",keyw3") One for normal mode 'nnoremenu' and One…
Reman
  • 7,931
  • 11
  • 55
  • 97
2
votes
2 answers

Inserting multiple rows in a column in MySQL using a Perl program

I want to insert multiple rows of data in a single column using a single query. This program is for less data. I have another weather monitoring .txt file which had 4000 lines of data. I can insert one data at a time but it becomes tedious for so…
sumeet
  • 47
  • 10
1
vote
7 answers

Prevent Multiple Entries using PHP

Presented alongside a polling facility on a webpage is the following input fields that enables the visitor (voter) to enter their details in a raffle for a hamper as a reward for their effort in taking part in the poll. The raffle entry form script…
Webiter
  • 119
  • 1
  • 10
1
vote
0 answers

Webpack 4 Multiple file types per entry does not output css files

I have a situation when I have multiple themes in a project and every theme has it's [theme-name].scss file and [theme-name].js file which has to be compiled into [theme-name]/dist folder. So I have multiple entries with multiple outputs. I thought…
SmallDev
  • 23
  • 4
1
vote
1 answer

Delete Entry Hash Tables

Just wondering how am I able to delete an entry from a hash table with the functionality of the insert being like this? class HashTable{ public int hash(int id){ return id%10;} private HNode[] head=new HNode[10]; public …
caoim
  • 13
  • 4
1
vote
1 answer

How display tag renders the data in JavaEE?

From the time I started working with JavaEE, I've made ​​my way paginating a list in the .jsp, but I have seen many of Java developers are using display tag library, why, I don't know, as I know display tag library gets the whole list in the page,…
Denees
  • 9,100
  • 13
  • 47
  • 76
1
vote
1 answer

Tkinter OOP principle, is it better to use methods or nested classes

I'm learning to code a program with GUI, but I can't get my head around with the best principle. At the moment I'm trying to have 5 entries and the text which would be written to entries would automatically update to labels. Here is my code so…
Mkk0
  • 25
  • 4
1
vote
0 answers

JavaScript - is there a way to enable multiple entries from one prompt box?

I'm trying to make a program where the user can enter how many CD's they wish to enter and then print out what they have entered onto a screen. Is there a way to enable multiple entries from one prompt box?