Put running process to background: Ctrl+Z
Put process back to foreground to continue work: fg
| public static class AnonymousExtension | |
| { | |
| static void Main(string[] args) | |
| { | |
| var person = new { FirstName = "Scott", LastName = "Hunter", Sex = 'M', Age = 25 }; | |
| var otherPerson = person.With(new { LastName = "Hanselman" }); | |
| Console.WriteLine(otherPerson); | |
| } |
| --- | |
| - name: Setup SBC | |
| hosts: all | |
| #become: true | |
| #become_user: root | |
| gather_facts: false | |
| vars: | |
| #New user to be created | |
| new_user: newuser |
| using System; | |
| using System.Collections.Concurrent; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Reflection; | |
| using System.Reflection.Emit; | |
| namespace Playground | |
| { | |
| public class Program |
| def unicode_it(data): | |
| # Take a string of data and convert it to unicode | |
| try: | |
| return unicode(data, errors="replace").strip() | |
| except TypeError as E: | |
| return u"" | |
| def extract(msg, msg_obj, attachments): | |
| if msg.is_multipart(): | |
| for part in msg.get_payload(): |
| #%RAML 0.8 | |
| title: World Music API | |
| baseUri: http://example.api.com/{version} | |
| version: v1 | |
| schemas: | |
| - halLink: | | |
| { "$schema": "http://json-schema.org/schema", | |
| "type": "object", | |
| "description": "a Hypertext Application Language link", |
Our Virtual Machines are provisioned using Vagrant from a Linux base box to run using VirutalBox. If the Hard Disk space runs out and you cannot remove files to free-up space, you can resize the Hard Disk using some VirtualBox and Linux commands.
The following steps assume you've got a set-up like mine, where:
| NOTE: Easier way is the X86 way, described on https://www.genymotion.com/help/desktop/faq/#google-play-services | |
| Download the following ZIPs: | |
| ARM Translation Installer v1.1 (http://www.mirrorcreator.com/files/0ZIO8PME/Genymotion-ARM-Translation_v1.1.zip_links) | |
| Download the correct GApps for your Android version: | |
| Google Apps for Android 6.0 (https://www.androidfilehost.com/?fid=24052804347835438 - benzo-gapps-M-20151011-signed-chroma-r3.zip) | |
| Google Apps for Android 5.1 (https://www.androidfilehost.com/?fid=96042739161891406 - gapps-L-4-21-15.zip) | |
| Google Apps for Android 5.0 (https://www.androidfilehost.com/?fid=95784891001614559 - gapps-lp-20141109-signed.zip) |
| #!/bin/bash | |
| #set -x | |
| # Shows you the largest objects in your repo's pack file. | |
| # Written for osx. | |
| # | |
| # @see http://stubbisms.wordpress.com/2009/07/10/git-script-to-show-largest-pack-objects-and-trim-your-waist-line/ | |
| # @author Antony Stubbs |
| brew update | |
| brew versions FORMULA | |
| cd `brew --prefix` | |
| git checkout HASH Library/Formula/FORMULA.rb # use output of "brew versions" | |
| brew install FORMULA | |
| brew switch FORMULA VERSION | |
| git checkout -- Library/Formula/FORMULA.rb # reset formula | |
| ## Example: Using Subversion 1.6.17 | |
| # |