This file contains 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
{ | |
"W": 768, | |
"H": 512, | |
"restore_faces": false, | |
"tiling": false, | |
"enable_hr": false, | |
"firstphase_width": 0, | |
"firstphase_height": 0, | |
"seed": 1142533794, | |
"sampler": "Euler a", |
This file contains 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
0:(1.5), 20:(3), 40:(15), 60:(0), 80:(-15), 100:(-3), 120:(0), 240(3), 260(-3), 300(0) |
This file contains 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
0:(1.5), 20:(3), 40:(15), 60:(0), 80:(-15), 100:(-3), 120:(0), 240(3), 260(-3), 300(0) |
This file contains 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
// Should be used when the locale is avaible | |
template<typename MsgFormat> | |
std::string get_gettext_meta(const char* domain, std::locale& loc) | |
{ | |
boost::locale::message_format<char> const* facet = 0; | |
facet = &std::use_facet<MsgFormat>(loc); | |
const char* kek = facet->get(facet->domain(domain), NULL, ""); | |
std::string cheburek; | |
if(kek != NULL) { | |
cheburek = std::string(kek); |
This file contains 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 java.awt.AWTException; | |
import java.awt.Graphics; | |
import java.awt.Image; | |
import java.awt.SystemTray; | |
import java.awt.Toolkit; | |
import java.awt.TrayIcon; | |
import java.awt.TrayIcon.MessageType; | |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import java.awt.event.ItemEvent; |
This file contains 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
{ | |
"modversions": [ | |
{ | |
"version": "1.12.2-1.4.2.0", | |
"TEPollutionConfig": { | |
"1.0": "https://raw.githubusercontent.com/Artem226/MinecraftEcologyMod/1.11/TEPC.json", | |
"1.1": "https://raw.githubusercontent.com/Artem226/MinecraftEcologyMod/1.12/TEPC.json" | |
}, | |
"PollutionSources": { | |
"1.0": "https://raw.githubusercontent.com/Artem226/MinecraftEcologyMod/1.11/PollutionSources.json", |
This file contains 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> | |
using namespace std; | |
int main() | |
{ | |
const int size = 10; | |
int a[size], b[size], x, imax = 0, imin = 0; | |
This file contains 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> | |
using namespace std; | |
int main() | |
{ | |
const int size = 10; | |
float a[size]; | |
for(int i = 0; i < size; i++) |
This file contains 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 artem226.quadratic.main; | |
import java.io.File; | |
import java.io.IOException; | |
import java.util.Random; | |
import java.util.Scanner; | |
import org.apache.commons.io.FileUtils; | |
import com.google.gson.Gson; |
NewerOlder