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
shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//temp/log.do_configure:Check your system clock | |
shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//temp/log.do_configure.12548:Check your system clock | |
shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//automake-1.15.1/configure:Check your system clock" "$LINENO" 5 | |
grep: shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//automake-1.15.1/patches/0001-automake-Add-default-libtool_tag-to-cppasm.patch: No such file or directory | |
grep: shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//automake-1.15.1/patches/new_rt_path_for_test-driver.patch: No such file or directory | |
grep: shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//automake-1.15.1/patches/automake-replace-w-option-in-shebangs-with-modern-use-warnings.patch: No such file or directory | |
grep: shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//automake-1. |
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 com.ubook.reader.util; | |
import android.util.Base64; | |
import android.util.Log; | |
import javax.crypto.Cipher; | |
import javax.crypto.spec.IvParameterSpec; | |
import javax.crypto.spec.SecretKeySpec; | |
public class ArvoreSecurityUtil { |
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 main | |
// using asymmetric crypto/RSA keys | |
import ( | |
"crypto/rsa" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" |
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
func getDecryptedData() -> String? { | |
do { | |
if let productDirectory = product.getDownloadDirectoryPath() { | |
let directory = productDirectory | |
.appendingPathComponent("coisas-que-so-eu-sei-offline") | |
.appendingPathComponent("coisas-que-so-eu-sei") | |
.appendingPathComponent("json_files") | |
Logger.i("Obtendo arquivos do reader em: %@", directory.path) |
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
var fs = require('fs'); | |
var CryptoJS = require("crypto-js"); | |
// ruby key encoded Base64 | |
const key = CryptoJS.enc.Base64.parse("6LMmbmbL4EKvi55WJFxZHW5FOH25/RGbuD3Vx8MEYGU="); | |
// ruby iv encoded Base64 | |
const iv = CryptoJS.enc.Base64.parse("N9mT3Z5DzqghlBVBC0YsTg=="); | |
console.log("-------------------------------------------------------------------------"); |
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 Foundation | |
public final class AtomicInteger { | |
private let lock = DispatchSemaphore(value: 1) | |
private var _value: Int | |
public init(value initialValue: Int = 0) { | |
_value = initialValue | |
} |
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 org.myorg.quickstart; | |
import org.apache.flink.api.common.functions.CrossFunction; | |
import org.apache.flink.api.common.functions.FlatMapFunction; | |
import org.apache.flink.api.common.functions.GroupReduceFunction; | |
import org.apache.flink.api.java.DataSet; | |
import org.apache.flink.api.java.ExecutionEnvironment; | |
import org.apache.flink.api.java.functions.KeySelector; | |
import org.apache.flink.api.java.tuple.Tuple2; | |
import org.apache.flink.api.java.tuple.Tuple3; |
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
// Example: https://iswift.org/playground?eIfY21 | |
protocol BaseThemeProtocol { | |
func getBackgroundColor() -> String | |
func getTextColor() -> String | |
} | |
class BaseTheme: NSObject { | |
func getBackgroundColor() -> String { | |
return "Basetheme"; |
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
UIColor *color = [UIColor whiteColor]; | |
NSString *colorCode = [self hexStringFromColor:color]; |
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 ( | |
"fmt" | |
"os/exec" | |
) | |
func main() { | |
ls := exec.Command("ls") | |
wc := exec.Command("wc") | |
lsOut, _ := ls.StdoutPipe() | |
ls.Start() |