This file contains hidden or 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
| .ml-0{margin-left:0rem}.mr-0{margin-right:0rem}.mt-0{margin-top:0rem}.mb-0{margin-bottom:0rem}.mx-0{margin-left:0rem;margin-right:0rem}.my-0{margin-top:0rem;margin-bottom:0rem}.m-0{margin:0rem}.ml-1{margin-left:.5rem}.mr-1{margin-right:.5rem}.mt-1{margin-top:.5rem}.mb-1{margin-bottom:.5rem}.mx-1{margin-left:.5rem;margin-right:.5rem}.my-1{margin-top:.5rem;margin-bottom:.5rem}.m-1{margin:.5rem}.ml-2{margin-left:1rem}.mr-2{margin-right:1rem}.mt-2{margin-top:1rem}.mb-2{margin-bottom:1rem}.mx-2{margin-left:1rem;margin-right:1rem}.my-2{margin-top:1rem;margin-bottom:1rem}.m-2{margin:1rem}.ml-3{margin-left:1.5rem}.mr-3{margin-right:1.5rem}.mt-3{margin-top:1.5rem}.mb-3{margin-bottom:1.5rem}.mx-3{margin-left:1.5rem;margin-right:1.5rem}.my-3{margin-top:1.5rem;margin-bottom:1.5rem}.m-3{margin:1.5rem}.ml-4{margin-left:2rem}.mr-4{margin-right:2rem}.mt-4{margin-top:2rem}.mb-4{margin-bottom:2rem}.mx-4{margin-left:2rem;margin-right:2rem}.my-4{margin-top:2rem;margin-bottom:2rem}.m-4{margin:2rem}.ml-5{margin-left:2.5rem}.mr-5{m |
This file contains hidden or 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
| fn main() { | |
| #![allow(unused_variables)] | |
| #[derive(Debug)] | |
| enum Message { | |
| Quit, | |
| Write(String), | |
| } | |
| impl Message { |
This file contains hidden or 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
| fn main() { | |
| #![allow(unused_variables)] | |
| #[derive(Debug)] | |
| enum Message { | |
| Quit, | |
| Write(String), | |
| } | |
| impl Message { |
This file contains hidden or 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
| length = float(input("Insert length of a segment: ")) | |
| acc = int(input("Insert accuracy: ")) | |
| smallest = float("0." + "0" * acc + "1") | |
| a = length | |
| b = smallest | |
| while round(a / b, acc) != round((a + b) / a, acc): | |
| a -= smallest |
This file contains hidden or 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
| file = open("liczby.txt") | |
| liczby = [int(i) for i in file.readlines()] | |
| czynniki = [[]] | |
| def pierwsza(liczba): | |
| counts = 0 | |
| for i in range(1, liczba): | |
| if (liczba % i == 0): | |
| counts += 1 | |
| if (counts > 3): |
This file contains hidden or 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 | |
| file = open("okregi.txt") | |
| okregi = file.readlines() | |
| stats = [""] | |
| q = [] | |
| for line in okregi: |
This file contains hidden or 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
| // Color Terminal Output Library | |
| // MIT Licensed Library | |
| // There are 6 colors: | |
| // | |
| // blue | |
| // green | |
| // cyan | |
| // red |
This file contains hidden or 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
| <bpy> | |
| <Theme> | |
| <user_interface> | |
| <ThemeUserInterface | |
| menu_shadow_fac="0.269286" | |
| menu_shadow_width="9" | |
| icon_alpha="1" | |
| icon_saturation="0.5" | |
| widget_emboss="#00000005" | |
| editor_outline="#191919" |
This is a theme override for Zed the IDE. This theme is a much darker version of the classic One Dark theme that is installed by default.
- Press ⌘ + , to open Settings
- Paste just the portion of the
settings.jsonwithout outer opening and closing brackets - Remove duplicate fields if necessary
- Enjoy 🎉