Skip to content

Instantly share code, notes, and snippets.

View carlosmuvi's full-sized avatar
🏠
Working from home

Carlos M. carlosmuvi

🏠
Working from home
View GitHub Profile
import sys
import fileinput
import re
inputVersion = sys.argv[1]
print inputVersion
pattern = re.compile("\d*.\d*.\d*.\d*")
versionRegex = r'\s*const val versionNumber = "\d*\.\d*\.\d*\.\d*"'
versionPattern = re.compile(versionRegex, re.IGNORECASE)
@carlosmuvi
carlosmuvi / test.pcd
Created December 17, 2018 15:10
test.pcd
This file has been truncated, but you can view the full file.
VERSION 0.7
FIELDS x y z rgb
SIZE 4 4 4 4
TYPE F F F F
COUNT 1 1 1 1
WIDTH 1
HEIGHT 25791
VIEWPOINT 0 0 0 1 0 0 0
POINTS 25791
class MyAwesomeApplication : Application() {
@Inject lateinit var appInitializers: AppInitializers
override fun onCreate() {
// ...
appInitializers.init(this)
// ...
}
}
public int maxProfit(int[] a) {
if (a.length <= 2) {
return 0;
}
int currentMin = a[0];
int currentMaxProfit = 0;
for (int i = 1; i < a.length; i++) {
if (a[i] < currentMin) {
@carlosmuvi
carlosmuvi / ToolbarActivity.java
Created May 4, 2016 16:11 — forked from ffgiraldez/ToolbarActivity.java
Disable toolbar scroll flag when content it's not enough to fill the screen
public class ToolbarActivity extends AppCompatActivity {
// Set the flags that fit your needs
private static final int ENABLED_SCROLL_BEHAVIOR = AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS | AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL;
private static final int DISABLED_SCROLL_BEHAVIOR = 0;
private static final int SCROLL_DOWN = 1;
//Injected via ButterKnife (http://jakewharton.github.io/butterknife)
@InjectView(R.id.toolbar)
Toolbar toolbar;
@InjectView(R.id.recyclerview)
@carlosmuvi
carlosmuvi / app.js
Last active August 29, 2015 14:16 — forked from jgoux/app.js
angular.module('myApp', ['ionic', 'myApp.services', 'myApp.controllers'])
.run(function(DB) {
DB.init();
});
@carlosmuvi
carlosmuvi / GeocoderDataSource.java
Created December 11, 2014 14:47
bolts task example
package carlos.munoz.sports.domain;
import android.content.Context;
import android.location.Address;
import android.location.Geocoder;
import java.io.IOException;
import java.util.List;
import java.util.Locale;
@carlosmuvi
carlosmuvi / Utils.java
Created December 9, 2014 19:31
prueba
/**
* Transforms circle coordinates into bounds for camera movement
*
* @param center
* @param latDistanceInMeters
* @param lngDistanceInMeters
* @return
*/
public static LatLngBounds boundsWithCenterAndLatLngDistance(LatLng center,
float latDistanceInMeters, float lngDistanceInMeters) {