Skip to content

Instantly share code, notes, and snippets.

View jamsoft's full-sized avatar
🏠
Working from home

Jammer jamsoft

🏠
Working from home
View GitHub Profile
@pcostarg
pcostarg / DevEnv4PHPWindows.md
Last active November 9, 2017 18:38
Install Development Environment for PHP on Windows
  • Install VS Code
    • Install following extensions:
      • Code Runner
      • PHP Debug
      • PHP Intellisense
    • Restart VS Code
    • Add the following to user settings (pay attention to php.exe path):
    {

"code-runner.executorMap": {

@redent
redent / ParentViewController.Keyboard.cs
Last active May 2, 2018 21:47
Parent view controller to handle keyboard notifications to center views in the screen. UIScrollView related methods moved to an extension class.
using System;
using Foundation;
using UIKit;
using TwinCoders.TouchUtils.Extensions;
using CoreGraphics;
namespace SalesForce.Touch.Views
{
public abstract partial class ParentViewController
{