Power Apps Search

Power Apps Search and Filter Functions on Large SharePoint Lists

PowerApps Search and Filter Functions

###############################################

Search('Válogatott eseti kutatások';KeresBox.Text;"Title";"field_1")

Érdekesség, a field_1, több soros.
Ékezetes oszlopnevek nem jöttek fel, ezért ezeket a ‘field_’ nevűeket próbáltam.

###############################################
Can you highlight the selected record in a Gallery
https://powerusers.microsoft.com/t5/Building-Power-Apps/Can-you-highlight-the-selected-record-in-a-Gallery/td-p/9877

If(ThisItem.Title=Gallery6.Selected.Title;
RGBA(186; 202; 226; 1);
RGBA(255; 255; 255; 1)
)

###############################################

megjegyzés: StartsWith nem jó, csak a text elejét nézi

Filter(
'Válogatott eseti kutatások';
StartsWith(Title;
KeresBox.Text
) ||
StartsWith('kulcsszavak';
KeresBox.Text
)
)

###############################################

Visual Studio Code extensions

Laravel Development:

Laravel Extension Pack {
uninstall:
EditorConfig for VS Code
Laravel Create View
Laravel Blade Wrapper
}

One Dark Pro

fejlesztő vs menedzser

A nagy karrier dilemma: fejlesztő legyek vagy menedzser?

https://www.hwsw.hu/podcast/66163/kraftie-podcast-it-informatikai-karrier-munkavallalas-dilemma-karriervaltas-fejleszto-vs-menedzser.html

Mindig eljön a pillanat, amikor a fejlesztők a fenti válaszúthoz érnek, ahol nehéz jó döntést hozni, hiszen IC (individual contributor) karrierút is számos különböző lehetőséget kínál, melyek mind fizetésben, mind szakmai téren is előrelépést jelenthetnek.

I’m a senior engineer, but I’m thinking about being a manager. I really like engineering, but I feel like I’m just solving the same problems over and over and it seems like the real problems are people problems. I have to be a manager to get promoted. I hope it isn’t terrible, once I make the switch. I hear it’s terrible.

https://charity.wtf/2017/05/11/the-engineer-manager-pendulum/

Check fake profile picture

How to Detect Fake Profile Pictures in Chrome

https://browsertouse.com/blog/15386/detect-fake-profile-pictures-in-chrome/

How To Find Stolen Pictures Online: A Practical Guide to Fight Image Theft

https://www.pixsy.com/academy/image-owner/how-to-find-stolen-pictures-online/

TinEye Extension to Identify Reused or Fake Pictures
https://tineye.com/search/c9068e7b98bf952bb01f7b494b05262fbc5cd684?sort=score&order=desc&page=1

Sziasztok! Messengeren írt egy szép, napszemüveges nő, hogy szeretné megvenni a Beatles dupla lemezt. A Foxpost küldést leveleztem vele, amikor éppen a válaszra vártam, a fényképét lecsekkoltam, hogy valós-e. A https://tineye.com/ -t használtam, bemásoltam az url-t. Kidobta, hogy ez egy model képe, egy stock fotó. Olyan kamu profilról írt, aminek 1000+ ismerőse volt. Ti is legyetek résen! 😎

SharePoint 365 list, column formatting examples (json)

Use column formatting to customize SharePoint

https://learn.microsoft.com/en-us/sharepoint/dev/declarative-customization/column-formatting

ChatGPT: give me json example: share 365 column formatting bigger, bolder current column text

{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "div",
"style": {
"font-size": "18px",
"font-weight": "bold"
},
"txtContent": "@currentField"
}

In this example, we define a div element as the root element (elmType) and apply styling to it using the style property. The font-size property sets the font size to 18 pixels, and the font-weight property sets the font weight to bold.

The txtContent property is used to display the value of the current column field (@currentField) inside the div element.
###

SharePoint column formatting examples

https://www.enjoysharepoint.com/sharepoint-modern-list-column-formatting/

SharePoint Column Formatting with JSON
https://steveknutson.blog/2020/06/13/sharepoint-column-formatting-with-json/

Getting started with SharePoint’s custom column formatting
https://pnp.github.io/blog/post/getting-started-with-sharepoint-s-custom-column-formatting/

Using JSON formatting in SharePoint columns to display fields from a Person data column
https://blogs.ed.ac.uk/annabel-treshansky/2022/03/28/using-json-formatting-in-sharepoint-columns-to-display-fields-from-a-person-data-column/

Az oszlopformázás ismertetése
https://support.office.com/hu-HU/client/results?Shownav=true&lcid=1038&ns=SPOStandard&version=16&omkt=hu-HU&ver=16&HelpID=WSSEndUser_ColumnFormatting

Use column formatting to customize SharePoint
https://learn.microsoft.com/hu-hu/sharepoint/dev/declarative-customization/column-formatting

Convert a single line of text column to hyperlink using SharePoint and Microsoft Lists column formatting

