-
Updated
Aug 20, 2020
beginner
Here are 1,428 public repositories matching this topic...
-
Updated
Sep 7, 2020
-
Updated
Feb 6, 2020
-
Updated
Aug 5, 2020 - Go
-
Updated
Jul 30, 2020
-
Updated
Aug 6, 2020 - JavaScript
-
Updated
Dec 11, 2019 - HTML
-
Updated
Jul 25, 2020 - Python
-
Updated
Sep 4, 2020 - Python
-
Updated
May 21, 2020
-
Updated
Aug 24, 2020
With the recent release of Phoenix 1.5
Now is a great time to go through this example/tutorial with a fresh pair of eyes and completely update it (including) links to code snapshots. We can also extend it to include auth_plug #25
- Checkout
master - Create new branch e.g: `update-t
Table of Contents?
-
Updated
Sep 5, 2020 - Ruby
-
Updated
Sep 4, 2020 - JavaScript
-
Updated
Aug 25, 2020 - JavaScript
-
Updated
Apr 9, 2020 - Python
-
Updated
Mar 29, 2020 - CSS
Add demo
Github-pages ?
codepen.io
codesandbox.io
👽 What is required?
The algorithm is here : check-binary-tree-subtree-another-binary-tree
- Follow the ESLint rules strictly
- Follow the filename and folder structure strictly
- Since the Contribution Guide is not ready yet, go
-
Updated
Sep 16, 2019
-
Updated
Aug 12, 2020 - JavaScript
-
Updated
Jan 6, 2020 - Jupyter Notebook
-
Updated
Jan 27, 2020 - JavaScript
Improve this page
Add a description, image, and links to the beginner topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the beginner topic, visit your repo's landing page and select "manage topics."


I wont to convert a unixtimestamp to localtime in circuit python.
This is the simple code:
unix_correction = 946684800 # correct to 01-01-2000
timezone = 7200
t=1598887049
def convertUnixTime(t,timezone):
dummy=time.localtime(t-unix_correction+timezone)
return "%4d-%02d-%02d %02d:%02d" % (dummy[0],dummy[1],dummy[2],dummy[3],dummy[4])
Running it I get the error message:
"time