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
10-01 11:13:50.819 18503-18809/? E/Parcel﹕ Class not found when unmarshalling: cz.cvut.kosapp.model.entities.Parallel | |
java.lang.ClassNotFoundException: cz.cvut.kosapp.model.entities.Parallel | |
at java.lang.Class.classForName(Native Method) | |
at java.lang.Class.forName(Class.java:204) | |
at java.lang.Class.forName(Class.java:169) | |
at android.os.Parcel.readParcelableCreator(Parcel.java:2091) | |
at android.os.Parcel.readParcelable(Parcel.java:2055) | |
at android.os.Parcel.readValue(Parcel.java:1971) | |
at android.os.Parcel.readMapInternal(Parcel.java:2255) | |
at android.os.Bundle.unparcel(Bundle.java:223) |
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
import com.google.common.collect.ImmutableList; | |
import com.google.common.collect.ImmutableSet; | |
import java.util.HashSet; | |
import java.util.Set; | |
interface FJExpression { | |
} |
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
import com.google.common.collect.ImmutableList; | |
import com.google.common.collect.ImmutableSet; | |
import java.util.HashSet; | |
import java.util.Set; | |
interface FJExpression { | |
} |
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
Iterator it1 = left.oneStepRewrite().iterator(); | |
while(it.hasNext()){ | |
s.add(new Addition(it.next(), right)); | |
} | |
Iterator<Expr> it2 = right.oneStepRewrite().iterator(); | |
while(it.hasNext()){ | |
s.add(new Addition(left, it.next())); | |
} |
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"?> | |
<panorama> | |
<!-- Pano2VR 3.1.2 panorama configuration --> | |
<view fovmode="0"> | |
<start pan="158" tilt="-0.5" fov="90"/> | |
<min pan="0" tilt="-90" fov="55"/> | |
<max pan="360" tilt="90" fov="140"/> | |
</view> | |
<input tilesize="1250" tilescale="1.008" tile0url="pano_images/001_hall1_o_0.jpg" tile1url="pano_images/001_hall1_o_1.jpg" tile2url="pano_images/001_hall1_o_2.jpg" tile3url="pano_images/001_hall1_o_3.jpg" tile4url="pano_images/001_hall1_o_4.jpg" tile5url="pano_images/001_hall1_o_5.jpg" /> | |
<altinput screensize="1000" tilesize="800" tilescale="1.008" tile0url="images/001_hall1_o_800_0.jpg" tile1url="images/001_hall1_o_800_1.jpg" tile2url="images/001_hall1_o_800_2.jpg" tile3url="images/001_hall1_o_800_3.jpg" tile4url="images/001_hall1_o_800_4.jpg" tile5url="images/001_hall1_o_800_5.jpg" /> |
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
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>Brno, Nové sady 40 - Mapy.cz</title><meta name="description" content="Nejpoužívanější mapový portál www.mapy.cz umožňuje podrobné hledání na mapách České republiky i celé Evropy. Nabízí plány všech českých měst a obcí, plánovač tras a nejúplnější databázi bodů zájmu (firem) na českém internetu. Obsahuje automapu, turistická mapu s turistickými trasami a cyklostezkami, fotomapu (letecké snímky) a historické mapy."><meta name="application-name" content="Mapy.cz"><link href="/css/userweb.css?62" rel="stylesheet" type="text/css"><link href="/css/jak/lightbox.css?62" rel="stylesheet" type="text/css"><link href="/css/jak/suggest2.css?62" rel="stylesheet" type="text/css"><link href="/css/print.css?62" rel="stylesheet" type="text/css" media="print"><script type="text/javascript" src="http://api4.mapy.cz/loader.js"></script><script type="text/javascript">try {Loader.load();} catch(e){alert(e)}</sc |
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 SpeechHelper implements OnInitListener { | |
private static TextToSpeech mTts; | |
private String text; //data to speech | |
private static SpeechHelper helper; | |
public static SpeechHelper getInstance(){ | |
if(helper == null){ | |
helper = new SpeechHelper(); | |
} |
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
//ramp-speed - play with this value until satisfied | |
final float kFilteringFactor = 0.0f; | |
//last result storage - keep definition outside of this function, eg. in wrapping object | |
float accel[] = new float[3]; | |
float result[] = new float[3]; | |
//acceleration.x,.y,.z is the input from the sensor | |
//result.x,.y,.z is the filtered result |
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
void prepareStringToEncrypt() { | |
this.pairsToEncrypt = new HashMap<Integer, String>(); | |
String alterTextToEncrypt = this.textToEncrypt.replaceAll(" ", ""); | |
alterTextToEncrypt = Normalizer.normalize(alterTextToEncrypt, Form.NFD).replaceAll("[^\\p{ASCII}]", ""); | |
alterTextToEncrypt = alterTextToEncrypt.replaceAll("[^A-Z]", ""); | |
//System.out.println( "e "+this.password+" "+alterTextToEncrypt); | |
int increment = 0; | |
int index = 0; | |
if (alterTextToEncrypt.length() % 2 != 0) { | |
alterTextToEncrypt = alterTextToEncrypt.concat("X"); |
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
void prepareStringToEncrypt() { | |
this.pairsToEncrypt = new HashMap<Integer, String>(); | |
String alterTextToEncrypt = this.textToEncrypt.replaceAll(" ", ""); | |
alterTextToEncrypt = Normalizer.normalize(alterTextToEncrypt, Form.NFD).replaceAll("[^\\p{ASCII}]", ""); | |
alterTextToEncrypt = alterTextToEncrypt.replaceAll("[^A-Z]", ""); | |
//System.out.println( "e "+this.password+" "+alterTextToEncrypt); | |
int increment = 0; | |
int index = 0; | |
if (alterTextToEncrypt.length() % 2 != 0) { | |
alterTextToEncrypt = alterTextToEncrypt.concat("X"); |