- The quick start guide.
Explanations of Quantum Blur and its usage on the Qiskit blog.
Explanations of Quantum Blur and its usage on the Qiskit blog.
def b(l): | |
n = len(l) | |
for i in range(n): | |
for j in range(0, n-i-1): | |
if l[j] > l[j+1] : | |
l[j], l[j+1] = l[j+1], l[j] | |
# Ejemplo de uso | |
l = [64, 34, 25, 12, 22, 11, 90] | |
b(l) |
https://docs.webix.com/samples/60_pro/03_api/03_customscrol_mixed.html | |
https://snippet.webix.com/5zzy92b7 | |
https://docs.webix.com/desktop__scroll_control.html#webixcustomscroll | |
https://webix.com/widget/scrollview/ | |
https://snippet.webix.com/gallery/core/b7990a92 |
// notes: EntityID is just wrapper around int, and ID is Component with [PrimaryEntityIndex] EntityID | |
// and ChildOf is [EntityIndex] EntityID | |
// this code uses mine Entitas.Generic | |
// if you wanna use this one with usual Entitas - just replace `Entity<GameScope>` with `GameEntity` and stuff | |
public class EntityParenthoodDebugger | |
{ | |
// Key: entity; Value: its parent | |
private readonly Dictionary<EntityID, EntityID> _processedEntities = new(); |
<?xml version="1.0" encoding="utf-8"?> | |
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<files> | |
<file path="C:\ProgramData\chocolatey\lib\termscp\termscp-v0.17.0-x86_64-pc-windows-msvc.zip.txt" checksum="68BAB6EFD5B24348CAF4DC106AD8BD16" /> | |
<file path="C:\ProgramData\chocolatey\lib\termscp\termscp.nupkg" checksum="8F76A21BDE0C7B6612FA86BE5D2AF24A" /> | |
<file path="C:\ProgramData\chocolatey\lib\termscp\termscp.nuspec" checksum="C282DA331DD553A6B5543460C27C4594" /> | |
<file path="C:\ProgramData\chocolatey\lib\termscp\tools\chocolateyinstall.ps1" checksum="07B4580EA47D0CA6393FB855B72FEC3F" /> | |
<file path="C:\ProgramData\chocolatey\lib\termscp\tools\termscp.exe" checksum="D3013F8A1E1671A669080379A4995E8D" /> | |
</files> | |
</fileSnapshot> |
https://docs.google.com/forms/d/e/1FAIpQLSfRBIfxOh6D4AwJJb0K1GReoW_FhJmX8P9QkH9q1O_ANP4lhQ/viewform?usp=pp_url&entry.801162922=N%E1%BB%AF&entry.1708736614=S%E1%BB%9F%20N%E1%BB%99i%20v%E1%BB%A5%20Th%C3%A0nh%20ph%E1%BB%91%20H%E1%BB%93%20Ch%C3%AD%20Minh&entry.377213069=Th%E1%BB%B1c%20hi%E1%BB%87n%20theo%20ch%E1%BB%89%20%C4%91%E1%BA%A1o%20qu%E1%BA%A3n%20l%C3%BD%20(Chuy%C3%AAn%20vi%C3%AAn%20tham%20m%C6%B0u%2C%20tri%E1%BB%83n%20khai%20ch%C3%ADnh%20s%C3%A1ch)&entry.2005039996=1%20%E2%80%93%205%20n%C4%83m&entry.550263785=20%20%E2%80%93%2050%20th%E1%BB%A7%20t%E1%BB%A5c&entry.785365417=Qu%E1%BA%A3n%20l%C3%BD%20h%E1%BB%93%20s%C6%A1%2C%20l%C6%B0u%20tr%E1%BB%AF%20t%C3%A0i%20li%E1%BB%87u&entry.840355449=4&entry.167487642=4&entry.1393902983=4&entry.62136141=4&entry.1819391459=4&entry.630739869=3&entry.91003576=5&entry.338238414=3&entry.908656648=5&entry.798446423=3&entry.728967080=5&entry.1809748378=5&entry.1608119901=4&entry.229575008=4&entry.1872716671=3&entry.994989376=4&pageHistory=0,1 | |
https://docs.google.com/forms/d/e/ |
Log uploaded on Sunday, March 23, 2025, 2:16:29 PM | |
Loaded mods: | |
Prepatcher(zetrith.prepatcher): 0Harmony(2.3.3), 0PrepatcherAPI(1.2.0), 0PrepatcherDataAssembly(1.0.0), PrepatcherImpl(1.0.0), Prestarter(1.0.0) | |
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1) | |
Fishery - Modding Library(bs.fishery): 0PrepatcherAPI(1.2.0), 1Fishery(0.6.1), System.Runtime.CompilerServices.Unsafe(av:6.0.0,fv:6.0.21.52210) | |
Core(Ludeon.RimWorld): (no assemblies) | |
Performance Fish(bs.performance): PerformanceFish(0.6.2) | |
Royalty(Ludeon.RimWorld.Royalty): (no assemblies) | |
Ideology(Ludeon.RimWorld.Ideology): (no assemblies) | |
Biotech(Ludeon.RimWorld.Biotech): (no assemblies) |
curl -s -o /dev/null -w "%{time_total}\n" -H "Pragma: no-cache" https://gnu.org |
<cffunction name="businessDaysBetween" returntype="numeric" access="public"> | |
<!--- // Your code goes here ---> | |
</cffunction> | |
<!--- Define UK Holidays for 2024 ---> | |
<cfset ukHolidays = [ | |
<!--- 2024 UK Bank Holidays ---> | |
createDate(2024, 1, 1), <!--- New Year's Day ---> | |
createDate(2024, 3, 29), <!--- Good Friday ---> | |
createDate(2024, 4, 1), <!--- Easter Monday ---> | |
createDate(2024, 5, 6), <!--- Early May Bank Holiday ---> |