Button with value within a form

<!-- The value attribute specifies the initial value for a <button> in an HTML form. In a form, the button and its value is only submitted if the button itself was used to submit the form. -->

<form action="/action_page.php" method="get">
  Choose your favorite subject:
  <button name="subject" type="submit" value="fav_HTML">HTML</button>
  <button name="subject" type="submit" value="fav_CSS">CSS</button>
</form>

Separate coverage plot graphs

# Creating the plot
ggplot(master_sample, aes(x = pos, y = depth)) +
    geom_line() +  # Draws the line graph
    scale_y_log10() +
    labs(x = "Position", y = "Log10 Depth", title = "Depth Profile") +
    facet_grid(vars(sample))
  
gen_graph <- 
    ggplot(master_sample_gen, aes(x = pos, y = depth)) +
        geom_line() +  # Draws the line graph
        scale_y_log10() +
        labs(x = "Position", y = "Log10 Depth", title = "Genome depth profile")
        # facet_grid(sample ~

Latte component

<!-- component definition  -->
{define badge, bool $show = true, string $title = '', $class = null}
	<span class="badge ms-2 font-size-small {$class ?? 'bg-body-secondary text-body'}" n:if="$show" title="{$title}">
		{block content}{/block}
	</span>
{/define}


<!-- usage -->
{embed badge, $client !== null, 'Uhrazeno'}
	{block content}
		<i class="mdi mdi-check text-success"></i>
		{$client->totalInvoicePricePaid|price:0}
	{/block}
{/embed}

pytest essentials

# Basic Commands
`python -m pytest`, or, more briefly `pytest`...

Will search for 
- folders beginning with `test`, then...
- files beginning with `test`, then...
- functions beginning with `test`,
- classes beginning with `Test`,
- methods beginning with `test`

> **NOTE**
>
> Using classes can be useful to group tests.

- `pytest -q`: quiet mode
- `pytest -v`: verbose mode
- `pytest -vv`: very verbose mode

> **TRY them to compare**

# Marks
Marks work with decorators and are a mechanism to g

card

aaaaaaaaaa

10052024

inicio{
"host":"70E35CD863DF4C3D1E363C5DE748",
"porta":"0E0276FE51C1"
}fim

シングルトン とは。。

使用したいそれぞれのファイルで、 CustomScriptEditor2 の新しいインスタンスを作成する代わりに、 これらのインスタンスを一度だけ、ここで作成し、 これを、他のすべてのファイルの場所で再利用することをお勧めします。 これは一つの方法であり、 当ファイルのように、別の Pythonファイル(例えば singleton.py )を作成し、 その中で、CustomScriptEditor2 のインスタンスを作成することです。 これにより、CustomScriptEditor2 のインスタンスは一度だけ作成され、 例えば、 SampleA_cmdsUI.py と SampleB_pymelUI.py の両方で共有されるようになります。 これがシングルトンパターンの一般的な実装方法です。
# -*- coding: utf-8 -*-

u"""
singleton.py

:Author:
    oki yoshihiro
    okiyoshihiro.job@gmail.com
:Version: -1.0-
:Date: 2024/05/10

.. note:: 当コード記述時の環境

    - Maya2022 python3系
    - Python version: 3.7.7
    - PySide2 version: 5.15.2

概要(overview):
    シングルトンパターンを実装するためのモジュールです
詳細(details):
    使用したいそれぞれのファイルで、
        CustomScriptEditor2 の新しいインスタンスを作成する代わりに、
            これらのインスタンスを一度だけ、ここで作成し、
                これを、他のすべてのファイルの場所で再利用することをお勧めします。
    これは一つの方法であり、
   

Dynamic Vue.js component in runtime

<template>
  <h1>test</h1>
  <component :is="dynamicComponent" />
</template>


<script setup>
import { computed} from 'vue'

const dynamicComponent = computed(() => {

  let template = `
    <h3>Toto je dynamic component</h3>
    <p>Nejaky text</p>
  `

  return { template }

})
</script>

<!--/* musi to byt jako bundle vue .. build, ne runtime vue   */-->

Django model relations

class User(models.Model):
    id = models.UUIDField(primary_key=True, default=uuid.uuid4)
    email = models.CharField(unique=True, null=False, blank=False)
    password_hash = models.CharField(max_length=255, null=True, blank=False)

    @property
    def pending_articles_count(self):
        return self.articles.filter(state__in=['pending_content', 'pending_translation']).count()

    class Meta:
        db_table = "users"

class Article(models.Model):
    id = models.UUIDField(primary_key=Tru

Git checkout

Switching Branches: To switch to an existing branch, you can use:
git checkout <branch-name>

For example, to switch to a branch named "feature-branch", you would use:
git checkout feature-branch

Creating and Switching to a New Branch: If you want to create a new branch and switch to it immediately, you can combine git checkout with the -b option:
arduino
git checkout -b <new-branch-name>

For example, to create and switch to a new branch named "my-new-feature", you would use:
arduino
git check

Vincent Comments - Loan Id = 624630

select l.loan_payoff_date, lse.closed_date, fi.loan_closed, fi.loan_closed_cumulative, fi.loan_id, fi.installment_number, fi.period_start, fi.period_end, fi.amount, fi.amount_owed_to_period, fi.amount_paid_to_period,
	 fi.initial_default, fi.initial_default_cumulative, fi.current_default, fi.default_7_days, fi.default_15_days, fi.default_30_days, fi.default_35_days,
	 fi.default_60_days, fi.default_65_days, fi.prev_initial_default_or_payoff, fi.prev_current_default_at_period_end, fi.interest_sus

PayTrace

# PayTrace
* Get set up with sandbox, faster support reach out to developer (developersupport@paytrace.com)

---
### Terms 
* **Authorize** - hold _$x_ amount from customer, does not charge the card
* **Capture** - charge the card for _$x_ amount
* **Settle** - Completion of the capture, usually takes a day to finalize

---
### Issue
* When placing an order through the phone, agent uses credit card information
in PayTrace portal to create the transaction. But the card isn't charged at this point

11111

a:=1
fmt.Println(a)

Proxy object guide

// 1)  get + set
const target = {
    name: 'John Smith',
    age: 30,
};
const handler = {
    get: function (target, prop) {
        console.log(`Getting the property ${prop}`);
        return target[prop];
    },
    set: function (target, prop, value) {
        console.log(`Setting the property ${prop} to ${value}`);
        target[prop] = value;
    },
};
const proxy = new Proxy(target, handler);



// 2) with validator fn aka encapsulation
const withValidators = person 

3075. Maximize Happiness of Selected Children

/**
 * @param {number[]} happiness
 * @param {number} k
 * @return {number}
 */
var maximumHappinessSum = function(happiness, k) {
    // Sort the happiness array in descending order.
    // This ensures that the children with higher happiness are selected first.
    happiness.sort((a, b) => b - a);

    // Select the first k children from the sorted array.
    // These are the k children with the highest initial happiness.
    let selectedChildren = happiness.slice(0, k);

    // Calculate the 

Proxy - nested

const user = {
  a: 'A',
  b: {
    c: "C",
    d: "D"
  },
  x: {
    y: {
      z: {
        first: "first nested",
        second: "second nested"
      }
    }
  }
}


const createNestedProxy = (obj) => {
  return new Proxy(obj, {
    get(target, prop) {
      const props = prop.split('.');
      let value = target;
      for (const p of props) {
        value = value[p];
        if (value === undefined) return undefined;
      }
      return value;
    }
  });
}