Discover gists
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(def myList '(251 45)) | |
(first myList) | |
(println myList) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<user>S-1-5-21-1109390121-3075747200-1229061059-1000</user> | |
<keys> | |
<key installerType="Msi" displayName="Google Chrome Dev" displayVersion="133.0.6847.2"> | |
<RegistryView>Registry64</RegistryView> | |
<KeyPath>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{95404F26-51B3-30C1-8ECE-4A98B830061A}</KeyPath> | |
<DefaultValue /> | |
<InstallLocation><![CDATA[]]></InstallLocation> | |
<UninstallString><![CDATA[MsiExec.exe /X{95404F26-51B3-30C1-8ECE-4A98B830061A}]]></UninstallString> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { existsSync, readFileSync, statSync } from "node:fs"; | |
interface LoadEnvVarsFromFilesOptions { | |
/** | |
* Whether to overwrite existing env vars. | |
* | |
* @default false | |
*/ | |
overwrite?: boolean; | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def calculate_angle(h, m): | |
h_angle = h * 30 | |
m_angle = m * 6 | |
first_angle = 0 | |
second_angle = 0 | |
if h_angle > m_angle: | |
first_angle = (360 - h_angle) + m_angle | |
second_angle = h_angle - m_angle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import math | |
pi =math.pi | |
def v_sześcianu(a): | |
return a**2 | |
def v_postopadloscianu(a,b,c): | |
return a*b*c | |
def v_graniastoslup(pp,h): | |
return pp*h | |
def v_ostroslupa(pp,h): | |
return pp/3*h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Maintainers: | |
fabaff: python312Packages.pywerview, python311Packages.pywerview, python312Packages.pywerview, python312Packages.pywerview, python311Packages.pywerview, python311Packages.pywerview, python312Packages.pywerview, python311Packages.pywerview |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aarch64-linux python312Packages.pywerview | |
x86_64-darwin python311Packages.pywerview | |
x86_64-darwin python312Packages.pywerview | |
aarch64-linux netexec | |
aarch64-darwin netexec | |
x86_64-darwin netexec | |
x86_64-linux python312Packages.pywerview | |
x86_64-linux python311Packages.pywerview | |
aarch64-darwin python311Packages.pywerview | |
aarch64-darwin python312Packages.pywerview |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1... class Solution { | |
int floorSqrt(int n) { | |
int l = 1, h = n; | |
while(l<=h){ | |
long mid = l+(h-l)/2; | |
long val = mid*mid; | |
if(val <= (long)n){ | |
l = (int)(mid+1); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fpu.c:52:8: warning: #warning "FPU test not built; CONFIG_SCHED_WAITPID not defined" [-Wcpp] | |
fpu.c:55:8: warning: #warning "FPU test not built; Only available in the flat build (CONFIG_BUILD_FLAT)" [-Wcpp] | |
Script started on 2024-11-22 01:49:37+08:00 [COMMAND="/home/luppy/nuttx-release/run-job.sh arm-05" TERM="tmux-256color" TTY="/dev/pts/14" COLUMNS="90" LINES="19"] | |
Now running https://github.com/lupyuen/nuttx-release/blob/main/run-job.sh | |
Called by https://github.com/lupyuen/nuttx-release/blob/main/run-ci.sh | |
+ job=arm-05 | |
+ neofetch | |
.-/+oossssoo+/-. | |
`:+ssssssssssssssssss+:` | |
-+ssssssssssssssssssyyssss+- |
NewerOlder