Skip to content

Instantly share code, notes, and snippets.

View jorwan's full-sized avatar

Jorge Wander Santana Ureña jorwan

View GitHub Profile
@jorwan
jorwan / PageViewWithPagination.dart
Last active February 27, 2023 00:24
Flutter - Change between page with bottom navigation bar
/*
* Author: Jorge Wander Santana Urena
* Goal: Screen with page view & bottom pagination to change current page
**/
// Import material package to use UI
import 'package:flutter/material.dart';
main() => runApp(MyApp());
@jorwan
jorwan / gist:3af1a68636fd7c3da60240a0d3ab65a7
Created September 5, 2019 14:47 — forked from digitaljhelms/gist:4287848
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch
@jorwan
jorwan / python-notes.md
Last active July 23, 2019 15:31
Python Notes
@jorwan
jorwan / Xamarin Mac Apps Notes.md
Last active June 28, 2019 20:18
Xamarin Mac Apps Notes

Setting window bar title background color

  // Set window bar title background to transparent
  base.Window.TitlebarAppearsTransparent = true;

  // Set window background color to 5A5C5C
  base.Window.BackgroundColor = NSColor.FromRgb(88 / 255f, 86 / 255f, 86 / 255f);
@jorwan
jorwan / SVN Command Line.md
Last active March 20, 2019 14:31
SVN Command Line

Show file changes in a particular revision

Show all modified files (-v) Their changes (--diff) In a particular revision (-r)

svn log -v --diff -r revision-number[:until-revision-number]  http://x.x.x.x/path/to/svn/project/branch-name/ |more

List branches

List all branches with authors and date information

public static class UtilAnimation
{
/// <summary>
/// Shakes it.
/// </summary>
/// <param name="view">View.</param>
/// <param name="Duration">Duration.</param>
/// <param name="RepeatCount">Repeat count.</param>
/// <param name="MovementDistance">Movement distance.</param>
@jorwan
jorwan / php_commands.md
Last active September 18, 2015 15:04
Php Commands

PHP Commands


Up Php server on localhost with another port
php -S localhost:7654 -t public
@jorwan
jorwan / my_jquery_plugings.md
Last active September 11, 2015 15:51
My Cunstom Jquery Plugings

Custom Jquery Plugin


Rotate Canvas Image from the center registration poing using degree
      /**
      *  Rotate Image in Canvas
      *  @params degree : degree to rotate
 */
@jorwan
jorwan / regexp_sublime.md
Last active August 29, 2015 14:26
Regular Expression Sublime

Regular Expression Sublime


Replace something

Looking for something:

my name is (\w+) 

Replacing that for other sentences and keeping the names

@jorwan
jorwan / macport_cheat_sheet.md
Last active December 5, 2023 15:59
MacPort Cheat Sheet

MacPort Cheat Sheet


Installing

Installing vim with macport
$ port install vim