Install Termux Android App from Google PlayStore or APK From F-Droid. Do Check out Termux GitHub
After installation
Install Termux Android App from Google PlayStore or APK From F-Droid. Do Check out Termux GitHub
After installation
# Import python packages sqlparse snowflake-snowpark-python streamlit | |
# For this streamlit to work, I am assuming you have | |
# a database called JSON_GENIE_DB, and stage called JSON_GENIE_DB.PUBLIC.SAMPLES | |
# and a json file format called JSON_GENIE_DB.PUBLIC.JSON_GENIE_FILE_FORMAT. | |
# CREATE OR REPLACE FILE FORMAT JSON_GENIE_FILE_FORMAT | |
# TYPE = JSON | |
# NULL_IF = () | |
#; | |
# The only thing that you need is to upload some sample files into the JSON_GENIE_DB.PUBLIC.SAMPLES stage. |
(defun decompile (lines) | |
(let ((lines (mapcar (lambda (x) | |
(read-from-string (format nil "(~a)" x))) | |
lines))) | |
(let ((expr `(when (= z 0) | |
(return-from do-run choices))) | |
(inp 0)) | |
(loop for line in (reverse lines) do | |
(destructuring-bind (cmd a &optional b) line | |
(let ((decl `(declare (type fixnum ,a)))) |
package com.trendyol.redisdemo.configuration; | |
import lombok.RequiredArgsConstructor; | |
import org.springframework.boot.autoconfigure.data.redis.RedisProperties; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
import org.springframework.data.redis.connection.RedisPassword; | |
import org.springframework.data.redis.connection.RedisSentinelConfiguration; | |
import org.springframework.data.redis.connection.lettuce.LettuceClientConfiguration; | |
import org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory; |
CALL { | |
USE fabric.persons | |
MATCH (person:Person {id: $Person})-[:KNOWS]-(friend) | |
RETURN collect(friend.id) AS personIds | |
} | |
WITH *, [g in fabric.graphIds() WHERE g <> 0] AS gids | |
UNWIND gids AS gid | |
CALL { | |
USE fabric.graph(gid) |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-shade-plugin</artifactId> | |
<executions> | |
<execution> | |
<phase>package</phase> | |
<goals> | |
<goal>shade</goal> | |
</goals> | |
<configuration> |
# Example YAML configuration for the sidecar pattern. | |
# It defines a main application container which writes | |
# the current date to a log file every five seconds. | |
# The sidecar container is nginx serving that log file. | |
# (In practice, your sidecar is likely to be a log collection | |
# container that uploads to external storage.) | |
# To run: |
/* | |
Copyright 2017 Hidetake Iwata | |
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 |