最新发布第2091页
Tips for a guy who wants to learn python-拾光赋

Tips for a guy who wants to learn python

Tips for a guy who wants to learn python,Okay, so to start, I already googled a lot of tips and actually started to learn. I just wanted more and what better community to ask than ...
What to do when you need a web app quickly-拾光赋

What to do when you need a web app quickly

What to do when you need a web app quickly,Recently, I needed a piece of software where you can input some numbers, validate and process them, and print some result. Since I needed...
My First Arch Installation Script-拾光赋

My First Arch Installation Script

My First Arch Installation Script,Hi Everyone. I have just released my first Linux Installation script for Arch, using Python. It has an interactive menu (and is heavily in develop...
Design Patterns in Web Development-拾光赋

Design Patterns in Web Development

Design Patterns in Web Development, Design Patterns in Web Development (3 Part Series) 1 Design Patterns in Web Development 2 Design Patterns in Web Development - #1 Command 3 Desi...
Automating Simple Things with Python is Awesome-拾光赋

Automating Simple Things with Python is Awesome

Automating Simple Things with Python is Awesome,Cover photo by Tim Easley on Unsplash. This is just a quick post about something that happened to me yesterday at work. So there I w...
Design Patterns: use or not to use-拾光赋

Design Patterns: use or not to use

Design Patterns: use or not to use,Right now I'm reading Design Patterns and Best Practices in Java by Kamalmeet Singh, Adrian Ianculescu and Lucian-Paul Torje, a very good book th...
Auto Detect Environment in Google AppEngine-拾光赋

Auto Detect Environment in Google AppEngine

Auto Detect Environment in Google AppEngine,If you were working in a product which is in production or potentially gets to production, then for sure you will be having other enviro...
Why Java interfaces aren't terrible (just strict)-拾光赋

Why Java interfaces aren’t terrible (just strict)

Why Java interfaces aren't terrible (just strict),A recent article described some problems when dealing with Java interfaces, coming from a language that allows duck typing. The bo...
Play with Java built-in testing tools-拾光赋

Play with Java built-in testing tools

Play with Java built-in testing tools,Someone may have testing experience with JavaTest Harness and SigTest . Some more ideas on it. 原文链接:Play with Java built-in testing tools
What is Quicksort-拾光赋

What is Quicksort

What is Quicksort,Quicksort is a popular and common sorting algorithm that known to be really efficient. It createn 1959, and published in 1961 by Tony Hoare (He's known for Null r...
Are you using seconds or milliseconds? Don’t lose a Mars orbiter over it!-拾光赋

Are you using seconds or milliseconds? Don’t lose a Mars orbiter over it!

Are you using seconds or milliseconds? Don’t lose a Mars orbiter over it!,If you need an object that includes time, you’re probably going to need to convert it. Unit conversion i...
What is the difference between public, protected, and private in Java?-拾光赋

What is the difference between public, protected, and private in Java?

What is the difference between public, protected, and private in Java?, Why we care When modifying Java access, the general rule is to use only the minimum level of access that is ...