https://lists.handsontek.net/convert-single-line-text-column-hyperlink-using-sharepoint-microsoft-lists-column-formatting/

vizi túra, túra kenu info, Kis-Duna

http://www.evezzvelem.hu/viziturak-rackevei-duna.php

Hossza 57 kilométer
Csepelnél válik le a főágról, és Tassnál egyesül vele ismét, mindkét helyen zsilip szabályozza. A beengedett vízmennyiség állandó, a vízállás ingadozása jelentéktelen, áradás nem fordulhat elő. A Ráckevei-Duna egyhe kanyarokat ír le, szélessége 100-200 méter, tempója kb. 1 km/h, szinte állóvíz, ennek köszönhetően mindkét irányban lehet vízitúrázni rajta.

Python Selenium info

néha a seleniumot is frissíteni kell:
ez volt a hibaüzenet: This version of ChromeDriver only supports Chrome version 114
https://stackoverflow.com/questions/76913935/selenium-common-exceptions-sessionnotcreatedexception-this-version-of-chromedri
pip install -U selenium==4.11.2

https://pypi.org/project/selenium/

Several browsers/drivers are supported (Firefox, Chrome, Internet Explorer), as well as the Remote protocol.

Supported Python Versions
Python 3.7+

https://www.python.org/downloads/windows/

pip install -U selenium

https://sites.google.com/a/chromium.org/chromedriver/home
https://sites.google.com/a/chromium.org/chromedriver/downloads

https://chromedriver.chromium.org/downloads

https://www.selenium.dev/documentation/webdriver/waits/

###################################

#############################################
Change list:

.find_element_by_class_name(
.find_element(By.CLASS_NAME,

.find_element_by_css_selector(
.find_element(By.CSS_SELECTOR,

.find_element_by_id(
.find_element(By.ID,

.find_element_by_link_text(
.find_element(By.LINK_TEXT,

.find_element_by_name(
.find_element(By.NAME,

.find_element_by_partial_link_text(
.find_element(By.PARTIAL_LINK_TEXT,

.find_element_by_tag_name(
.find_element(By.TAG_NAME,

.find_element_by_xpath(
.find_element(By.XPATH,

.find_elements_by_class_name(
.find_elements(By.CLASS_NAME,

.find_elements_by_css_selector(
.find_elements(By.CSS_SELECTOR,

.find_elements_by_id(
.find_elements(By.ID,

.find_elements_by_link_text(
.find_elements(By.LINK_TEXT,

.find_elements_by_name(
.find_elements(By.NAME,

.find_elements_by_partial_link_text(
.find_elements(By.PARTIAL_LINK_TEXT,

.find_elements_by_tag_name(
.find_elements(By.TAG_NAME,

.find_elements_by_xpath(
.find_elements(By.XPATH,

https://stackoverflow.com/questions/72754651/attributeerror-webdriver-object-has-no-attribute-find-element-by-xpath
############################################

AttributeError: ‘WebDriver’ object has no attribute ‘find_element_by_id’

https://bobbyhadz.com/blog/python-attributeerror-webdriver-object-has-no-attribute-find-element-by-id
#########################################

How to deal with certificates using Selenium?

https://stackoverflow.com/questions/24507078/how-to-deal-with-certificates-using-selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument(‘ignore-certificate-errors’)

driver = webdriver.Chrome(chrome_options=options)

###########################################

How to click a link using Selenium?

https://pythonexamples.org/python-selenium-click-a-link/

###########################################
Check if a page is completely loaded or not in Selenium web driver in Python

https://www.codespeedy.com/check-if-a-page-is-completely-loaded-or-not-in-selenium-web-driver-in-python/

###########################################
Python Selenium Set Multiple Chrome Preference

https://stackoverflow.com/questions/43347044/python-selenium-set-multiple-chrome-preference

#####################################

Cserépkályha info

Mitől használódik el a cserépkályha? Mennyi ideig jó egy cserépkályha?

A kiégés jelei, hogy a fuga kipereg, az agyag részek is szétrepedeznek és kiperegnek, akár olyan mértékben, hogy “fals” levegő kerülhet a kályha belsejébe vagy éppen füst kerülhet a szoba légterébe a füstjáratokból.

Helyes használat mellett a szakemberek 10-15 évenként való újrarakást javasolnak. A cserépkályha élettartamát meghosszabbítja, ha folyamatos használatban van az eszköz. Ennek oka az, hogy ha úgy fűtjük fel újra, hogy nem hagyjuk teljesen kihűlni, azzal csökkentjük az alkotóelemeit elöregítő és felmorzsoló hőmozgások számát és méretét. Ha nagyon hektikusan használjuk, és ugyanakkor türelmetlenül, túl gyorsan és erőteljesen fűtjük fel, vagy ha nedves fával rakjuk meg, a cserépkályha élettartama lerövidül.

https://www.bien.hu/meddig-jo-egy-cserepkalyha-mi-a-jobb-a-regi-vagy-az-uj/