Skip to content

Instantly share code, notes, and snippets.

View acmi's full-sized avatar

Aleksei Sazonov acmi

View GitHub Profile
@dodyg
dodyg / gist:5823184
Last active August 10, 2024 04:53
Kotlin Programming Language Cheat Sheet Part 1

#Intro

Kotlin is a new programming language for the JVM. It produces Java bytecode, supports Android and generates JavaScript. The latest version of the language is Kotlin M5.3

Kotlin project website is at kotlin.jetbrains.org.

All the codes here can be copied and run on Kotlin online editor.

Let's get started.

@07151129
07151129 / Schema.xsd
Last active September 16, 2023 02:10
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.lineage2.co.kr/ui" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="AbsoluteSize">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:int" name="width" use="required"/>
<xs:attribute type="xs:int" name="height" use="required"/>
</xs:extension>
@luismts
luismts / GitCommitBestPractices.md
Last active September 26, 2024 10:42
Git Tips and Git Commit Best Practices

Git Commit Best Practices

Basic Rules

Commit Related Changes

A commit should be a wrapper for related changes. For example, fixing two different bugs should produce two separate commits. Small commits make it easier for other developers to understand the changes and roll them back if something went wrong. With tools like the staging area and the ability to stage only parts of a file, Git makes it easy to create very granular commits.

Commit Often

Committing often keeps your commits small and, again, helps you commit only related changes. Moreover, it allows you to share your code more frequently with others. That way it‘s easier for everyone to integrate changes regularly and avoid having merge conflicts. Having large commits and sharing them infrequently, in contrast, makes it hard to solve conflicts.