Skip to content

Instantly share code, notes, and snippets.

View rayraydejesus's full-sized avatar
📲
Putting things on phones.

Ray De Jesus rayraydejesus

📲
Putting things on phones.
  • NuGoon
  • Arizona, USA
  • 19:36 (UTC -07:00)
View GitHub Profile
@Srfigie
Srfigie / .gitattributes
Created February 2, 2020 14:30 — forked from nemotoo/.gitattributes
.gitattributes for Unity3D with git-lfs
## Unity ##
*.cs diff=csharp text
*.cginc text
*.shader text
*.mat merge=unityyamlmerge eol=lf
*.anim merge=unityyamlmerge eol=lf
*.unity merge=unityyamlmerge eol=lf
*.prefab merge=unityyamlmerge eol=lf
@bradtraversy
bradtraversy / webdev_online_resources.md
Last active March 4, 2025 07:44
Online Resources For Web Developers (No Downloading)
@stmoerman
stmoerman / index.html
Created March 26, 2018 21:44
Testing address validation using the Google Maps API
<html>
<head>
<title>Example Form </title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.validate/1.7/jquery.validate.min.js"></script>
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
</head>
<body>
<form>
<label for="Name">Name</label>
@jalalazimi
jalalazimi / .gitignore
Last active July 24, 2024 19:04
.gitignore for react native project
# OSX
.DS_Store
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
@Ikalou
Ikalou / git_and_unity.md
Last active December 17, 2024 17:47
Git and Unity

EDIT: this is an old post and a lof the information in this document is outdated.

Using Git with Unity

Git logo

Git is a popular free and open source distributed version control system.

I am new to Unity, but as a long time git user, I wanted to use git for my

@tokineco
tokineco / .gitignore
Last active February 18, 2021 05:33
Cocos2d-x v3.x .gitignore
# OSX - https://github.com/github/gitignore/blob/master/Global/OSX.gitignore
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
@dominicfallows
dominicfallows / Digital Project - Development Contract - Agency (or Company) to Freelancer.md
Last active October 9, 2023 18:47
Example contract for use by Creative, Digital and Marketing Agencies (or any company for that matter) to use when contracting a Freelance Web Developer on digital projects.
@brianmacarthur
brianmacarthur / flash-app.js
Last active September 14, 2024 17:22
Flash messaging in Express 4: express-flash vs. custom middleware in ejs, handlebars, or jade
var express = require('express');
var cookieParser = require('cookie-parser');
var session = require('express-session');
var flash = require('express-flash');
var handlebars = require('express-handlebars')
var app = express();
var sessionStore = new session.MemoryStore;
// View Engines
@mcgrew
mcgrew / png2tmx.go
Last active August 12, 2023 04:50
Convert a png to a TMX tile map
package main
import(
"image/png"
"image/draw"
"image"
"io"
"os"
"fmt"
"encoding/base64"
@fitnr
fitnr / snd_parse.py
Last active June 20, 2024 01:53
The New York City Street Name Dictionary is in an insane fixed-width format. This python script parses it into a CSV.
from csv import writer
from collections import OrderedDict
'''
The New York City Street Name Dictionary is in an insane fixed-width format.
This python script parses it into a CSV.
http://www.nyc.gov/html/dcp/html/bytes/applbyte.shtml
'''
FIELDS_S = OrderedDict([
('_', 1),