Product : https://symless.com/synergy
Source code : https://github.com/symless/synergy-core
Windows builds : https://www.brahma.world/synergy-stable-builds/
Centos:
sudo yum install synergy
| // ==UserScript== | |
| // @name Export All DuckDuckGo AI Chats | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2.1 | |
| // @description Adds a minimal export button with auto-daily export when new chats are detected | |
| // @author manuc66 | |
| // @match *://duckduckgo.com/* | |
| // @grant none | |
| // ==/UserScript== |
| using System; | |
| using System.Collections.Generic; | |
| using System.Data; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| using Newtonsoft.Json; | |
| using SQLite; |
| dsfdsf |
| // ==UserScript== | |
| // @name Jira key & summary to Clipboard for commit log | |
| // @namespace sremy | |
| // @version 2.0.1 | |
| // @description Quick copy of task key and summary from JIRA to clipboard (for commit) | |
| // @author Sébastien REMY, Emmanuel Counasse | |
| // @match https://jira.atlassian.com/browse/* | |
| // @match https://jira.*/browse/* | |
| // @require https://cdn.jsdelivr.net/npm/clipboard@2/dist/clipboard.min.js | |
| // @require https://cdn.jsdelivr.net/npm/[email protected]/notify.min.js |
| set -v | |
| # if [ `git symbolic-ref --short HEAD` = "develop" ]; then | |
| if [ -f "./sonar-project.properties" ]; then | |
| wget -nc https://sonarsource.bintray.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-%sonar_version%-linux.zip -P /tmp/ | |
| if [ ! -d /tmp/sonar-scanner-%sonar_version%-linux/ ]; then | |
| unzip /tmp/sonar-scanner-cli-%sonar_version%-linux.zip -d /tmp/ | |
| fi | |
| BRANCH="%teamcity.build.branch%" | |
| SONAR_PR="" | |
| if [[ $BRANCH == "pull-requests"* ]] ; |
| ((pi|π)(\s+((to|first)\s+\d+\s+((decimal|digit)s?)?))?)|(\d+\s+(decimal|digit)s?)?\s+(of\s+(pi|π)) |
Product : https://symless.com/synergy
Source code : https://github.com/symless/synergy-core
Windows builds : https://www.brahma.world/synergy-stable-builds/
Centos:
sudo yum install synergy| using Newtonsoft.Json; | |
| using NUnit.Framework; | |
| namespace JsonSubTypes.Tests | |
| { | |
| public class TwentyNine | |
| { | |
| [Test] | |
| public void TestIt() | |
| { |
| const fs = require("fs"); | |
| var a = JSON.parse(fs.readFileSync('p1.json', "utf8")); | |
| var b = JSON.parse(fs.readFileSync('p2.json', "utf8")); | |
| var dst = {}; | |
| function merge(destination, source, key) { | |
| if (key === undefined) { | |
| Object.keys(source).forEach(k => merge(destination, source, k)); |
| docker run --rm dockcross/windows-x64 > ./dockcross-windows-x64 | |
| chmod +x dockcross-windows-x64 | |
| ./dockcross-windows-x64 bash -c "./configure --disable-drm --disable-randr --disable-vidmode --enable-wingdi --disable-geoclue --disable-gui --disable-ubuntu --host=x86_64" | |
| ./dockcross-windows-x64 bash -c "make" |