Skip to content

Instantly share code, notes, and snippets.

class Deciphere {
public static String decrypt(String code) {
int keyCode = code.length() / 2;
String substring = code.substring(5, 6 + keyCode -1);
String replaced = substring.replace("@#?", " ");
String decode = new StringBuilder(replaced).reverse().toString();
return decode;
}
@dylanberry
dylanberry / ADF-Databricks-Job.json
Last active May 7, 2024 12:56
Call databricks job from Azure Datafactory and wait for the job to complete.
{
"name": "util-run-databricks-job",
"properties": {
"description": "Databricks Application ID: 2ff814a6-3304-4ab8-85cb-cd0e6f879c1d",
"activities": [
{
"name": "Execute Jobs API",
"type": "WebActivity",
"dependsOn": [
{
@choco-bot
choco-bot / Install.txt
Created May 7, 2024 12:54
voxengo-sound-delay v1.13 - Passed - Package Tests Results
2024-05-07 12:33:24,837 2780 [DEBUG] - XmlConfiguration is now operational
2024-05-07 12:33:27,884 2780 [DEBUG] - Adding new type 'CygwinService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2024-05-07 12:33:27,928 2780 [DEBUG] - Adding new type 'CygwinService' for type 'IInstallSourceRunner' from assembly 'choco'
2024-05-07 12:33:27,957 2780 [DEBUG] - Adding new type 'PythonService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2024-05-07 12:33:27,979 2780 [DEBUG] - Adding new type 'PythonService' for type 'IListSourceRunner' from assembly 'choco'
2024-05-07 12:33:28,039 2780 [DEBUG] - Adding new type 'PythonService' for type 'IInstallSourceRunner' from assembly 'choco'
2024-05-07 12:33:28,144 2780 [DEBUG] - Adding new type 'PythonService' for type 'IUninstallSourceRunner' from assembly 'choco'
2024-05-07 12:33:28,181 2780 [DEBUG] - Adding new type 'RubyGemsService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2024-05-07 12:33:28,212 2780 [DEBUG] - Adding new typ
@f-steff
f-steff / README.md
Created May 7, 2024 12:53
Renesas RX MCU code flash programming - the example Renesas didn't provide.

Test project to try the four known modes of Code Flash self Programming of the RX family.

This code is tested on the RX651 Test board, with the R5F565NEDDFP MCU,

Compiled using CC-RX v3.06.00, and utilizing r_bsp 7.42 and r_flash_rx v5.11

It is expected that this code can be used on at least other RX MCU's from Renesas.

Not all of the tested features are expected to work on all of the various RX MCU's.

Maintainers:
opna2608: furnace, furnace, furnace, furnace
aarch64-linux furnace
aarch64-darwin furnace
x86_64-darwin furnace
x86_64-linux furnace
Maintainers:
darkonion0: appflowy
x86_64-linux appflowy
@jonathanrobie
jonathanrobie / DBLMetadata.xml
Created May 7, 2024 12:53
John Mark's example
<?xml version=“1.0” standalone=“yes”?><DBLMetadata version=“2.2.1” id=“555fef9a6cb31151" revision=“12”>
<identification>
<name>CEV Revised 2006 (Global CEV)</name>
<nameLocal>CEV Revised 2006</nameLocal>
<description>English: CEV Revised 2006 (Global CEV)</description>
<descriptionLocal>English: CEV Revised 2006 (Global CEV)</descriptionLocal>
<abbreviation>CEVUS06</abbreviation>
<abbreviationLocal>CEVUS06</abbreviationLocal>
<scope>Bible with Deuterocanon</scope>
<dateCompleted>2006-12-01</dateCompleted>
@maesterfox
maesterfox / 01 - Setup Nextjs site on Ubuntu Server - Terminal commands
Last active May 7, 2024 12:54
Setup NextJS app on Digital Ocean Ubuntu server Full Terminal Commands
#Setup NextJS on Ubuntu server (Digital Ocean, EC2,...) Terminal Commands
#Recommended: An ubuntu server with at least 2 GB memory to handle npm run build
#login to server
ssh root@ip_address
#Upgrade Server - may take a few minutes
sudo apt update
sudo apt upgrade