Skip to content

Instantly share code, notes, and snippets.

View aljungberg's full-sized avatar

Alexander Ljungberg aljungberg

View GitHub Profile
@aljungberg
aljungberg / mkv2mp4.py
Created April 29, 2016 10:03
Repackage all h264 mkv files to mp4 files in the current folder.
#!/usr/env python
import os
import sh
import re
for fname in os.listdir("."):
if not fname.endswith(".mkv"):
continue
new_name = fname[:-4] + ".mp4"

Hi Simon,

Thanks for your error report. We have released a fix for this issue today.

Please let us know if there is anything else we can help you with!

Alexander

Contributing

As an open source project, your contributions are important to the future of Cappuccino. Whether you're looking to write code, add new documentation, or just report a bug, you'll be helping everyone who uses Cappuccino in the future.

Reporting Bugs

We use GitHub to track issues. You might be interested in our issue life cycle which explains the process of how an issue is taken from new to resolved.

Patches

@aljungberg
aljungberg / cappuccino-0.9.6-changelog.markdown
Created August 22, 2012 21:55
Cappuccino 0.9.6-RC2 Release Notes

What's New in Cappuccino 0.9.6 (RC2)

Get the source on GitHub: https://github.com/cappuccino/cappuccino/tree/v0.9.6-RC2. To install:

curl https://raw.github.com/cappuccino/cappuccino/v0.9.6-RC2/bootstrap.sh >/tmp/cb.sh && bash /tmp/cb.sh

Release date: 2012-08-22

Foundation and Core

@aljungberg
aljungberg / CPCompatibility.j
Created August 8, 2012 16:18
paste event handling edition
/*
* CPCompatibility.j
* AppKit
*
* Created by Francisco Tolmasky.
* Copyright 2008, 280 North, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
@aljungberg
aljungberg / CPPlatformWindow+DOM.j
Created August 8, 2012 16:18
paste event handling edition
/*
* CPPlatformWindow+DOM.j
* AppKit
*
* Created by Francisco Tolmasky.
* Copyright 2008, 280 North, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
@aljungberg
aljungberg / gist:2209000
Created March 26, 2012 19:34
Cappuccino 0.9.6-RC1 Commits
0b09ada Do not truncate bold labels
4a7c2a9 compense the y placement
6fe49fb _CPThemeAttribute fix : encode missing _defaultTheme value
6ac28e1 A few text tweaks to make the prompts more friendly.
476c029 Code formatting.
23c9c6b concat command parts in Objective-j/Jakefile
ffa3378 enquote ENVIRONMENTS environment variable
bc14ad6 small improvments in XcodeCapp, including handling quick remove/create existing files
50b447b [XcodeCapp] App controller should conform to NSTableView data source and delegate protocols. Protocol methods don't need to be declared in the adopting class' interface because they will have already been declared in the protocol declaration.
2169ba3 [XcodeCapp] Silenced build warning: -[id<NSTableViewDelegate> tableView:heightOfRow:] expects an NSInteger for the second argument.

What's New in Cappuccino 0.9.5

Release date: 2011-11-16

The final release of Cappuccino 0.9.5 is identical to RC5.

What's New in Cappuccino 0.9.5 (RC5)

/*
* CPScreen.j
* AppKit
*
* Created by Francisco Tolmasky.
* Copyright 2009, 280 North, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
/*
* AppController.j
* TestTemplate
*
* Created by You on August 10, 2010.
* Copyright 2010, Your Company All rights reserved.
*/
@import <Foundation/CPObject.j>