A tab completion script that works for Bash. Relies on the BSD md5 command on Mac and md5sum on Linux, so as long as you have one of those two commands, this should work.
$ gradle [TAB]
| public class Untitled { | |
| public static void main(String[] params){ | |
| Life life = new Life(); | |
| String[][] list = life.readGame(); | |
| life.print(list); | |
| System.out.println(); | |
| for(int i = 1; i <= 5; i++){ | |
| list = life.run(list); |
| actions=true | |
| ads=true | |
| analytics=true | |
| appindexing=true | |
| appstate=true | |
| auth=true | |
| cast=true | |
| common=true | |
| drive=false | |
| dynamic=true |
| /** | |
| * The MIT License (MIT) | |
| * | |
| * Copyright (c) 2015 Circle Internet Financial | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights | |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| * copies of the Software, and to permit persons to whom the Software is |
| 0-mail.com | |
| 0815.ru | |
| 0clickemail.com | |
| 0wnd.net | |
| 0wnd.org | |
| 10minutemail.com | |
| 20minutemail.com | |
| 2prong.com | |
| 30minutemail.com | |
| 3d-painting.com |
| Apache License, Version 2.0 | |
| =========================== | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software |
| import org.junit.Test; | |
| import java.util.concurrent.TimeUnit; | |
| import rx.Observable; | |
| import rx.functions.Func3; | |
| import rx.schedulers.Schedulers; | |
| import rx.subjects.PublishSubject; | |
| /** |
| package io.jug6ernaut.fln2; | |
| import android.databinding.DataBindingUtil; | |
| import android.databinding.ViewDataBinding; | |
| import android.support.annotation.LayoutRes; | |
| import android.support.v7.widget.RecyclerView; | |
| import android.support.v7.widget.RecyclerView.ViewHolder; | |
| import android.view.View; | |
| import android.view.ViewGroup; |
| import java.util.Arrays; | |
| class NonCapturing { | |
| public static void main(String... args) { | |
| run(new Runnable() { | |
| @Override public void run() { | |
| System.out.println("Hey!"); | |
| } | |
| }); | |
| } |