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
package com.soenkerohde.net { | |
import com.adobe.crypto.MD5Stream; | |
import flash.events.Event; | |
import flash.events.EventDispatcher; | |
import flash.events.HTTPStatusEvent; | |
import flash.events.IOErrorEvent; | |
import flash.events.ProgressEvent; | |
import flash.events.SecurityErrorEvent; | |
import flash.filesystem.File; |
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
<?xml version="1.0" encoding="utf-8"?> | |
<!-- Example app for github.com/srohde/Twitter --> | |
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark" | |
xmlns:mx="library://ns.adobe.com/flex/halo" | |
xmlns:twitter="com.soenkerohde.twitter.*" | |
currentState="initial" | |
creationComplete="creationCompleteHandler(event)"> | |
<fx:Declarations> |
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
<s:Window width="240" height="210" | |
xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" | |
xmlns:mx="library://ns.adobe.com/flex/halo" title="Update" alwaysInFront="true" resizable="false" showStatusBar="false"> | |
<s:layout> | |
<s:BasicLayout /> | |
</s:layout> | |
<fx:Script> | |
<![CDATA[ |
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
package com.soenkerohde.example { | |
import com.soenkerohde.example.UpdateWindow; | |
import com.soenkerohde.desktop.ISwizUpdateBean; | |
import com.soenkerohde.desktop.event.OnlineEvent; | |
import com.soenkerohde.desktop.event.UpdateEvent; | |
import org.swizframework.Swiz; | |
import spark.components.Window; |
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
<desktop:SwizUpdateBean xmlns:desktop="com.soenkerohde.desktop.*" | |
id="swizUpdateBean" | |
updateUrl="http://yourdomain.com/YourApp.air" | |
autoCheckUpdate="true" autoStartUpdate="true" /> |
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
# show hidden files/directories (YES or NO) | |
# relaunch Finder to see the actual change | |
defaults write com.apple.Finder AppleShowAllFiles YES | |
# add path variable | |
export PATH=PATH_TO_ADD:$PATH | |
# delete .svn directories | |
find . -name .svn -print0 | xargs -0 rm -rf |
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
### Eclipse Workspace Patch 1.0 | |
#P oauth_core | |
Index: src/org/iotashan/utils/URLEncoding.as | |
=================================================================== | |
--- src/org/iotashan/utils/URLEncoding.as (revision 13) | |
+++ src/org/iotashan/utils/URLEncoding.as (working copy) | |
@@ -1,75 +1,65 @@ | |
-package org.iotashan.utils | |
-{ | |
+package org.iotashan.utils { |
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
find . -name .svn -print0 | xargs -0 rm -rf |
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
<?xml version="1.0" encoding="utf-8"?> | |
<mx:Window xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" width="250" height="210" | |
title="Update" alwaysInFront="true" resizable="false" | |
showStatusBar="false" showGripper="false" | |
paddingLeft="10" paddingTop="10"> | |
<mx:Script> | |
<![CDATA[ | |
import org.swizframework.desktop.ISwizUpdateBean; | |