A little relapse because of blah…

Hey there!

Ever had this feeling in your gut that things will go smoothly, especially after your vacation time?

Then during your vacation all of a sudden you have an important call to take. In most cases, this means work is on the way.

This can sound a bit scary to some people, but myself I think of it as a motivator. Why?

It allows to help me in doing the best work that I possibly can do! This means a couple of things:

1 – Get back on your schedule as you would normally, and know that your vacation is already done.
2 – Re-energize and do the work!

I first thought of the sense in which I’ll have a more relaxed time outside, then I’ll come back and work on everything else in a relaxed manner because the main parts are already done.

In turn, I’ve gotten more work! This is actually good because others try to help build out your reputation. Therefore, the opportunity of getting something done authored by somebody else will pay off ten-fold.

Everybody has their fair share of mistakes, and that’s normal!

Anyway, going back to the vacation time – why do we usually have a relapse?

This is mainly because of not being productive. By relaxing, our minds usually become very focused in the moment trying not to think about anything else. Then going back to work would be like a disaster!

To solve this problem, the best thing to do would be sticking to your daily habits like exercising in the morning. Sure, you’re on vacation, but relax sparingly.

Then finally when you’re back at work, just do the work.

Until next time,

Brian.

Finish the project earlier than your deadline?

Hey everyone!

Ever heard the expression that it’s hard to meet deadlines several times because it usually ends up being very subjective? Ever heard that it can be very complex to do?

Why do some companies fail to meet deadlines anyway?

Sometimes it is because there are bugs within the system. Other times, it can be just because of another individual, or the protagonist himself or herself. If it’s the latter, then it’s usually the lack of motivation.

If it’s the protagonist, then the best way would be to change habits that are not so useful, and rather do something else that would be more productive to the person. Here’s a simple example – eating chips, candy and watching TV at the same time will lead to poorer mental and physical health. In conjunction, sitting in the office and doing work also isn’t very good either. Maybe the pleasurable things as mentioned above relieves stress, but it will not be reduced and instead its level will increase over time. Instead if the person chooses to exercise, then the bad stuff clears out much easier, and the person will also be able to focus. The stress levels will be reduced and also work could be thought of since exercise is just a routine workout. In turn, instead of taking 2 days to solve a problem, it can be solved probably within 4 hours.

If it’s the antagonist, then the best way I’ve found to be helpful so far is to communicate earlier on. Addressing things early can help a person to think of the right way to do something, and then getting back to the protagonist latest on the next day. This also includes the first point – any systematic bugs either in the architecture or design. Code has many possibilities, but it can also lead to serious problems if something is not done as intended. Therefore, it’s not just the smarts, but it’s also the wisdom that will definitely help to save time.

This goes back to simplicity. Don’t reinvent the wheel if there’s already a solution out there. Otherwise, reading the documentation on how something is used will also give an idea of how to approach a problem.

The longevity of a project also depends on how good something has been done; in other words, will it be easy to add in features? Is the code maintainable? Is it readable? I’ll admit that sometimes it’s hard to do especially if somebody is rushing to get things done very fast. However, if it has to be and when the time comes, making sure to refactor the code for ease will do wonders to your system and also your team. If something is poorly written and/or structured, then it means the other person who is working or will work on the project will probably not want to touch it and instead do a rewrite. Therefore, considering thoughts will also help out your programming career.

So the verdict is to stay healthy, always communicate (there’s no such thing as over-communicating), and make everything simple. This will help save time, and then more possibilities will come along the way. Hopefully these principles help you as they are serving me well so far.

Until next time!

Brian.

Work during weekends?

Hey everyone,

Ever seen those people who are mainly just looking to mostly enjoy their weekends when they’re having a couple of days off?

At the same time, they are just pretty much regular, normal people who are either studying or working-class citizens. Then as Monday comes in, they go back in and do work. There are good days and bad days, but everybody tries to make them good. In a team effort, it’s pretty good in order to get things done in a timely manner.

How about weekends? What are the circumstances, advantages, and/or special cases, and why should or shouldn’t you work during weekends?

The advantages of working during weekends is that they can be compensated for your paid time off if there are any deductions and if the company you work for provides them! Also, working individually means less distractions for a single person. For a family person it is a little bit different, but nonetheless they can make it work. Anyhow, where am I getting at here?

Simple! The work gets done faster while a person does not need to deduct his or her PTO hours. This especially can go well if the individual in question wants to compensate for certain days off because of some event.

The disadvantages are that a person can do only so much in which some things need a team effort where it is almost impossible for an individual to do the work. Unless it is the person’s own individual project, then saying something is impossible will almost always be an excuse. The person might also grow tired of the project because there’s more stress to the person’s own body. Therefore, doing this all the time is not very healthy. Plus if the person is coding, then the project might become worse off as it grows since it won’t be cared for or maintained too greatly.

So how should we come with a compromise?

As any programmer will work with logic, it should also be applied to life principles. In this case, it means to always plan ahead and think about what you want as an individual. A perfect example: why I chose to work this weekend is so that I will be able to compensate for 2 days of vacation time during the Thanksgiving weekend, which means that I am doing what I understand could be done in a timely manner work-related, and also what cannot be done. At the same time, these events can be recorded as I get back in the office to discuss them along with a team member, and that as anything comes up then I know that it will be resolved. Also because the project is due by the beginning of December, the weekends helps to get the project out sooner than usual.

Having said that, what is the verdict?

1 – Work where you think it makes the most sense.
2 – Know your limits.
3 – Stay healthy and well to be at the best productive level.
4 – Communicate beforehand with your boss if you decide to work during the weekend just like any other work day.

