Skip to content

Instantly share code, notes, and snippets.

View cshuo's full-sized avatar
🏠
Working from home

Shuo Cheng cshuo

🏠
Working from home
  • Shanghai
  • 02:27 (UTC +08:00)
View GitHub Profile
@MickaelBergem
MickaelBergem / owncloud-docker-compose.yml
Last active August 15, 2024 15:15
Docker Compose file for setting up an ownCloud server using a PostgreSQL database
# Composition of the containers
owncloud:
image: owncloud
ports:
- 80:80
volumes_from:
- owncloud-data
links:
- postgres:owncloud-db
@denji
denji / http-benchmark.md
Last active March 27, 2025 19:46
HTTP(S) Benchmark Tools / Toolkit for testing/debugging HTTP(S) and restAPI (RESTful)
@kvalle
kvalle / MyTestRunner.java
Created January 16, 2012 19:09
Mininimal example of setup for writing Grinder test scripts in Java
package my.java.package;
import net.grinder.plugin.http.HTTPRequest;
import net.grinder.script.NotWrappableTypeException;
import net.grinder.script.Test;
public class MyTestRunner {
private HTTPRequest test;