Coder Social home page Coder Social logo

charlax / professional-programming Goto Github PK

View Code? Open in Web Editor NEW
46.0K 984.0 3.7K 4.74 MB

A collection of learning resources for curious software engineers

License: MIT License

Python 72.30% HTML 27.70%
read-articles programmer professional scalability concepts documentation lessons-learned engineer programming-language learning

professional-programming's People

Contributors

0xflotus avatar amead24 avatar bosley avatar byronluk avatar c0demercenary avatar charlax avatar cmdcjones avatar cnielly avatar eithermonad avatar emreler avatar enzoportela avatar glyphack avatar guiambros avatar jakeconnors376w avatar kallielev avatar komali2 avatar kumarbhrgv avatar laithshadeed avatar lancifollia avatar lonerifle avatar m4gie avatar mariuszmichalowski avatar nelup20 avatar njoxpy avatar prasaadk avatar rvazquezglez avatar tathyagarg avatar vibioh avatar willisplummer avatar yifeiwu avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

professional-programming's Issues

New Additions Suggestion

Great list, and it is really cool to see many amazing reads.

I know the list is opinionated, but still would like to add a couple entries for your consideration:

And some useful additions to the principles section by Dan North:

python tkinter 累加累減程式

def add():
for i in range(1,101):
sum+=i
result1.set('累加結果為:'+sum)
def sub():
for i in range(100,0,-1):
sum-=i
result1.set('累減結果為:'+sum)
import tkinter
result1=tkinter.StringVar()
win=tkinter.Tk()
win.title('累加累減程式')
win.geometry('500x500')
label=tkinter.Label(win,text='累加累減程式',fg='red')
label.pack()
frame1=tkinter.Frame(win)
frame1.pack()
button1=tkinter.Button(frame1,text='+',command=add)
button1.grid(row=0,column=0)
button2=tkinter.Button(frame1,text='-',command=sub)
button2.grid(row=0,column=1)
result=tkinter.Label(win,textvariable=result1,fg='red')
result.pack()
win.mainloop()

結果發生錯誤:
Traceback (most recent call last):

File "", line 1, in
runfile('C:/Users/user/Desktop/加減程式.py', wdir='C:/Users/user/Desktop')

File "C:\Users\user\Anaconda3\envs\py35\lib\site-packages\spyder\utils\site\sitecustomize.py", line 705, in runfile
execfile(filename, namespace)

File "C:\Users\user\Anaconda3\envs\py35\lib\site-packages\spyder\utils\site\sitecustomize.py", line 102, in execfile
exec(compile(f.read(), filename, 'exec'), namespace)

File "C:/Users/user/Desktop/加減程式.py", line 10, in
result1=tkinter.StringVar()

File "C:\Users\user\Anaconda3\envs\py35\lib\tkinter_init_.py", line 334, in init
Variable.init(self, master, value, name)

File "C:\Users\user\Anaconda3\envs\py35\lib\tkinter_init_.py", line 233, in init
self._root = master._root()

AttributeError: 'NoneType' object has no attribute '_root'

New Additions: Blockchain Learning Resources

I have noticed that there are no resources available for learning Blockchain within this repository. To address this, I suggest adding a repository link dedicated to learning Blockchain. This will serve as a valuable resource for team members and newcomers who wish to familiarize themselves with Blockchain technology.

Question:
In which section of this repository should I add?

Back To Top

Please add a back to top link at the end of each section

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.