Skip to content

Instantly share code, notes, and snippets.

View oismaelash's full-sized avatar
💭
I change the world when you see the path for get the goals! let’s go together

Ismael Ash oismaelash

💭
I change the world when you see the path for get the goals! let’s go together
View GitHub Profile
@Nick-Gabe
Nick-Gabe / Pombify.js
Last active January 6, 2024 01:57
Transforma uma string em pombês, e traduz para a língua dos humanos.
const pombify = (phrase) => {
return phrase
.split(' ')
.map((word) => {
const wordLetters = word.split('')
return wordLetters
.map((letter, index) => {
const charCode = letter.charCodeAt(0);
const binary = charCode
.toString(2)
@kunofellasleep
kunofellasleep / textInput.js
Created May 30, 2019 10:25
Text Input on Spark AR
// Created by @kunofellasleep on 2019/05/28.
const Diagnostics = require('Diagnostics');
const NativeUI = require('NativeUI');
const TouchGestures = require('TouchGestures');
const objectName = "3dText0"
const defaultText = "Guest"
NativeUI.setText(objectName defaultText);
let AWS = require('aws-sdk');
const sns = new AWS.SNS();
exports.handler = async (event) => {
let receiver = event['receiver'];
let sender = event['sender'];
let message = event['message'];
let isPromotional = true;

Github Two-Factor Authentication (2FA) for Brazil via SMS

The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55 will be the first on the list, already selected:


🇧🇷 [pt-BR]

Autenticação em dois fatores (2FA) do GitHub para o Brasil via SMS

@FullStackForger
FullStackForger / .gitignore
Last active April 6, 2024 13:19
.gitignore for Unity3d project
###
# Unity folders and files
###
[Aa]ssets/AssetStoreTools*
[Bb]uild/
[Ll]ibrary/
[Ll]ocal[Cc]ache/
[Oo]bj/
[Tt]emp/
[Uu]nityGenerated/
@MoOx
MoOx / README.md
Last active June 25, 2024 06:17
frontend project Readme example

PROJECT BLAH BLAH

Requirements

For development, you will only need Node.js installed on your environement. And please use the appropriate Editorconfig plugin for your Editor (not mandatory).

Node

Node is really easy to install & now include NPM.