Skip to content

Instantly share code, notes, and snippets.

View kerbymart's full-sized avatar

@kerbymart kerbymart

  • divroll
  • Philippines
View GitHub Profile
openapi: 3.0.0
info:
version: 1.6.2
title: Appwrite
description: Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
termsOfService: https://appwrite.io/policy/terms
contact:
name: Appwrite Team
url: https://appwrite.io/support
email: [email protected]
openapi: 3.0.0
info:
version: 1.6.2
title: Appwrite
description: Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
termsOfService: https://appwrite.io/policy/terms
contact:
name: Appwrite Team
url: https://appwrite.io/support
email: [email protected]
@kerbymart
kerbymart / gwt_compiler_dump.txt
Created July 11, 2025 16:22
GWT Compile DUMP - GWT 2.12.2, Errai 4.3.3.Final
[INFO] Ignoring app.myapp:gwtapp-shared:jar:0-SNAPSHOT; neither a gwt-lib or jar:sources; Did you forget to use <type>gwt-lib</type> in the dependency declaration?
[INFO] Turning off precompile in incremental mode.
[INFO] Super Dev Mode starting up
[INFO] workDir: /home/Projects/myapp_gwtapp_gwt28/target/gwt/codeserver
[WARNING] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[WARNING] SLF4J: Defaulting to no-operation (NOP) logger implementation
[WARNING] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[INFO] Loading Java files in app.myapp.App.
[INFO] Module setup completed in 18609 ms
[INFO]
Mungo mungo = new Mungo();
DB testDB = mungo.getDB("testDB");
DBCollection messages = testDB.createCollection("Message");
BasicDBObject obj
= new BasicDBObject("{\"hello\" : \"world\"}")
.append("hi", "there");
.append("good", "morning");
WriteResult wr = messages.insert(obj); // Done!
Greeting greeting = messages.findOne(obj.getId()).as(Greeting.class); // Get it