-
Hi!
As you said you're doing the "Git and GitHub for Poets" series to encourage people to actively partecipate to the open source community. There is however one very important thing you haven't talk…
-
首先取讀每首詩的句子長度
比如取讀《靜夜思》
```
#python
>>>poet = ['床前明月光,疑是地上霜。',
'舉頭望山月,低頭思故鄉。']
>>>l = [len(p) for p in poet]
>>>l
[12,12]
```
然後再用numpy的std來分析句子和句子長度的標準差
```
>>>import numpy as n…
-
If it's not too much trouble, it would be handy to be able to hide the performer skills (singer, percussionist, poet, etc) from the tooltip and/or the dwarf details dock. Related - be able to hide con…
-
As an example, one should be able to determine the number of poems published in the New Monthly Magazine, Blackwood’s Magazine, and Bentley’s Miscellany over the years 1840-1845 by Scottish male poets…
-
It would be helpful to have something in the console that listed the
various commands available. e.g.:
```
POETS> /?
task /show : shows the tasks loaded
task /link = [id] : link…
-
For those of us migrating over from Rye, one of its nice features is the built-in task runner using `rye run` and `[tool.rye.scripts]`. For example:
```
[tool.rye.scripts]
hello = "echo Hello from …
my1e5 updated
2 weeks ago
-
Homebrew will now take care of getting the necessary resource blocks if you supply it the initial download URL for a package, so this project isn't really that important.
-
-
Thanks for the lovely resource!
I was thinking about "I'am a teacher"/"I'm a math teacher", and "I'am a Pythonista". Would that be too much?
Could we discuss profiles on issues and eventually PR t…
-
I learn tensorflow from: https://codelabs.developers.google.com/codelabs/tensorflow-for-poets-2-tflite/#0
In step 2, we install tensorflow version 1.7, but in step 3 we want to run "tflite_convert"…