Liquid - Products slider section

{{ 'component-card.bf.build.css' | asset_url | stylesheet_tag }}
{{ 'component-price.bf.build.css' | asset_url | stylesheet_tag }}

{{ 'component-slider.bf.build.css' | asset_url | stylesheet_tag }}
{{ 'slider-product.bf.build.css' | asset_url | stylesheet_tag }}

{%- if section.settings.enable_quick_add -%}
  {{ 'quick-add.bf.build.css' | asset_url | stylesheet_tag }}
  <script src="{{ 'quick-add.js' | asset_url }}" defer="defer"></script>
  <script src="{{ 'product-form.js' | asset_ur

CSS View function

https://jsbin.com/jegerowode/edit?html,output

docker-compose

# 共享目录

dls3 tables

psql

CREATE TEMPORARY TABLE tmp (enc_key varchar,r_year numeric, regid varchar,lpno varchar, chf_flag varchar);
\COPY tmp (enc_key,r_year,regid ,lpno , chf_flag ) FROM 202401.01_001_cohortpool_abs_deat.txt;
\pset format unaligned
\pset tuples_only on
\pset fieldsep '\t'
\o cares_cohortpool_abs_deat.psql
select t.enc_key, cm.chain_id, cm.oldsys_root, d.lpno||'E', d.r_year, d.regid, t.chf_flag ,d.dob, d.dod1
FROM deathdata d
JOIN tmp t ON t.regid=d.regid and t.r_year=d.r_year
JOIN demo

Shopify - Schema example

