Skip to content

Instantly share code, notes, and snippets.

View Kyonru's full-sized avatar
👾
🎮

Robert Amarante Kyonru

👾
🎮
View GitHub Profile
@Kyonru
Kyonru / twitch-completion-2023-03-25T22:18:47.165Z
Created March 25, 2023 22:18
Twitch AI Completion 2023-03-25T22:18:47.165Z - https://www.twitch.tv/kyonru
transform.Rotate(Vector3.up, angulo);
@Kyonru
Kyonru / twitch-completion-2023-03-25T22:04:38.623Z.py
Created March 25, 2023 22:04
Twitch AI Completion 2023-03-25T22:04:38.623Z - https://www.twitch.tv/kyonru
print(numeros_palindromos(100, 200))
@Kyonru
Kyonru / twitch-completion-2023-03-25T22:04:37.912Z.py
Created March 25, 2023 22:04
Twitch AI Completion 2023-03-25T22:04:37.912Z - https://www.twitch.tv/kyonru
def es_palindromo(num):
return str(num) == str(num)[::-1]
def numeros_palindromos(minimo, maximo):
palindromos = []
for num in range(minimo, maximo+1):
if es_palindromo(num):
palindromos.append(num)
return palindromos
@Kyonru
Kyonru / twitch-completion-2023-03-25T22:02:09.667Z.js
Created March 25, 2023 22:02
Twitch AI Completion 2023-03-25T22:02:09.667Z - https://www.twitch.tv/kyonru
let resultado = 3 * 123 * 100 * 50 / 2.5;
console.log(resultado); // Output: 738000
@Kyonru
Kyonru / twitch-completion-2023-03-25T22:01:41.223Z.js
Created March 25, 2023 22:01
Twitch AI Completion 2023-03-25T22:01:41.223Z - https://www.twitch.tv/kyonru
let resultado = 3 * 123 * 100 * 50;
console.log(resultado); // Output: 1845000
@Kyonru
Kyonru / twitch-completion-2023-03-25T22:00:28.219Z.js
Created March 25, 2023 22:00
Twitch AI Completion 2023-03-25T22:00:28.219Z - https://www.twitch.tv/kyonru
let resultado = 3 * 123 * 100;
console.log(resultado); // Output: 36900
@Kyonru
Kyonru / twitch-completion-2023-03-25T21:59:46.370Z.js
Created March 25, 2023 21:59
Twitch AI Completion 2023-03-25T21:59:46.370Z - https://www.twitch.tv/kyonru
let resultado = 3 * 123;
console.log(resultado); // Output: 369
@Kyonru
Kyonru / .detoxrc.json
Created April 15, 2021 16:13
Detox config file example
{
"testRunner": "jest",
"runnerConfig": "e2e/config.json",
"apps": {
"ios.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/<<name>>.app",
"build": "xcodebuild -workspace ios/<<name>>.xcworkspace -scheme <<scheme>> -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build ONLY_ACTIVE_ARCH=YES -quiet",
"type": "ios.app"
},
"ios.release": {
@Kyonru
Kyonru / PlayerMovement.cs
Created October 25, 2020 02:20
Character Contoller
using UnityEngine;
public class PlayerMovement : MonoBehaviour
{
[SerializeField] private float speed = 10f;
[SerializeField] private float jumpHeight = 10f;
[SerializeField] private float gravity = -9.81f;
[SerializeField] private float groundDistance = 0.4f;
[SerializeField] private float runSpeed = 20f;
[SerializeField] private Transform groundCheck;
@Kyonru
Kyonru / leidsa_extractor.js
Last active June 4, 2018 12:37
Extract the results of the loteries in Dominican Republic from http://leidsa.com/
/**
* Extract the body of the hmtl page
* @param {string} html full html of the page
*/
export const extractBody = (html) => {
const startIndex = html.indexOf('<body>');
const endIndex = html.indexOf('</body>');
return html.substring(startIndex, endIndex);
};