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
var lightsControls = { | |
red: { | |
value: 0, | |
name: "R", | |
color: "#FF0000", | |
min: 0, | |
max: 255 | |
}, | |
green: { | |
value: 0, |
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 model.FuneralSchedule | |
import play.api.libs.json.Json | |
import scala.io.Source | |
var date = "2015-05-05" | |
val source = Source.fromURL("http://zck.krakow.pl/?pageId=16&date=" + date).mkString | |
val regex = "(?s)<table>.+?(Cmentarz.+?)<.+?</table>".r | |
var thing: List[FuneralSchedule] = List() | |
var jsonFeed: List[Funeral] = List() | |
val regMatcher = "(" |
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.lang.NullPointerException | |
at com.haito.opbmaddon.tileEntity.TEPotionStation.writeSyncableDataToNBT(TEPotionStation.java:29) ~[TEPotionStation.class:?] | |
at com.haito.opbmaddon.tileEntity.TEPotionStation.writeToNBT(TEPotionStation.java:48) ~[TEPotionStation.class:?] | |
at net.minecraft.world.chunk.storage.AnvilChunkLoader.writeChunkToNBT(AnvilChunkLoader.java:395) [AnvilChunkLoader.class:?] | |
at net.minecraft.world.chunk.storage.AnvilChunkLoader.saveChunk(AnvilChunkLoader.java:204) [AnvilChunkLoader.class:?] | |
at net.minecraft.world.gen.ChunkProviderServer.safeSaveChunk(ChunkProviderServer.java:287) [ChunkProviderServer.class:?] | |
at net.minecraft.world.gen.ChunkProviderServer.saveChunks(ChunkProviderServer.java:340) [ChunkProviderServer.class:?] | |
at net.minecraft.world.WorldServer.saveAllChunks(WorldServer.java:862) [WorldServer.class:?] | |
at net.minecraft.server.MinecraftServer.saveAllWorlds(MinecraftServer.java:370) [MinecraftServer.class:?] | |
at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer |
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
var cameraSettings = { | |
quality: 50, | |
destinationType: Camera.DestinationType.FILE_URI, | |
sourceType: Camera.PictureSourceType.CAMERA | |
}; | |
var gallerySettings = { | |
sourceType: Camera.PictureSourceType.PHOTOLIBRARY, | |
quality: 50, | |
destinationType: Camera.DestinationType.FILE_URI | |
}; |
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
#include <iostream> | |
#include <cstdio> | |
#include <cmath> | |
#include <cstdlib> | |
const double EPS = 0.000000001; | |
double f(double x){ | |
return 2*x+2; | |
} |
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
#include <iostream> | |
#include <cstdio> | |
#include <cmath> | |
const double EPS = 0.000000000000000000000000000000000000001; | |
double f(double x){ | |
return x*2+5; | |
} |
NewerOlder