With Audio and Screen Sharing Enabled
Add the i386 architecture to the list of dpkg architectures :
sudo dpkg --add-architecture i386
| typealias YourController = ListEditorController | |
| //do not forget to rename component and module | |
| //do not forget to add module to parent component | |
| //do not forget to add HasControllerInjector to parent entity [Application, Activity, Controller] if not present | |
| @Subcomponent(modules = [ComponentModule::class]) | |
| interface RenameMeComponent : AndroidInjector<YourController> { | |
| @Subcomponent.Builder | |
| abstract class Builder : AndroidInjector.Builder<YourController>() |
| /** | |
| * Created by Saurabh(aqua) in 2017. | |
| */ | |
| public class ScrollActivity extends BaseActivity { | |
| /* view binding */ | |
| @BindView(R.id.scrollView)ScrollView scrollView; | |
| @BindView(R.id.parallax_image)ImageView parallaxImage; | |
| @BindView(R.id.tv_perhour)TextView textView; |
| node('whatever') { | |
| stage('blah') { | |
| echo currentBuild.getPreviousBuild().result | |
| } | |
| } | |
| // ref: https://support.cloudbees.com/hc/en-us/articles/217591038-How-to-Iterate-Through-the-Last-Successful-Builds-in-Pipeline-Job |
While on a branch with a couple of commits, you can edit a commit with interactive rebase. This should be used sparingly and only on branches and never on master.
$ git checkout my-branch
$ git log
| // You can use maven-publish-helper.gradle script without changes and even share it between multiple | |
| // modules. Just place the maven-publish-helper.gradle file in the root directory of your project, | |
| // then apply it at the bottom of your module's build.gradle file like this: | |
| // ...content of module's build.gradle file... | |
| apply from: '../maven-publish-helper.gradle' | |
| publishing { | |
| publications { |
| #!groovy | |
| import groovy.json.JsonOutput | |
| import groovy.json.JsonSlurper | |
| def label = "mypod-${UUID.randomUUID().toString()}" | |
| podTemplate(label: label, yaml: """ | |
| spec: | |
| containers: | |
| - name: mvn | |
| image: maven:3.3.9-jdk-8 |
| #!/bin/python | |
| import sys | |
| import re | |
| import subprocess | |
| #Format: "oldref newref branch" | |
| line = sys.stdin.read() | |
| (base, commit, ref) = line.strip().split() | |
| new_branch_push = re.match(r'[^1-9]+', base) |
| /** | |
| * Created by spandhare on 11/3/16. | |
| */ | |
| import com.malmstein.fenster.controller.FensterPlayerControllerVisibilityListener; | |
| import com.malmstein.fenster.play.FensterVideoFragment; | |
| import android.Manifest; | |
| import android.content.Intent; | |
| import android.net.Uri; |