How to use:
./wordle.sh
Or try the unlimit mode:
| # | |
| # Extract a JSON value in an object or array: | |
| # | |
| # name = decode_json_string(get_json_value(json, "author.name")) | |
| # date = decode_json_string(get_json_value(json, "events.0.date")) | |
| # | |
| # Or an entire object: | |
| # | |
| # get_json_value(json, "dependencies", deps) | |
| # |
| # - Q* (Q-Star) | |
| # /\__/\ - q.py | |
| # ( o.o ) - v0.0.1 | |
| # >^< - by @rUv | |
| # 01110010 01110101 01110110 | |
| # This is a proof of concept implementation of the Q* (AGI) leak from OpenAi | |
| # This Python code defines a sophisticated Q-learning agent for reinforcement learning. | |
| # It includes dynamic exploration, learning from experiences, and checks for convergence. | |
| # The agent's capabilities are refined iteratively to optimize its decision-making strategy in a given environment. |
| // | |
| // ContentView.swift | |
| // MadeForYouCard | |
| // | |
| // Created by AppleDesignDev on 1/24/22. | |
| // | |
| import SwiftUI | |
| struct ContentView: View { |
|
You'll probably be working with a single smartcard, so you'll want only one primary key ( |
| #!/usr/bin/env bash | |
| #################################################################################### | |
| # Slack Bash console script for sending messages. | |
| #################################################################################### | |
| # Installation | |
| # $ curl -s https://gist.githubusercontent.com/andkirby/67a774513215d7ba06384186dd441d9e/raw --output /usr/bin/slack | |
| # $ chmod +x /usr/bin/slack | |
| #################################################################################### | |
| # USAGE | |
| # Send message to slack channel/user |
| import java.util.List; | |
| @Data | |
| public class ArrayOrObject<T> { | |
| private List<T> data; | |
| private Boolean isObject; | |
| } |
A Pen by Madhusudan Banik on CodePen.
| package com.budhash.common.utils; | |
| //import com.github.drapostolos.typeparser.TypeParser; | |
| import org.apache.commons.lang3.StringUtils; | |
| import java.util.*; | |
| import java.util.function.Function; | |
| import java.util.stream.Collectors; | |
| public class Converter { |
curl to get the JSON response for the latest releasegrep to find the line containing file URLcut and tr to extract the URLwget to download itcurl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \