This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.IOException; | |
import java.lang.reflect.Field; | |
import java.nio.charset.StandardCharsets; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.nio.file.StandardOpenOption; | |
import java.security.Provider; | |
import java.security.Security; | |
import java.util.Arrays; | |
import java.util.Collection; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.self.nyg.example.jmx.app; | |
import java.lang.management.ManagementFactory; | |
import java.text.NumberFormat; | |
import java.util.Set; | |
import javax.management.MBeanServer; | |
import javax.management.ObjectInstance; | |
import lombok.extern.slf4j.Slf4j; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Based on https://usehooks.com/useLocalStorage/, modified to be used with | |
// Next.js' server-side rendering components. | |
import { useState } from "react"; | |
export default function useLocalStorage(key, initialValue) { | |
// There is no need to pass the inital value here as this will be executed on | |
// the server side, so window.localStorage is not available. | |
const [stateValue, setStateValue] = useState() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import http from 'http' | |
const options = { | |
hostname: 'perdu.com', | |
method: 'GET', | |
} | |
const req = http.request(options, res => { | |
console.log(`Status: ${res.statusCode}`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This is free and unencumbered software released into the public domain. | |
Anyone is free to copy, modify, publish, use, compile, sell, or | |
distribute this software, either in source code form or as a compiled | |
binary, for any purpose, commercial or non-commercial, and by any | |
means. | |
In jurisdictions that recognize copyright laws, the author or authors | |
of this software dedicate any and all copyright interest in the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Usage: /absolute/path/to/script.sh /absolute/path/to/folder/with/archive | |
for file in $1/* ; do | |
if [ -f "$file" ] ; then | |
echo Found file: $file | |
info=$(file $file | tr '[:upper:]' '[:lower:]') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(int argc, const char** argv) { | |
unsigned int a = 0xDEADBEEF; | |
unsigned int b = 0xBABE; | |
unsigned int q = a / b; | |
unsigned int r = a % b; | |
printf("%u = %u * %u + %u\n", a, q, b, r); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Note: to add a JPEG COM marker go here: | |
// https://gist.github.com/nyg/bdeae8190a41b4b56bde8e13dd471ecc | |
import Foundation | |
import ImageIO | |
#if os(iOS) | |
import MobileCoreServices | |
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AsynchronousServerSocketChannel listener = AsynchronousServerSocketChannel.open().bind(new InetSocketAddress(ip, port)); | |
while (true) { | |
Future<AsynchronousSocketChannel> future = listener.accept(); | |
AsynchronousSocketChannel channel = future.get(); | |
ByteBuffer buffer = ByteBuffer.allocate(5000); | |
Future<Integer> byteCount = channel.read(buffer); | |
System.out.println("Bytes read: " + byteCount.get()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Inspired by wrjpgcom of libjpeg | |
// https://github.com/libjpeg-turbo/libjpeg-turbo/blob/master/wrjpgcom.c | |
// | |
// https://stackoverflow.com/a/46045524/5536516 | |
// | |
// Note: To add an EXIF UserComment go here: | |
// https://gist.github.com/nyg/c90f36abbd30f72c8b6681ef23db886b | |
import Foundation |
NewerOlder