Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.53 KB | None | 0 0
  1. int bookReadCompletionPercentage = getUsersReadPercentage();
  2. int bookIdForCurrentBook = getBookIdForCurrentBookUserIsReading();
  3. int fourHourWorkWeekBookId = getBookIdForBookWithTitle("Four Hour Work Week");
  4. if (bookReadCompletionPercentage <= 33% &&
  5.     bookIdForCurrentBook == fourHourWorkWeekBookId) {
  6.     String userMobileNumber = getUsersPhoneNumber();
  7.     String pushNotificationText = "The three things you can outsource today are waiting in Chapter 4";
  8.     sendPushNotification(userMobileNumber, pushNotificationText);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement