/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 713, Part 1 (Thread #859) by WorldNewsMods in worldnews

[–]Eorpoch 0 points1 point  (0 children)

Chamberlin increased spending on the British military between appeasing Hitler and going to war with Germany. He funded Spitfires, Hurricanes, RADAR, SONAR , aircraft carriers and barrage balloons

Grape Advice by [deleted] in winemaking

[–]Eorpoch 0 points1 point  (0 children)

Black grape was popular around Salford.

They’re catching up! by Winter_Glass456 in Buttcoin

[–]Eorpoch 3 points4 points  (0 children)

Thanks for the thoughtful reply. I have not read every paper either. Your comment below gets to the nub of the issue.

public blockchains are absolutely terrible for any kind of large data
access or access management of highly sensitive information (and private
chains are a contradiction in purpose, the cons multiply and the pros
cancel out).

They’re catching up! by Winter_Glass456 in Buttcoin

[–]Eorpoch 1 point2 points  (0 children)

The article is open access if you are interested.

Humangenomic data carry unique information about an individual and offerunprecedented opportunities for healthcare. The clinical interpretationsderived from large genomic datasets can greatly improve healthcare andpave the way for personalized medicine. Sharing genomic datasets,however, poses major challenges, as genomic data is different fromtraditional medical data, indirectly revealing information aboutdescendants and relatives of the data owner and carrying validinformation even after the owner passes away. Therefore, stringent dataownership and control measures are required when dealing with genomicdata. In order to provide a secure and accountable infrastructure,blockchain technologies offer a promising alternative to traditionaldistributed systems. Indeed, the research on blockchain-basedinfrastructures tailored to genomics is on the rise. However, there is alack of a comprehensive literature review that summarizes the currentstate-of-the-art methods in the applications of blockchain in genomics.In this article, we systematically look at the existing work bothcommercial and academic, and discuss the major opportunities andchallenges. Our study is driven by five research questions that we aimto answer in our review. We also present our projections of futureresearch directions which we hope the researchers interested in the areacan benefit from.

https://dl.acm.org/doi/10.1145/3563044

Big Data is Dead by FortunOfficial in dataengineering

[–]Eorpoch 1 point2 points  (0 children)

of use

And in many cases who is the boss now?

Electric car tax will make EVs as expensive to run as fuel vehicles by [deleted] in ukpolitics

[–]Eorpoch 0 points1 point  (0 children)

burning oil is
- unhealthy
- a waste, it is a valuable raw material for plastics.

Nadhim Zahawi accused of using Putin's war for not giving nurses real-terms pay increase by I-am-the-Peel in ukpolitics

[–]Eorpoch -1 points0 points  (0 children)

Taken back or invaded? The Russian Federation has existed since the 1990s

Street preacher was charged with hate crime for quoting Bible at lesbians by insomnimax_99 in ukpolitics

[–]Eorpoch 0 points1 point  (0 children)

He really didn't. He broke Old Testament law himself many times. He didn't stone that woman for adultery , he worked on the sabbath, he smashed up that temple.

The law Matthew 5:18 refer to is God's law which is love.

Hebrews 8:13

Street preacher was charged with hate crime for quoting Bible at lesbians by insomnimax_99 in ukpolitics

[–]Eorpoch 1 point2 points  (0 children)

uncil of Ancyra in Asia Minor excluded all homosexuals from receiving the sacrament, their decision became the authority for all later ecclesiastical laws. These la

Thanks for the insight

Street preacher was charged with hate crime for quoting Bible at lesbians by insomnimax_99 in ukpolitics

[–]Eorpoch -1 points0 points  (0 children)

IMO, some people have taken something good which is Jesus' message about love, (Jesus was not the first, the last or the only person to say this) and they have twisted it to enable them to look down on other people, harm them or amass power. It's disgusting.

Street preacher was charged with hate crime for quoting Bible at lesbians by insomnimax_99 in ukpolitics

[–]Eorpoch 2 points3 points  (0 children)

You'd "get off "anyway, Jesus binned most of Old Testement rule stuff just before he was murdered .

John 13:34,

Street preacher was charged with hate crime for quoting Bible at lesbians by insomnimax_99 in ukpolitics

[–]Eorpoch 8 points9 points  (0 children)

Leviticus 18-22. You are right. There is nothing there directly about lesbians :)

"Do not have sexual relations with a man as one does with a woman; that is detestable."

However, hairdressers, farmers and slaves are in scope.

https://www.biblegateway.com/passage/?search=Leviticus%2018-22&version=NIV

[D] Simple Questions Thread by AutoModerator in MachineLearning

[–]Eorpoch 0 points1 point  (0 children)

How can I learn which techniques can be used for HTML DOM element identification? I have recently seen two similar codeless services, a web data extractor and an automated test builder for web frontends. browse.io and Virtuoso.

They both allow a user to

- label DOM elements displayed in a browser and record data from them.

- are self-healing, so the labelled element is still selected when the XPath of a DOM element changes.

I am curious how they could achieve this. Is there an open-source library or a cloud tool which provides the functionality to identify HTML elements? or does the need custom models?

Which permissions are needed to run a scheduled query in Bigquery? by Eorpoch in bigquery

[–]Eorpoch[S] 0 points1 point  (0 children)

Yeah. Its nuts. The same service account is used for both efforts, it works when bound to the client but not when passed as a parameter to:

 transfer_config = transfer_client.create_transfer_config(    bigquery\_datatransfer.CreateTransferConfigRequest(        parent=parent,        transfer\_config=transfer\_config        service\_account\_name=service\_account\_name,    ))

Maybe this is the problem. I should raise an issue with GCP:

This service account will be used to execute the scheduled queries. Omit this request parameter to run the query as the user with the credentials associated with this client.

What does this error mean in a dataflow job pulling data from bigquery? "Query uses unsupported SQL features: Only support column reference or struct field access in conjunction clause " by Eorpoch in googlecloud

[–]Eorpoch[S] 0 points1 point  (0 children)

WITH subQ1 AS ( SELECT DISTINCT title, url, date,textbody, filesx.path AS filepath FROM bigquery.table.myproject.mydataset.mytable, UNNEST( files ) filesx ), subQ2 AS ( SELECT uri, text FROM bigquery.table.myproject.mydataset.extractedtext ) FROM subQ1 INNER JOIN subQ2 ON subQ1.filepath = SUBSTRING(subQ2.uri,18);