Skip to content

Instantly share code, notes, and snippets.

Privacy Policy

Qalqi Innovation Labs Private Limited built the 1234 app as a Freemium app. This SERVICE is provided by Qalqi Innovation Labs Private Limited at no cost and is intended for use as is.

This page is used to inform visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service.

If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at 1234 unless otherwise defined in this Privacy Policy.

@qalqi
qalqi / OneAppTerms.md
Created July 31, 2022 12:13
OneAppTerms.md

Terms & Conditions

By downloading or using the app, these terms will automatically apply to you – you should make sure therefore that you read them carefully before using the app. You’re not allowed to copy or modify the app, any part of the app, or our trademarks in any way. You’re not allowed to attempt to extract the source code of the app, and you also shouldn’t try to translate the app into other languages or make derivative versions. The app itself, and all the trademarks, copyright, database rights, and other intellectual property rights related to it, still belong to Qalqi Innovation Labs Private Limited.

Qalqi Innovation Labs Private Limited is committed to ensuring that the app is as useful and efficient as possible. For that reason, we reserve the right to make changes to the app or to charge for its services, at any time and for any reason. We will never charge you for the app or its services without making it very clear to you exactly what you’re paying for.

The 1234 app stores and process

@qalqi
qalqi / exploration.txt
Last active February 6, 2025 18:30
EAS build on windows for android
// Install on windows
https://learn.microsoft.com/en-us/windows/wsl/compare-versions#whats-new-in-wsl-2
@qalqi
qalqi / shadertoy.md
Created July 24, 2025 08:57 — forked from markknol/shadertoy.md
Shader cheatsheet (from shadertoy)

This help only covers the parts of GLSL ES that are relevant for Shadertoy. For the complete specification please have a look at GLSL ES specification

Language:

Version: WebGL 2.0
Arithmetic: ( ) + - ! * / %
Logical/Relatonal: ~ < > <= >= == != && ||
Bit Operators: & ^ | << >>
Comments: // /* */
Types: void bool int uint float vec2 vec3 vec4 bvec2 bvec3 bvec4 ivec2 ivec3 ivec4 uvec2 uvec3 uvec4 mat2 mat3 mat4 mat?x? sampler2D, sampler3D samplerCube
Format: float a = 1.0; int b = 1; uint i = 1U; int i = 0x1;