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
mv ic_about.png about.png | |
rm ic_account_linking.png | |
mv ic_challenges.png challenges.png | |
mv ic_club_check_in.png clubCheckIn.png | |
mv ic_club_finder.png clubFinder.png | |
mv ic_connected_apps.png connectedApps.png | |
mv ic_deals.png deals.png | |
rm ic_default.png | |
mv ic_email_preferences.png emailPrefs.png | |
mv ic_find_a_class.png findAClass.png |
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.github.dector.rtsedu.lab2; | |
/** | |
* @author dector | |
*/ | |
public class Test { | |
static long sTime; | |
static long eTime; | |
static long time; |
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
ERROR/java.io.FileNotFoundException(4292): Default.png | |
java.io.FileNotFoundException: Default.png | |
at android.content.res.AssetManager.openAsset(Native Method) | |
at android.content.res.AssetManager.open(AssetManager.java:315) | |
at android.content.res.AssetManager.open(AssetManager.java:289) | |
at com.apportable.app.SplashScreen.show(SplashScreen.java:30) | |
at com.apportable.activity.VerdeActivity.onCreate(VerdeActivity.java:234) | |
at android.app.Activity.performCreate(Activity.java:5104) | |
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080) | |
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2144) |
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
public class FlipAnimation extends Animation { | |
private ImageView view; | |
private Bitmap toBitmap; | |
private Camera camera; | |
private int centerY; | |
private int centerX; | |
private boolean flipCCV; |
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
Writer out = null; | |
try { | |
out = new FileWriter(FILE_NAME); | |
} catch (IOException e) { | |
e.printStackTrace(); | |
} finally { | |
try { | |
if (out != null) | |
out.close(); | |
} catch (IOException e) { |
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
$ java -jar LD24.jar | |
Initializing game... | |
Initializing Input... | |
Initializing Textures... | |
Initializing Screen... | |
Initializing Renderer... | |
Initializing AudioManager... | |
Exception in thread "Thread-1" java.lang.RuntimeException: javax.sound.sampled.LineUnavailableException: line with format PCM_SIGNED 44100.0 Hz, 16 bit, stereo, 4 bytes/frame, little-endian not supported. | |
at fruitfly.ld24.audio.Audio.<init>(Audio.java:16) | |
at fruitfly.ld24.audio.AudioManager.init(AudioManager.java:11) |
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
public void setA(int a) { | |
// Lock | |
if (this.a < a) // Check if global max is smaller than finded in some thread | |
this.a = a; // If it is, set new global max value | |
// UnLock | |
} |
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
mvn archetype:generate -DgroupId=my.company -DartifactId=app -Dversion=0.1 -Dpackage=my.company.app -DarchetypeGroupId=scage -DarchetypeArtifactId=project-archetype -DarchetypeVersion=0.8 -DarchetypeRepository=http://scage.googlecode.com/svn/maven-repository |
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
-- Project module, that | |
-- realizes labwork task | |
-- with helpful functions | |
-- and procedures. | |
package body Math is | |
-- Function, that counts C = A - B in vector form. | |
function Func1 (A, B: Vector; N: Integer) return Vector is | |
C: Vector; |
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
program lab16; | |
const | |
ARR_LENGTH = 3; | |
type | |
TIndex = word; | |
TArray = array [0..ARR_LENGTH-1] of word; | |
var | |
arr1, arr2, arr3 : TArray; | |
res : longint; | |
i : TIndex; |