{
  "name": "Name",
  "class": "section section-padding",
  "disabled_on": {
    "groups": ["header", "footer"]
  },
  "settings": [
    {
      "type": "metaobject",
      "metaobject_type": "kits_compare",
      "id": "compare_item",
      "label": "Compare Item"
    },
    {
      "type": "metaobject_list",
      "metaobject_type": "latest_news",
      "id": "latest_news",
      "label": "Latest news"
    },
    {
      "type": "range",
      "id": "range_item",
      "l

1267. Count Servers that Communicate

You are given a map of a server center, represented as a m * n integer matrix grid, where 1 means that on that cell there is a server and 0 means that it is no server. Two servers are said to communicate if they are on the same row or on the same column. Return the number of servers that communicate with any other server.
/**
 * @param {number[][]} grid
 * @return {number}
 */
var countServers = function(grid) {
    const m = grid.length;
    const n = grid[0].length;
    const rowCount = new Array(m).fill(0); // Array to store the count of servers in each row
    const colCount = new Array(n).fill(0); // Array to store the count of servers in each column

    // Fill the rowCount and colCount arrays
    for (let i = 0; i < m; i++) {
        for (let j = 0; j < n; j++) {
            if (grid[i][j] === 1) {
      

BOM Green Yield v2 - 20250123

SELECT
  s4.pr_codenum AS partnum,
  s4.pr_descrip AS partdescrip,
  SUM(
    (
      (stage3.bo_quant / stage3.re_yield) * (stage2.bo_quant / stage2.re_yield)
    ) * (stage0.bo_quant / stage0.re_yield)
  ) AS s0tot,
  SUM(
    (stage3.bo_quant / stage3.re_yield) * (stage2.bo_quant / stage2.re_yield)
  ) AS s2tot,
  1 AS One
FROM
  dbo.dmprod AS s4
  INNER JOIN (
    SELECT
      rs4.re_prid,
      bs3.bo_prid,
      rs4.re_yield,
      bs3.bo_quant
    FROM
      dbo.dmrev

Yield Data New v2

/*GVN Yield Query v11
Changes:
02.01.22 - Added subquery join to dmrev and dmbom to calculate anticipated oven yield
02.17.22 - Updated anticipated oven yield query to join into current bom by part number and revision name
04.14.22 - Added Stage2Tot variable by duplicating InjMix variable joins and removing the user lot breakout
09.29.22 - Restructured joins to use Relieve and Un-Relieve transactions instead of Issue and De-Issue transactions
05-28-24 - Added new stage 1-Thawed to allow st

install

Установка:
1)качаем архив wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.6.3-linux-x86_64.tar.gz
2)распаковываем tar -xvzf elasticsearch-8.6.3-linux-x86_64.tar.gz
3)перемаещаем в нужную директорию sudo mv elasticsearch-8.x.x /opt/elasticsearch
4)переходим в дирректорию
5)sudo nano config/elasticsearch.yml должно быть что-то итпо этого
http.host: 0.0.0.0
http.port: 9200
6)пробный запуск sudo bin/elasticsearch


Добавление в systemd/ыныеуьсед
1)sudo nano /etc/systemd/sys

Liquid - SiteMap

<div class="sitemap">
    <div class="rte rte--page fw-3">
      <h2>{{- 'general.sitemap.categories' | t -}}</h2>
      <ol class="sitemap__list">
        {% for collection in collections %}
          <li class="sitemap__item">
            <a class="sitemap__link link" href="{{- collection.url -}}">
              {{- collection.title | escape -}}
            </a>&nbsp;
            {{- collection.url | prepend: shop.url -}}
          </li>
        {% endfor %}
      </ol>

      {%

Remove FW From Subject - VBA Outlook Macro

Sub RemoveFWFromSubject()
    Dim mailItem As Outlook.mailItem
    Dim subjectText As String
    
    ' Check if the active window is a mail item
    If Application.ActiveInspector.CurrentItem.Class = olMail Then
        Set mailItem = Application.ActiveInspector.CurrentItem
        
        ' Get the current subject
        subjectText = mailItem.Subject
        
        ' Remove "FW: " if it exists
        If Left(subjectText, 4) = "FW: " Then
            mailItem.Subject = Mid(su

Navigate To Message Folder - VBA Oulook Macro

Sub NavigateToMessageFolder()
    Dim olApp As Outlook.Application
    Dim olExplorer As Outlook.Explorer
    Dim olSelection As Outlook.Selection
    Dim olMail As Outlook.mailItem
    Dim olFolder As Outlook.Folder

    On Error Resume Next

    ' Get the current application and explorer
    Set olApp = Outlook.Application
    Set olExplorer = olApp.ActiveExplorer

    ' Get the currently selected message
    Set olSelection = olExplorer.Selection

    ' Ensure a single email i

Forward Email With Timing - VBA Outlook Macro

Sub ForwardEmailWithTiming()
    Dim objMail As Outlook.MailItem
    Dim objForward As Outlook.MailItem
    Dim sendTime As Date

    ' Check if an email is selected
    If Application.ActiveExplorer.Selection.Count = 0 Then
        MsgBox "Please select an email to forward.", vbExclamation
        Exit Sub
    End If

    ' Get the selected email
    Set objMail = Application.ActiveExplorer.Selection.Item(1)

    ' Ensure the selected item is a mail item
    If objMail.Class <> o

Firebase Analytics

To implement `firebase_analytics` in your Flutter app, follow these steps for best practices:

---

### 1. **Set Up Firebase in Your Project**

- **Register Your App with Firebase**:

  - Go to [Firebase Console](https://console.firebase.google.com/).
  - Create a new Firebase project or select an existing one.
  - Add your Android and/or iOS app by providing the required details.

- **Download the Configuration Files**:

  - For **Android**: Download `google-services.json` and place it in the `

docker 下载代理

# daocloud

https://github.com/DaoCloud/public-image-mirror

```
           docker.io/library/busybox
             |
             V
docker.m.daocloud.io/library/busybox
```

角丸に出来るボーダーグラデーション

[参考記事](https://digipress.info/tech/gradient-border-with-css/) [CodePen](https://codepen.io/digistate/pen/MWBmarr)
// ボーダーグラデーション
.element::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  border: 1px solid transparent;
  background-image: linear-gradient(90deg, #b1d1e0 0%, #abc490 25%, #eba963 50%, #e282a5 75%, #ca91bf 100%);
  background-origin: border-box;
  background-clip: border-box;
  mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  mask-clip: padding-box, border-box;
  mask-composite: exclude;
}