This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Qemu < Formula | |
homepage 'http://www.qemu.org/' | |
url 'http://wiki.qemu.org/download/qemu-1.7.1.tar.bz2' | |
sha256 'd68942a004222eebae5d156ceefb308fabd98edb282d1dde49ec810bbf01bef4' | |
head 'git://git.qemu-project.org/qemu.git' | |
depends_on 'pkg-config' => :build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
out_to_x no | |
own_window no | |
out_to_console yes | |
background no | |
max_text_width 0 | |
# Prevent flickering | |
double_buffer yes | |
# Update interval in seconds |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout some time, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
/* global require */ | |
// Define dependencies | |
var gulp = require('gulp'), | |
connect = require('gulp-connect'), | |
livereload = require('gulp-livereload'); | |
// Define file locations | |
var htmlFiles = [ 'app/**/*.html' ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Dim objNS As Outlook.NameSpace | |
Private Sub init() | |
Set objNS = GetNamespace("MAPI") | |
End Sub | |
Public Sub MoveMail() | |
Dim bChk As Boolean: bChk = True | |
Dim objFolder As Outlook.MAPIFolder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | |
// for details. All rights reserved. Use of this source code is governed by a | |
// BSD-style license that can be found in the LICENSE file. | |
(function() { | |
// Bootstrap support for Dart scripts on the page as this script. | |
if (navigator.userAgent.indexOf('(Dart)') === -1) { | |
// TODO: | |
// - Support in-browser compilation. | |
// - Handle inline Dart scripts. |