This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| def replace(match): | |
| if match: | |
| phrase = match.group(0) | |
| symbol = match.group(1) | |
| return symbol + ' ' + phrase[-1].upper() if symbol is '.' else phrase[-1] | |
| def parse(string): | |
| string = re.sub(r'([\.\,\?\:\;])\w', replace, string) # add space between any punctuation symbol and letter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package dita.dev.myportal.utils; | |
| import org.apache.poi.hssf.usermodel.HSSFCell; | |
| import org.apache.poi.hssf.usermodel.HSSFRow; | |
| import org.apache.poi.hssf.usermodel.HSSFSheet; | |
| import org.apache.poi.hssf.usermodel.HSSFWorkbook; | |
| import org.apache.poi.poifs.filesystem.NPOIFSFileSystem; | |
| import org.apache.poi.ss.usermodel.Cell; | |
| import org.apache.poi.ss.usermodel.DataFormatter; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| git rm -r --cached . | |
| git add . | |
| git commit -am "Remove ignored files" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.os.Bundle; | |
| import android.support.v4.util.ArrayMap; | |
| import android.support.v7.app.AppCompatActivity; | |
| import android.util.Log; | |
| import android.view.View; | |
| import android.widget.AdapterView; | |
| import android.widget.ArrayAdapter; | |
| import android.widget.Spinner; | |
| public class MainActivity extends AppCompatActivity { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static class Auth { | |
| private static Auth auth; | |
| private static String baseUrl; | |
| private String message = null; | |
| public static Auth getInstance(String base) { | |
| baseUrl = base; | |
| if (auth == null) { | |
| auth = new Auth(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import io.mockk.coEvery | |
| import io.mockk.coVerify | |
| import io.mockk.mockk | |
| import kotlinx.coroutines.GlobalScope | |
| import kotlinx.coroutines.delay | |
| import kotlinx.coroutines.launch | |
| import org.junit.Test | |
| class CoroutinesTest { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import operator | |
| from functools import reduce | |
| from mongoengine import Document, Q, StringField | |
| class Person(Document): | |
| name = StringField() | |
| names = ['mike', 'John', 'JIMMY'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fun getRealm(context: Context): Realm { | |
| try { | |
| Realm.init(get()) | |
| } catch (e: Exception) { | |
| } | |
| val config = RealmConfiguration.Builder() | |
| .schemaVersion(1) | |
| .migration(Migration()) | |
| .build() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| sudo apt install libsecret-1-0 | |
| wget https://github.com/docker/docker-credential-helpers/releases/download/v0.6.3/docker-credential-secretservice-v0.6.3-amd64.tar.gz && tar -xf docker-credential-secretservice-v0.6.3-amd64.tar.gz && chmod +x docker-credential-secretservice && mv docker-credential-secretservice /usr/local/bin/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| val dialog = Dialog(context!!) | |
| // val dialog = AlertDialog(context!!) | |
| dialog.window?.setBackgroundDrawableResource(android.R.color.black) | |
| // dialog.window?.setBackgroundDrawable(ColorDrawable(Color.BLACK)) | |
| dialog.show() |
OlderNewer