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
cd %~dp0 | |
mkdir converted | |
FOR %%A IN (%*) DO ( | |
sox %%A "converted/%%~nxA" reverse trim 4.3 reverse trim 0.3 gain -n -1 | |
lame -V7 converted/%%~nxA | |
) | |
pause |
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
instructions = [ | |
DecisionInstructionWithState(lambda fitness_case: 1 if fitness_case.outlook == 'SUNNY' else (2 if fitness_case.outlook == 'OVERCAST' else 3), param_count=3, name='OUT'), | |
DecisionInstructionWithState(lambda fitness_case: 1 if fitness_case.humidity == 'HIGH' else 2, param_count=2, name='HUM'), | |
DecisionInstructionWithState(lambda fitness_case: 1 if fitness_case.windy else 2, param_count=2, name='WIND'), | |
] |
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
from esec import esdl_eval | |
from esec.species.tgp import Instruction, DecisionInstructionWithState | |
from esec.landscape.tgp import TGPFitness | |
#define the attributes of a Saturday morning | |
OUTLOOK = ('SUNNY', 'OVERCAST', 'RAIN') | |
HUMIDITY = ('HIGH', 'NORMAL') | |
WINDY = (True, False) | |
#define the state object to store attributes of a Saturday morning |
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
//determine the brightness range of this thread's image strip | |
Tuple brightnessRange = GetImagePartBrightnessRange(image, startX, startY, finishX, finishY); | |
//update the global brightness range of the entire image | |
lock (_lock) | |
{ | |
minBrightness = Math.Min(minBrightness, brightnessRange.Item1); | |
maxBrightness = Math.Max(maxBrightness, brightnessRange.Item2); | |
} |
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.lukehorvat; | |
import android.content.Context; | |
import android.content.res.TypedArray; | |
import android.os.Parcel; | |
import android.os.Parcelable; | |
import android.preference.DialogPreference; | |
import android.util.AttributeSet; | |
import android.view.View; | |
import android.widget.SeekBar; |
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.lukehorvat; | |
import android.content.Context; | |
import android.content.res.TypedArray; | |
import android.os.Parcel; | |
import android.os.Parcelable; | |
import android.preference.DialogPreference; | |
import android.util.AttributeSet; | |
import android.view.View; | |
import android.widget.NumberPicker; |
NewerOlder