jump to:allmastodonblueskylemmylobstersdevstackwikirsshn
wwebbit
view: | | |

Front page / everything · hot matching “list”

6 shown · updated 0s ago · read only
  1. How do I make an IRIS list/array property queryable per-element in SQL, without updates rewriting the whole list? (stackoverflow.com)stack

    29 points by Svetik May in stackoverflow.com · 13m ago · stack

    I’ve got a CRM.Contact class where each contact has multiple phone numbers plus some free-form metadata. started with the obvious thing: Class CRM.Contact Extends (%Persistent, %Populate) { Property FullName As %String(MAXLEN = 100); Property PhoneNumbers As list Of %String; Pro…
  2. How to average multiple files across groups (stackoverflow.com)stack

    21 points by carbonmire in stackoverflow.com · 2h ago · stack

    I have a folder of some 1400 CSV files that are all in identical format. Each file has a row of column headers, a column of row headers, and a matrix of data. All cells are numerical except the column headers (row headers are numerical and each position is always the same number…
  3. can I make choosing a file count as a user gesture? (stackoverflow.com)stack

    18 points by Geoff Nunes in stackoverflow.com · 17h ago · stack

    I am making a very simple video player. I want the video to display in full screen mode. I give the user two ways to choose a file to play. One works and one does not. The way that works listens to a div for a 'drop' event. The even triggers a routine that enters full screen and…
  4. Unix/Perl/Python: substitute list on big data set (stackoverflow.com)stack

    9 points by Subbeh in stackoverflow.com · 7y ago · stack

    I've got a mapping file of about 13491 key/value pairs which I need to use to replace the key with the value in a data set of about 500000 lines divided over 25 different files. Example mapping: value1,value2 Example input: field1,field2,**value1**,field4 Example output: field1,…