Skip to content

Instantly share code, notes, and snippets.

View EmmanuelMess's full-sized avatar
🌱
Working on AI for detecting plants

Emmanuel EmmanuelMess

🌱
Working on AI for detecting plants
View GitHub Profile
@John-Paul-R
John-Paul-R / FabricModList.md
Last active March 17, 2024 21:43
A list of (almost all) mods for Fabric

Fabric Mod List

This page contains a list of the current Minecraft Fabric mods. (As of 2021-08-19 08:05:23 Timezone: UTC+0000 (GMT))

To search for mods by name, category, or download count, visit the website, fibermc.com!

Note: You can view a mod's source files by following the "Source" link on its CurseForge page, assuming that the mod's creator has made such files public.

There are currently 2954 mods in this list.

@ice1000
ice1000 / kotlin-lambda-rec.kt
Created May 2, 2017 16:14
Kotlin can also write recursive lambda
package main
/**
* Created by ice1000 on 2017/5/2.
*
* @author ice1000
*/
fun main(args: Array<String>) {
fun lambda(it: Int): Int =
@ljmf00
ljmf00 / guide.md
Last active May 5, 2022 07:35
Pokemon Go Guide

Pokemon Go Guide

POKEGO

Installation

How to install on Android 4.1+

  1. Download the App for your Android Version;
  2. Start Pokemon GO;
  3. Wait until the loading screen disappear;
  4. Restart your phone;
  5. Start Pokemon GO again;
@t-mullen
t-mullen / NASM-MIPS.md
Last active April 5, 2023 11:38
NASM-MIPS Translations
@uupaa
uupaa / image.resize.in.github.flavored.markdown.md
Last active March 22, 2024 00:46
image resize in github flavored markdown.

Image source

https://gyazo.com/eb5c5741b6a9a16c692170a41a49c858.png

Try resize it!

  • ![](https://gyazo.com/eb5c5741b6a9a16c692170a41a49c858.png | width=100)
@mishurov
mishurov / syntax.s
Last active March 28, 2024 13:15
AT&T assembly syntax and IA-32 instructions
# --------
# Hardware
# --------
# Opcode - operational code
# Assebly mnemonic - abbreviation for an operation
# Instruction Code Format (IA-32)
# - Optional instruction prefix
# - Operational code
@JMPergar
JMPergar / ScrollViewWithMaxHeight.java
Created November 5, 2014 13:28
ScrollView that can be configured with max height
public class ScrollViewWithMaxHeight extends ScrollView {
public static int WITHOUT_MAX_HEIGHT_VALUE = -1;
private int maxHeight = WITHOUT_MAX_HEIGHT_VALUE;
public ScrollViewWithMaxHeight(Context context) {
super(context);
}
@rafali
rafali / ResizeAnimation.java
Last active February 26, 2021 13:05
Resize animation on Android
public class ResizeAnimation extends Animation {
final int startWidth;
final int targetWidth;
View view;
public ResizeAnimation(View view, int targetWidth) {
this.view = view;
this.targetWidth = targetWidth;
startWidth = view.getWidth();
}