keepassEnv.sh
is linux-compatible (also git bash for windows works)keepassEnv.bat
is windows-compatible (could be improved)keepassCheckout.sh
is linux-compatible and allow to read multiple files in one shoot
each script may be self-documented
// from https://github.com/boly38/botEnSky/issues/7 | |
// doc : https://docs.bsky.app/docs/tutorials/creating-a-post#images-embeds | |
import axios from "axios"; | |
import {BskyAgent} from '@atproto/api' | |
const identifier = process.env.BLUESKY_EMAIL; | |
const password = process.env.BLUESKY_PASSWORD; | |
const service = "https://api.bsky.social"; | |
const agent = new BskyAgent({service}) | |
await agent.login({identifier, password}); |
// from : https://github.com/boly38/botEnSky/issues/15 | |
const logtail_api_token = process.env.LOGTAIL_API_TOKEN; | |
// Source NAME - get it from source config UI : "Basic" > "Source ID" - it's a name not an int | |
const logtail_source_name = process.env.LOGTAIL_SOURCE_NAME; | |
// Source ID - get it from source url, or from results of get sources api - it's an int | |
const logtail_source_id = process.env.LOGTAIL_SOURCE_ID; | |
// Import Axios |
// from : https://github.com/boly38/botEnSky/issues/1 | |
import {BskyAgent} from '@atproto/api' | |
const identifier = process.env.BLUESKY_EMAIL; | |
const password = process.env.BLUESKY_PASSWORD; | |
const service = "https://api.bsky.social"; | |
const agent = new BskyAgent({service}) | |
await agent.login({identifier, password}); | |
const text = "Hey ! Ceci est un Post de PoC (fichier js de 8 lignes) & sera le seul test sur ce compte #bluesky #api #bot https://docs.bsky.app/docs/get-started"; | |
await agent.post({text, createdAt: new Date().toISOString()}).then(console.log).catch(console.log) |
import * as mineflayer from "mineflayer"; | |
const username = process.env.BOT_USERNAME || 'SAMPLE[bot]'; | |
const host = "127.0.0.1"; | |
const port = process.env.MINECRAFT_SERVER_PORT || 25565; // /publish true adventure 25565 | |
console.log(`chicken bot ${host}:${port}`) | |
const bot = mineflayer.createBot({host, port, username}); | |
// Log errors and kick reasons: | |
bot.on('kicked', console.log) |
import mongoose from 'mongoose'; | |
const { Schema } = mongoose; | |
const Listing = new Schema({ | |
"listing_id": { type: Number, index: true, unique: true }, | |
"title": String, | |
"expireAt": { type: Date, expires: 10 } // <========== TTL index here | |
}); | |
export { Listing }; |
keepassEnv.sh
is linux-compatible (also git bash for windows works)keepassEnv.bat
is windows-compatible (could be improved)keepassCheckout.sh
is linux-compatible and allow to read multiple files in one shooteach script may be self-documented
#!/bin/bash | |
# | |
# This Gist is under MIT License | |
# | |
# Copyright 2018 Orange - Brice Vandeputte | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
# | |
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
# |
package com.github.gist.it; | |
import java.net.InetSocketAddress; | |
import java.net.Socket; | |
public class NetUtils { | |
/** | |
* check if a given server is listening on a given port in the limit of timeoutMs | |
* @param serverHost server hostname (or ip) |
{ | |
"@context": "http://schema.org", | |
"@graph": [ | |
{ | |
"@type": "Article", | |
"@id": "/articles/foobar", | |
"url" : "https:\/\/exemple.com/article?id=1234", | |
"author" :{"@type" : "Person","name" : "Didier"}, | |
"image" : "https:\/\/exemple.com/article.jpg", | |
"mainEntityOfPage" : "https:\/\/exemple.com", |
<?xml version="1.0"?> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | |
<head><title>json slash try</title></head> | |
<body> | |
I am a sample html body | |
with embedded ld+json (between lines X and X')<br/> | |