Until next time,

Brian.

Replacing ViewPagers with RecyclerViews?

Hello again!

Ever used ViewPagers where users are able to swipe through your app kind of like how users swipe through Tinder profiles? Yes, those kinds that fill up the full screen.

But okay, with Tinder, the data already on screen can be thrown away (if it’s something cheap enough like text) then cached somewhere in its own database system since the data will not be available at the same instance the user is using the application.

However, what about caching all of those profile pictures? Also, what if one of those profile pictures change?

Sure, a developer can just do return PositionNone; as he or she overrides GetItemOffset(int position) and then do a NotifyDataSetChanged(); against the ViewPagerAdapter. Let’s say for our purposes, we want to do something similar for our application. At the same time, let’s multiply the limited amount of profile pictures by 1000. That phone’s or tablet’s RAM cannot handle that all at once for sure!

And then to handle that kind of situation requires quite some complex logic by keeping track of the view’s position possibly by using a DataSetObserver that has to be registered. The next developer who comes on the project wouldn’t understand it right away.

There’s a better way!

Because the Android framework gets updated after each API update, there’s now the SnapHelper class along with its subclasses PagerSnapHelper and LinearSnapHelper. These classes have been around a little over a year ago, so they are sure to be quite stable. The most recent Google Play app even utilizes SnapHelper. Here, we will be focusing on the PagerSnapHelper class.

To use it, we’ll first have to instantiate our RecyclerView just as usual with our RecyclerView.Adapter and our LinearLayoutManager set horizontally. Next, it will be good to subclass the PagerSnapHelper class so that we will be able to keep track of the position as we will want. Then, we will just need to override the FindTargetSnapPosition(RecyclerView.LayoutManager layoutManager, int velocityX, int velocityY) so that as the RecyclerView scrolls to the viewable position, the essential data to be displayed at that time will be bound there instead of OnBindViewHolder(RecyclerView.ViewHolder holder, int position) by loading our variable there. Why we’re doing this is because as we snap along to the other child views, the RecyclerView will still try to bind the next 2 views ahead or behind the current position as it predicts those views are upon interaction.

With that said, the code will look like this:

class MySnapHelper : PagerSnapHelper
{
    // C# action that will take an integer as a parameter
    readonly Action positionTracker;
    public MySnapHelper(Action tracker)
    {
        positionTracker = tracker;
    }

    public override int FindTargetSnapPosition(RecyclerView.LayoutManager layoutManager, int velocityX, int velocityY)
    {
        var snapTracker = base.FindTargetSnapPosition(layoutManager, velocityX, velocityY);
        positionTracker.Invoke(snapTracker);
        return snapTracker;
    }
}

Looking good! Now in our OnCreate(Bundle savedInstanceState) method we can do this:

...
List urlList = ... ; // Data that exists from a source

var rv = new RecyclerView(this); // arbitrary RecyclerView
var lm = new LinearLayoutManager(this, LinearLayoutManager.Horizontal, false);
// adapter code omitted ...
rv.SetLayoutManager(lm);

// Where the data binding will happen
var sh = new MySnapHelper(viewingPosition => {
    // Our data at position
    var url = urlList[viewingPosition];

    // Here's our view:
    var viewAtPosition = lm.FindViewForPosition(viewingPosition);

    // Or if you prefer to get the ViewHolder
    var viewHolderAtPosition = rv.FindViewHolderForAdapterPosition(viewingPosition); // don't forget to make the cast to your custom ViewHolder! :)
    // Do awesome stuff with url along with the View or ViewHolder bound here!!!
});
...

And that’s all there is to it! This is much cleaner and a lot easier for other developers to understand! 🙂

Until next time,

Brian.

Working efficiently (Part 2: by your own)

Hey everyone,

Ever come across a problem that you can’t solve over the top of your head?

Remember that one time where you’d think it would take about 2 weeks to get something done, where in reality it only took you one week? Can you make it even less?

Communication was part of the goals to help you solve the problem. That can be found here if you’d like to catch up.

This week, we will be talking about our sole tasks in our own proficiency. An example is possibly a developer probably hasn’t touched something in the past. What would the junior-most person do? They would constantly ask the more senior developers about something. This is fine in the beginning, but fundamentals should stick after a couple of months!

However, let’s talk about what the people with more experience will do. The most possible first step is that they’ll either go through the documentation, or pop-up a learn by example procedure.

They will then build up a prototype to see if it’ll fit the needs of the project. Once the code is produced and just works as is, and depending on the complexity, they will either leave it as is, or they will try and simplify the code as much as possible.

Simplification is due to having the next person understand what the code does in a general sense, not getting through the nitty-gritty details of what something does.

Otherwise, how about if a new feature has to be implemented? First step again would be communication, in this case between the project manager and designer or architect. Once an agreement has been made, the developer will have to look at the whole picture of how the feature should work before implementation.

Once the developer has already mapped out the workings of the implementation, then he or she will find the simplest way to solve the problem. This means less code = less bugs, and a more fine-tuned product.

After implementation, the developer will make sanity tests to their code. There are some brilliant exceptions to this rule, but the good developers always will be their own adversaries and find out what’s broken. If something breaks, rinse and repeat.

Once the developer has finalized everything, he or she will now make a pull request to the lead. And most likely following these steps, the code will be merged in.

And that’s it! 🙂 Even if the developer is sick, then he or she will most likely still be able to produce that feature following these steps.

Until next time!

Brian.