Skip to content

Instantly share code, notes, and snippets.

@mschmulen
mschmulen / AppPrivacyPolicy.md
Created January 1, 2023 13:17
Privacy Policy:

Privacy Policy:

Simple & Safe applications and games, safe for childeren and adults of all ages.

  • No external analytics.
  • No individual data recording or transmission.
  • No Third pary integrations SDK's, API's.
  • No network usage.
# terminal colors
export CLICOLOR=1
# export LSCOLORS=GxFxCxDxBxegedabagaced
export LSCOLORS=exfxcxdxbxegedabagacad
# test mate
# export EDITOR="/usr/local/bin/mate -w"
# Android Studio
@mschmulen
mschmulen / pull_request_template.md
Last active November 17, 2020 19:44
pull request template

All Submissions:

Ticket Link:

Add the link to you ticket

Change Log (How):

Brief Summary or bullet points of the specific changes.

ScoreCard

YES/NO Questions

git:

  • [] ReadMe.md
  • [] Reasonable git commit hygine
  • [] Did they have a branching strategy

YES/NO Questions

git repo

[] ReadMe.md [] Reasonable git hygine

Project hygine

[] file and organization: did they use folders [] do you like the names of the code files and the classes

@mschmulen
mschmulen / AndroidKotlin.md
Last active February 8, 2019 15:16
Kotlin for swift developers
{
"author": "matt",
"yachts": [
{
"name": "Felicia",
"make": "Valiant 37",
"year": 1988,
"price":20000,
"location":"Mexico"
},
@mschmulen
mschmulen / README.md
Last active August 21, 2017 16:47
Mac iOS Development Environment

Manual Install (requires valid Apple ID )

  1. Install Xcode via the App store Xcode You must also open xcode and agree to the license agreement)
  2. Ensure Apple's command line tools are installed xcode-select --install (You must also open xcode and agree to the license agreement ) verify install with xcode-select -p
  3. Install package manager Cocoapods sudo gem install cocoapods its possible to do this without sudo reference CocoaPods Guide for instructions. Verify installation with pod --version
  4. Install package manager and Carthage via Homebrew : brew update and thenbrew install carthage. Verify installation with carthage version
  5. Verify installation by opening Xcode and "create a new Xcode project" -> "Single View (iOS) Application" -> "Build and Run" hotkey: ⌘ + r to build and run in the local simulator.

Ansible Install ( no Apple ID required)

WIP

@mschmulen
mschmulen / animateCell.swift
Last active October 13, 2016 16:26
animate cell
// If you wanted to smooth in the animation of the tableview cell you can do something like this ...
extension SomeTableViewCell : AnimatedTableViewCellProtocol {
func startAnimation() {
//this scales but it could alpha in as well
self.layer.transform = CATransform3DMakeScale(0.75,0.75,1)
UIView.animateWithDuration(0.20, animations: {
self.layer.transform = CATransform3DMakeScale(1,1,1)
})
{
"tasks": [
{
"GUID":"12345",
"title":"task1",
"description":"task 1 description"
},
{
"GUID":"12345",
"title":"task1",