Skip to content

Commit 25fde28

Browse files
committed
just push please
2 parents 22388f1 + d564cc1 commit 25fde28

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,21 @@ Beyond this point, things get even more vague.
2222
* There is also stuff in the meta space. Making sure things are portable and that they fit "nicely" into some framework, as a package, or to make sure it's easy to install. Having a good readme that actually fits into any of the various "description" fields that will inevitably surround the program if it is available for download anywhere.
2323

2424
Here are some naming conventions https://namingconvention.org/python/
25+
2526
Here is autopep8, because you don't need to know how I write code when I write it, you just need to be able to read the final result. https://pypi.org/project/autopep8/
2627

28+
<<<<<<< HEAD
2729

2830
here are some cool CSS tricks that might be handy in the future
2931

3032
https://markodenic.com/css-tips/
33+
=======
34+
Adding to that, part of what makes code "good" is that what is that purpose and implementation, what is meant to be done and how it is done is chunked and easy to digest.
35+
36+
And I think that's really difficult. C has the approach of using "headers" and "source" and they are mashed together and then something happens. And that makes sense for very small programs that consist of basically one header and one source file.
37+
38+
When things are reused from different files, function calls inevitably end up being used in other functions, which is no longer obvious from the headers.
39+
40+
Also, all things should converge in the end. No matter the format and attributes of user data you choose do stuff with, the identity of the user is the focus by which everything else should eventually collapse into a single format. In the mean time, everything is at least convertable to and savable as strings.
41+
42+
>>>>>>> d564cc13c293603b57d10688c6c444b90eb9a38d

x1_bettercss/better.css

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
body{margin:40px auto;
2+
max-width:650px;
3+
line-height:1.6;
4+
font-size:18px;
5+
color:#444;
6+
padding:0 10px
7+
}
8+
h1,h2,h3{
9+
line-height:1.2
10+
}

0 commit comments

Comments
 (0)