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
| ################################################################################ | |
| ################# Arch Linux mirrorlist generated by Reflector ################# | |
| ################################################################################ | |
| # With: reflector @/etc/xdg/reflector/reflector.conf | |
| # When: 2023-05-22 02:09:02 UTC | |
| # From: https://archlinux.org/mirrors/status/json/ | |
| # Retrieved: 2023-05-22 02:09:02 UTC | |
| # Last Check: 2023-05-22 01:35:27 UTC |
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 java.util.ArrayList; | |
| import java.util.Arrays; | |
| import java.util.List; | |
| import java.util.stream.Collectors; | |
| import java.util.stream.IntStream; | |
| import java.util.stream.Stream; | |
| class DisjointLookupCase { | |
| public final String target; | |
| public final String string; |
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 FlynneAdvert { | |
| public static Applicant YOU; | |
| public static void main(String... args) { | |
| YOU = Applicant.forName(args[0]); | |
| if (!canStartApplication(YOU)) | |
| return; | |
| var hq = FlynneHeadquarters.getInstance(); | |
| if (!YOU.moveTowards(hq) || (YOU.thinkingStyle & hq.requiredThinkStyle) != 1) |
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 CodeAdvert { | |
| private final Developer dev; | |
| private final Collection<CodeReward> rewards = new ArrayList<>(); | |
| private final Set<Job> jobs = new HashSet<>(); | |
| private CodeAdvert(Developer dev) { | |
| if (!(this.dev = dev).canDecode(this)) | |
| throw new IllegalStateException(); | |
| } |
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
| (i'm going to tell you how to speak like gods) | |
| (a- a- -am) | |
| (so sha) | |
| (ga-ba-lu-ge-ton) | |
| (sha gi de di dop) | |
| (Yeah) | |
| (sha gi de di dop) |
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 de.kaleidox.util.rest; | |
| import java.lang.reflect.Field; | |
| import org.jetbrains.annotations.Nullable; | |
| public final class HTTPCodes { | |
| // 1xx - Informational | |
| public static final int CONTINUE = 100; | |
| public static final int SWITCH_PROTOCOL = 101; |
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
| # Common IntelliJ Platform excludes | |
| # User specific | |
| **/.idea/**/workspace.xml | |
| **/.idea/**/tasks.xml | |
| **/.idea/shelf/* | |
| **/.idea/dictionaries | |
| # Sensitive or high-churn files | |
| **/.idea/**/dataSources/ |
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
| int n = -1, o = 0; | |
| while (n++ < nw.length) | |
| if (n == ind) nw[n + o++ - 1] = insert; | |
| else nw[n] = origin[n + o]; |
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
| apply plugin: 'java-library' | |
| project.version = '2.0.0' | |
| sourceCompatibility = 1.7 | |
| targetCompatibility = 1.7 | |
| // if we are not on travis, use the publishing file | |
| if (!isTravis()) { | |
| apply from: 'gradle/publishing.gradle' |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title></title> | |
| <style> | |
| body { | |
| background: white; | |
| text-align: center; | |
| padding: 20px; | |
| font-family: Georgia, serif; |
NewerOlder