git pull
git add .
git commit -m "clean push"
git push
| package com.luv2code.springdemo; | |
| import java.util.logging.ConsoleHandler; | |
| import java.util.logging.Level; | |
| import java.util.logging.Logger; | |
| import java.util.logging.SimpleFormatter; | |
| import org.springframework.context.annotation.AnnotationConfigApplicationContext; | |
| public class MyLoggerConfig { |
| package com.luv2code.springdemo; | |
| import java.util.logging.ConsoleHandler; | |
| import java.util.logging.Level; | |
| import java.util.logging.Logger; | |
| import java.util.logging.SimpleFormatter; | |
| import javax.annotation.PostConstruct; | |
| import org.springframework.beans.factory.annotation.Value; |
| package com.luv2code.springdemo.mvc; | |
| import java.util.LinkedHashMap; | |
| public class Student { | |
| private String firstName; | |
| private String lastName; | |
| private String favoriteLanguage; |
| package com.luv2code.springdemo.mvc.validation; | |
| import java.lang.annotation.ElementType; | |
| import java.lang.annotation.Retention; | |
| import java.lang.annotation.RetentionPolicy; | |
| import java.lang.annotation.Target; | |
| import javax.validation.Constraint; | |
| import javax.validation.Payload; |
this essay has been updated on my personal site, together with a followup on how to get started
If there's a golden rule, it's this one, so I put it first. All the other rules are more or less elaborations of this rule #1.
You already know that you will never be done learning. But most people "learn in private", and lurk. They consume content without creating any themselves. Again, that's fine, but we're here to talk about being in the top quintile. What you do here is to have a habit of creating learning exhaust. Write blogs and tutorials and cheatsheets. Speak at meetups and conferences. Ask and answer things on Stackoverflow or Reddit. (Avoid the walled gardens like Slack and Discourse, they're not public). Make Youtube videos or Twitch streams. Start a newsletter. Draw cartoons (people loooove cartoons!). Whatever your thing is, make the thing you wish you had found when you were learni
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
| Serial Keys: | |
| FU512-2DG1H-M85QZ-U7Z5T-PY8ZD | |
| CU3MA-2LG1N-48EGQ-9GNGZ-QG0UD | |
| GV7N2-DQZ00-4897Y-27ZNX-NV0TD | |
| YZ718-4REEQ-08DHQ-JNYQC-ZQRD0 | |
| GZ3N0-6CX0L-H80UP-FPM59-NKAD4 | |
| YY31H-6EYEJ-480VZ-VXXZC-QF2E0 | |
| ZG51K-25FE1-H81ZP-95XGT-WV2C0 | |
| VG30H-2AX11-H88FQ-CQXGZ-M6AY4 |
| i386 : iOS Simulator 32-bit | |
| x86_64 : iOS Simulator 64-bit | |
| iPhone1,1 : iPhone 1st Gen | |
| iPhone1,2 : iPhone 3G 2nd Gen | |
| iPhone2,1 : iPhone 3GS 3rd Gen | |
| iPhone3,1 : iPhone 4 | |
| iPhone3,2 : iPhone 4 (GSM) Rev A | |
| iPhone3,3 : iPhone 4 (CDMA) | |
| iPhone4,1 : iPhone 4s |
| import { createStore, actionCreator } from "./redux-middleware"; | |
| function reducer(state = {}, { type, payload }) { | |
| switch (type) { | |
| case "init": | |
| return { | |
| ...state, | |
| count: payload.count | |
| }; | |
| case "inc": |