Java 1 5 0
Author: e | 2025-04-24
Java 8 Update 341: : 0. Java 8 Update 321: : 0. Java 8 Update 311: : 1. Java 8 Update 301: : 0. Java 8 Update 20: : 0. Java 8 Update 161: : 1. Java 8 Update 151: : 6. Java 8 Update 74: : 6. Misc: : 0. Java 8 Update 5: : 1
5,% 1(! )) .! 0 0! 0 - TypingClub
Sorted according to the providedComparator. For ordered streams, the sort is stable. For unorderedstreams, no stability guarantees are made. The method does not modify theoriginal list; it returns a new sorted stream/list.Java sort list of integersIn the following example, we sort a list of integers.Main.java import java.util.Arrays;import java.util.Comparator;import java.util.List;void main() { List vals = Arrays.asList(5, -4, 0, 2, -1, 4, 7, 6, 1, -1, 3, 8, -2); vals.sort(Comparator.naturalOrder()); System.out.println(vals); vals.sort(Comparator.reverseOrder()); System.out.println(vals);}The integers are sorted in ascending and descending orders. The data is sorted in-place; i.e. the original list is modified.$ java Main.java[-4, -2, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8][8, 7, 6, 5, 4, 3, 2, 1, 0, -1, -1, -2, -4]In the next example, we do not modify the original source of data.Main.java import java.util.Arrays;import java.util.Comparator;import java.util.List;void main() { List vals = Arrays.asList(5, -4, 0, 2, -1, 4, 7, 6, 1, -1, 3, 8, -2); System.out.println("Ascending order"); var sorted1 = vals.stream().sorted().toList(); System.out.println(sorted1); System.out.println("-------------------------------"); System.out.println("Descending order"); var sorted2 = vals.stream().sorted(Comparator.reverseOrder()).toList(); System.out.println(sorted2); System.out.println("-------------------------------"); System.out.println("Original order"); System.out.println(vals);}We sort integers with Stream.sorted. The original source is intact.$ java Main.java Ascending order[-4, -2, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8]-------------------------------Descending order[8, 7, 6, 5, 4, 3, 2, 1, 0, -1, -1, -2, -4]-------------------------------Original order[5, -4, 0, 2, -1, 4, 7, 6, 1, -1, 3, 8, -2]Java sort list of stringsThe following example sorts strings.Main.java import java.util.Comparator;import java.util.List;void main() { var words = List.of("sky", "cloud", "atom", "club", "carpet", "wood", "water", "silk", "bike", "falcon", "owl", "mars"); var sorted = words.stream().sorted().toList(); System.out.println(sorted); var sorted2 = words.stream().sorted(Comparator.reverseOrder()).toList(); System.out.println(sorted2);}We have a list of words. We sort them with Stream.sorted.$ java Main.java[atom, bike, carpet, cloud, club, falcon, mars, owl, silk, sky, water, wood][wood, water, sky, silk, owl, mars, falcon, club, cloud, carpet, bike, atom]Java case insensitive list sortIn the following example, we Pinned Loading An open-source emulator that targets RuneTek-5, client revision 667 (October 4th, 2011) Kotlin 38 177 The file server for tek5, an emulation of the 667 revision Kotlin 4 61 A tool that enables developers to edit the 667 cache 1 Modern deobfuscated revision 667 client Java 2 19 Repositories Showing 10 of 18 repositories game Public An open-source emulator that targets RuneTek-5, client revision 667 (October 4th, 2011) 2011Scape/game’s past year of commit activity 2011Scape/2011scape-client’s past year of commit activity Java 0 14 0 0 Updated Jan 15, 2025 2011Scape/2011Scape-Launcher’s past year of commit activity C++ 0 BSD-2-Clause 16 0 0 Updated Jan 14, 2025 2011Scape/installation-guide’s past year of commit activity 1 21 1 0 Updated Jan 5, 2025 2011Scape/.github’s past year of commit activity 0 1 0 0 Updated Jan 5, 2025 2011Scape/runetek5-client’s past year of commit activity Java 2 19 3 0 Updated Sep 20, 2024 2011scape-linux-server-management Public This repository contains a set of Bash scripts designed to simplify the management and operations of the 2011Scape game server and file server. 2011Scape/2011scape-linux-server-management’s past year of commit activity Shell 0 MIT 1 0 0 Updated Sep 13, 2024 file-server Public The file server for tek5, an emulation of the 667 revision 2011Scape/file-server’s past year of commit activity Kotlin 4 BSD-3-Clause 61 0 0 Updated Jul 12, 2024 hosting Public This repository serves as a centralized hub for hosting and managing key dependencies and plugins essential for the 2011Scape project. 2011Scape/hosting’s past year of commit activity 0 1 0 0 Updated Jun 30, 2024 rs-client Public A deobfuscated client for the 667 revision 2011Scape/rs-client’s past year of commit activity Java 7 49 1 0 Updated Feb 20, 2024java - Cron expression 0 0/30 1/1 ? not working for
Skip to content Navigation Menu GitHub Copilot Write better code with AI Security Find and fix vulnerabilities Actions Automate any workflow Codespaces Instant dev environments Issues Plan and track work Code Review Manage code changes Discussions Collaborate outside of code Code Search Find more, search less Explore Learning Pathways Events & Webinars Ebooks & Whitepapers Customer Stories Partners Executive Insights GitHub Sponsors Fund open source developers The ReadME Project GitHub community articles Enterprise platform AI-powered developer platform Pricing Provide feedback Saved searches Use saved searches to filter your results more quickly ;ref_cta:Sign up;ref_loc:header logged out"}"> Sign up Overview Repositories Projects Packages People Popular repositories Loading Terraform provider for interacting with NiFi cluster Go 51 30 Technology powering C++ to Java/C# code translation. Python 23 5 Visual Docker cluster management tool JavaScript 5 1 Glympse EnRoute SDK for Xamarin C# 5 6 Simple web app that triggers PagerDuty incidents via SMS sent to a Twilio number C# 3 1 Repositories --> Type Select type All Public Sources Forks Archived Mirrors Templates Language Select language All C# C++ Go Java JavaScript Python Swift Sort Select order Last updated Name Stars Showing 10 of 22 repositories Glympse/glympse-ios-enroute-sdk-release’s past year of commit activity 0 0 0 0 Updated Mar 11, 2025 Glympse/glympse-android-sdk-release’s past year of commit activity 1 1 0 0 Updated Mar 11, 2025 Glympse/glympse-ios-sdk-release’s past year of commit activity Swift 2 0 0 0 Updated Mar 11, 2025 Glympse/kafka-development-node’s past year of commit activity JavaScript 0 Apache-2.0 6 0 1 Updated Mar 6, 2025 Glympse/enroute-xamarin-sdk’s past year of commit activity C# 5 MIT 6 1 5 Updated Mar 5, 2025 Glympse/glympse-app-sdk’s past year of commit activity Java 9 7 1 0 Updated Jan 16, 2025 CrossCompiling Public Technology powering C++ to Java/C# code translation. Glympse/CrossCompiling’s past year of commit activity Python 23 MIT 5 0 1 Updated Nov 1, 2022 Glympse/mongo-connector’s past year of commit activity Python 0 Apache-2.0 482 0 0 Updated Feb 25, 2020 Glympse/terraform-provider-nifi’s past year of commit activity Go 51 MIT 30 6 2 Updated May 29, 2019 Glympse/migrated_easyjson’s past year of commit activity Go 0 MIT 444. Java 8 Update 341: : 0. Java 8 Update 321: : 0. Java 8 Update 311: : 1. Java 8 Update 301: : 0. Java 8 Update 20: : 0. Java 8 Update 161: : 1. Java 8 Update 151: : 6. Java 8 Update 74: : 6. Misc: : 0. Java 8 Update 5: : 1 Java 8 Update 321: : 0. Java 8 Update 311: : 1. Java 8 Update 301: : 0. Java 8 Update 20: : 0. Java 6 Update 27: : 0. Java 8 Update 161: : 1. Java 8 Update 151: : 6. Java 8 Update 74: : 6. Misc: : 0. Java 8 Update 5: : 1Renamer 5 5 0 1 - torrenttg.mystrikingly.com
Skip to content Navigation Menu GitHub Copilot Write better code with AI Security Find and fix vulnerabilities Actions Automate any workflow Codespaces Instant dev environments Issues Plan and track work Code Review Manage code changes Discussions Collaborate outside of code Code Search Find more, search less Explore Learning Pathways Events & Webinars Ebooks & Whitepapers Customer Stories Partners Executive Insights GitHub Sponsors Fund open source developers The ReadME Project GitHub community articles Enterprise platform AI-powered developer platform Pricing Provide feedback Saved searches Use saved searches to filter your results more quickly ;ref_cta:Sign up;ref_loc:header logged out"}"> Sign up Jeddict is an open source Jakarta EE application development platform that accelerates developers productivity and simplifies development tasks Overview Repositories Packages People Pinned Loading Jakarta EE 10 & MicroProfile application generator and modeler Java 395 44 Jeddict Extensions to generate Java EE application Java 9 2 Modeling framework to design visual plugin for NetBeans Java 8 4 Repositories --> Type Select type All Public Sources Forks Archived Mirrors Templates Language Select language All HTML Java Sort Select order Last updated Name Stars Showing 8 of 8 repositories jeddict/jeddict.github.io’s past year of commit activity HTML 4 Apache-2.0 0 0 0 Updated Feb 25, 2025 jeddict-ai Public Jeddict AI Assistant for Apache NetBeans IDE jeddict/jeddict-ai’s past year of commit activity Java 6 Apache-2.0 2 5 0 Updated Feb 25, 2025 jeddict Public Jakarta EE 10 & MicroProfile application generator and modeler jeddict/jeddict’s past year of commit activity Java 395 Apache-2.0 44 55 11 Updated Feb 23, 2025 hipee Public [Jeddict Extension] Angular, ReactJS & deployment templates forked from Java Hipster for Java EE application development jeddict/hipee’s past year of commit activity Java 4 Apache-2.0 1 0 2 Updated Feb 23, 2025 jeddict/jeddict-extensions’s past year of commit activity Java 9 Apache-2.0 2 1 3 Updated Feb 23, 2025 jeddict/netbeans-modeler’s past year of commit activity Java 8 Apache-2.0 4 0 1 Updated Feb 23, 2025 jeddict/jeddict-test-suite’s past year of commit activity Java 0 Apache-2.0 1 0 2 Updated Apr 28, 2021 uc Public Jeddict Update Center jeddict/uc’s past year of commit activity 1 0 1 0 Updated Dec 14, 2020 Most used topics Loading… To produce a fall-through from a non-empty 'case'. 2. Java also has a newer alternative shorter syntax not available in C#. Java C# // fall-through from a non-empty 'case': switch (someCondition) { case 1: code; case 2: code; default: code; } // short-form switch: switch (day) { case MONDAY, FRIDAY, SUNDAY -> System.out.println(6); case TUESDAY -> System.out.println(7); } // fall-through from a non-empty 'case': switch (someCondition) { case 1: code; goto case 2; case 2: code; goto default; default: code; break; } switch (day) { case MONDAY: case FRIDAY: case SUNDAY: Console.WriteLine(6); break; case TUESDAY: Console.WriteLine(7); break; } Switch Expressions Java C# public void method() { Fruit fruit = Fruit.APPLE; int numberOfLetters = switch (fruit) { case PEAR -> 4; case APPLE, MANGO -> 5; case PAPAYA -> 6; default -> 0; }; } public enum Fruit { APPLE, MANGO, PAPAYA, PEAR } public virtual void method() { Fruit fruit = Fruit.APPLE; int numberOfLetters = fruit switch { Fruit.PEAR => 4, Fruit.APPLE or Fruit.MANGO => 5, Fruit.PAPAYA => 6, _ => 0 }; } public enum Fruit { APPLE, MANGO, PAPAYA, PEAR } 'synchronized' (Java) and 'lock' (C#) Java C# synchronized (x) { ... } lock (x) { ... } Type Discovery (Java 'instanceof'/'class' and C# 'is'/'typeof') Java C# boolean b = f instanceof Foo; Class t = w.class; bool b = f is Foo; Type t = typeof(w); 'using' (C#) and 'try-with-resources' (Java) The C# 'using' statement (not the C# 'using' directive) is a shortcut for a try/finally blockJava 5 0 download - Java PDF Library - Java PDF SDK for Java
App on Google Play.Alias: @Julie Virtual AssistantCatégories: Friends, AppsTags: assistant, mobile, virtual assistant, android, julie, apps, personal assistantCréé: Dec 8 2016, by: adminThumbs up: 42, les pouces vers le bas: 13, les étoiles: 4.27Chat Bot Wars: rank 21, wins 30, losses 19Knowledge: 339000 objectsSe connecte: 1152040, aujourd'hui: 1, semaine: 20, mois: 68Dernière Connecter: Today, 11:11English TutorYour virtual English tutor. This bot teaches English as a second language to adults and students.Alias: @englishtutorCatégories: EducationTags: education, english, tutorCréé: Feb 5 2019, by: adminThumbs up: 7, les pouces vers le bas: 0, les étoiles: 5.0Chat Bot Wars: rank 6, wins 6, losses 4Knowledge: 96075 objectsSe connecte: 33691, aujourd'hui: 0, semaine: 22, mois: 68Dernière Connecter: Yesterday, 7:08Java BotA bot for the Java Persistence Performance blog. The Java Bot knows a lot about Java programming, Java persistence, JPA, EclipseLink, Moxy, XML, performance, databases, and enterprise software development.Alias: @javabotCatégories: TechTags: java, persistence, performance, jpa, eclipselink, database, oracle, nosql, xmlCréé: May 24 2014, by: jamesssssThumbs up: 2, les pouces vers le bas: 1, les étoiles: 4.0Chat Bot Wars: rank 1, wins 2, losses 12Knowledge: 95000 objectsSe connecte: 12249, aujourd'hui: 2, semaine: 8, mois: 52Dernière Connecter: Today, 11:04Music Streaming BotThis is a bot designed to assist consumers with a music streaming service. The user can find music and information about pricing and plans for subscription. As well, this bot allows users to stream music radio stations.This bot uses commands to play music and requires the embed webpage has code to receive the command and stream the music.For an example see, music stations can be found here: @musicstreamingbotCatégories: Business, WebTags: musicCréé: Dec 17 2020, by: adminThumbs up: 1, les pouces vers le bas: 0, les étoiles: 5.0Chat Bot Wars: rank 1, wins 1, losses 0Knowledge: 34029 objectsSe connecte: 4793, aujourd'hui: 1, semaine: 19, mois: 52Dernière Connecter: Today, 5:06RosieRosie isAndroid Data Recovery 5 1 0 0
Skip to content Navigation Menu GitHub Copilot Write better code with AI Security Find and fix vulnerabilities Actions Automate any workflow Codespaces Instant dev environments Issues Plan and track work Code Review Manage code changes Discussions Collaborate outside of code Code Search Find more, search less Explore Learning Pathways Events & Webinars Ebooks & Whitepapers Customer Stories Partners Executive Insights GitHub Sponsors Fund open source developers The ReadME Project GitHub community articles Enterprise platform AI-powered developer platform Pricing Provide feedback Saved searches Use saved searches to filter your results more quickly ;ref_cta:Sign up;ref_loc:header logged out"}"> Sign up Our products help Java teams improve productivity & efficiency – resulting in better code, happy devs, and more reliable releases. Overview Repositories Projects Packages People Pinned Loading ZeroTurnaround ZIP Library Java 1.4k 252 ZeroTurnaround Process Executor Java 890 110 The plugin generates rebel.xml configuration file for the Gradle-based project Java 50 7 ZeroTurnaround Process Killer Java 130 26 Generates rebel.xml configuration file for the maven project Java 51 23 Repositories --> Type Select type All Public Sources Forks Archived Mirrors Templates Language Select language All Dockerfile Go Java JavaScript PHP Python Ruby Shell Sort Select order Last updated Name Stars Showing 10 of 47 repositories gradle-jrebel-plugin Public The plugin generates rebel.xml configuration file for the Gradle-based project zeroturnaround/gradle-jrebel-plugin’s past year of commit activity Java 50 7 0 0 Updated Jan 6, 2025 zeroturnaround/maven-jrebel-plugin’s past year of commit activity Java 51 Apache-2.0 23 2 2 Updated Nov 19, 2024 zt-zip Public ZeroTurnaround ZIP Library zeroturnaround/zt-zip’s past year of commit activity zt-exec Public ZeroTurnaround Process Executor zeroturnaround/zt-exec’s past year of commit activity Java 890 Apache-2.0 110 9 0 Updated Mar 15, 2024 zeroturnaround/zt-process-killer’s past year of commit activity Java 130 Apache-2.0 26 7 1 Updated Dec 5, 2023 zeroturnaround/zt-react-components’s past year of commit activity JavaScript 1 Apache-2.0 2 0 16 Updated Jul 11, 2023 zeroturnaround/zt-hock’s past year of commit activity JavaScript 4 MIT 2 1 13 Updated Jan 3, 2023 zeroturnaround/netbeans-jrebel-open-plugin’s past year of commit activity Java 2 MIT 0 0 0 Updated Sep 16, 2021 zeroturnaround/stardate-converter’s past year of commit activity JavaScript 19 MIT 6 0 2 Updated Apr 3, 2021 zeroturnaround/spring-petclinic-microservices’s past year of commit activity People This organization has no public members. You must be a member to see who’s a part of this organization. Most used topics Loading…. Java 8 Update 341: : 0. Java 8 Update 321: : 0. Java 8 Update 311: : 1. Java 8 Update 301: : 0. Java 8 Update 20: : 0. Java 8 Update 161: : 1. Java 8 Update 151: : 6. Java 8 Update 74: : 6. Misc: : 0. Java 8 Update 5: : 1 Java 8 Update 321: : 0. Java 8 Update 311: : 1. Java 8 Update 301: : 0. Java 8 Update 20: : 0. Java 6 Update 27: : 0. Java 8 Update 161: : 1. Java 8 Update 151: : 6. Java 8 Update 74: : 6. Misc: : 0. Java 8 Update 5: : 1Download streamwriter 5 5 1 0 build 806 5 5 1 0 build vectors free
Skip to content Navigation Menu GitHub Copilot Write better code with AI Security Find and fix vulnerabilities Actions Automate any workflow Codespaces Instant dev environments Issues Plan and track work Code Review Manage code changes Discussions Collaborate outside of code Code Search Find more, search less Explore Learning Pathways Events & Webinars Ebooks & Whitepapers Customer Stories Partners Executive Insights GitHub Sponsors Fund open source developers The ReadME Project GitHub community articles Enterprise platform AI-powered developer platform Pricing Provide feedback Saved searches Use saved searches to filter your results more quickly ;ref_cta:Sign up;ref_loc:header logged out"}"> Sign up View OpenOffice and LibreOffice documents on the go. Now available for Android and iOS! Overview Repositories Projects Packages People Sponsoring Pinned Loading It's Android's first OpenOffice Document Reader! HTML 294 37 It's Android's first OpenOffice Document Reader... for iOS! Swift 13 5 C++ library that translates office documents to HTML C++ 24 9 pdf2htmlEX library port for Android - Convert PDF to HTML without losing text or format Java 32 11 Repositories --> Type Select type All Public Sources Forks Archived Mirrors Templates Language Select language All C C++ CSS HTML Java JavaScript Kotlin Python Swift Sort Select order Last updated Name Stars Showing 10 of 20 repositories opendocument-app/ConanAndroidGradlePlugin’s past year of commit activity Kotlin 3 0 1 2 Updated Mar 20, 2025 opendocument-app/OpenDocument.core’s past year of commit activity opendocument-app/OpenDocument.js’s past year of commit activity JavaScript 0 0 0 0 Updated Feb 17, 2025 opendocument-app/OpenDocument.droid’s past year of commit activity OpenDocument.ios Public It's Android's first OpenOffice Document Reader... for iOS! opendocument-app/OpenDocument.ios’s past year of commit activity Swift 13 GPL-2.0 5 8 2 Updated Feb 6, 2025 opendocument-app/conan-odr-index’s past year of commit activity Python 2 1 4 0 Updated Feb 3, 2025 opendocument-app/OpenDocument.test.output’s past year of commit activity HTML 0 0 2 0 Updated Jan 6, 2025 opendocument-app/pdf2htmlEX’s past year of commit activity HTML 0 483 0 1 Updated Jan 5, 2025 wvWare-Android Public wvWare (wvHtml) library port for Android - library to load and parse Word 2000, 97, 95 and 6 files opendocument-app/wvWare-Android’s past year of commit activity Java 7 GPL-3.0 2 3 2 Updated Nov 1, 2024 pdf2htmlEX-Android Public pdf2htmlEX library port for Android - Convert PDF to HTML without losing text or format opendocument-app/pdf2htmlEX-Android’s past year of commit activity Java 32 GPL-3.0 11 13 2 Updated Oct 31, 2024 Most used topics Loading…Comments
Sorted according to the providedComparator. For ordered streams, the sort is stable. For unorderedstreams, no stability guarantees are made. The method does not modify theoriginal list; it returns a new sorted stream/list.Java sort list of integersIn the following example, we sort a list of integers.Main.java import java.util.Arrays;import java.util.Comparator;import java.util.List;void main() { List vals = Arrays.asList(5, -4, 0, 2, -1, 4, 7, 6, 1, -1, 3, 8, -2); vals.sort(Comparator.naturalOrder()); System.out.println(vals); vals.sort(Comparator.reverseOrder()); System.out.println(vals);}The integers are sorted in ascending and descending orders. The data is sorted in-place; i.e. the original list is modified.$ java Main.java[-4, -2, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8][8, 7, 6, 5, 4, 3, 2, 1, 0, -1, -1, -2, -4]In the next example, we do not modify the original source of data.Main.java import java.util.Arrays;import java.util.Comparator;import java.util.List;void main() { List vals = Arrays.asList(5, -4, 0, 2, -1, 4, 7, 6, 1, -1, 3, 8, -2); System.out.println("Ascending order"); var sorted1 = vals.stream().sorted().toList(); System.out.println(sorted1); System.out.println("-------------------------------"); System.out.println("Descending order"); var sorted2 = vals.stream().sorted(Comparator.reverseOrder()).toList(); System.out.println(sorted2); System.out.println("-------------------------------"); System.out.println("Original order"); System.out.println(vals);}We sort integers with Stream.sorted. The original source is intact.$ java Main.java Ascending order[-4, -2, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8]-------------------------------Descending order[8, 7, 6, 5, 4, 3, 2, 1, 0, -1, -1, -2, -4]-------------------------------Original order[5, -4, 0, 2, -1, 4, 7, 6, 1, -1, 3, 8, -2]Java sort list of stringsThe following example sorts strings.Main.java import java.util.Comparator;import java.util.List;void main() { var words = List.of("sky", "cloud", "atom", "club", "carpet", "wood", "water", "silk", "bike", "falcon", "owl", "mars"); var sorted = words.stream().sorted().toList(); System.out.println(sorted); var sorted2 = words.stream().sorted(Comparator.reverseOrder()).toList(); System.out.println(sorted2);}We have a list of words. We sort them with Stream.sorted.$ java Main.java[atom, bike, carpet, cloud, club, falcon, mars, owl, silk, sky, water, wood][wood, water, sky, silk, owl, mars, falcon, club, cloud, carpet, bike, atom]Java case insensitive list sortIn the following example, we
2025-03-26Pinned Loading An open-source emulator that targets RuneTek-5, client revision 667 (October 4th, 2011) Kotlin 38 177 The file server for tek5, an emulation of the 667 revision Kotlin 4 61 A tool that enables developers to edit the 667 cache 1 Modern deobfuscated revision 667 client Java 2 19 Repositories Showing 10 of 18 repositories game Public An open-source emulator that targets RuneTek-5, client revision 667 (October 4th, 2011) 2011Scape/game’s past year of commit activity 2011Scape/2011scape-client’s past year of commit activity Java 0 14 0 0 Updated Jan 15, 2025 2011Scape/2011Scape-Launcher’s past year of commit activity C++ 0 BSD-2-Clause 16 0 0 Updated Jan 14, 2025 2011Scape/installation-guide’s past year of commit activity 1 21 1 0 Updated Jan 5, 2025 2011Scape/.github’s past year of commit activity 0 1 0 0 Updated Jan 5, 2025 2011Scape/runetek5-client’s past year of commit activity Java 2 19 3 0 Updated Sep 20, 2024 2011scape-linux-server-management Public This repository contains a set of Bash scripts designed to simplify the management and operations of the 2011Scape game server and file server. 2011Scape/2011scape-linux-server-management’s past year of commit activity Shell 0 MIT 1 0 0 Updated Sep 13, 2024 file-server Public The file server for tek5, an emulation of the 667 revision 2011Scape/file-server’s past year of commit activity Kotlin 4 BSD-3-Clause 61 0 0 Updated Jul 12, 2024 hosting Public This repository serves as a centralized hub for hosting and managing key dependencies and plugins essential for the 2011Scape project. 2011Scape/hosting’s past year of commit activity 0 1 0 0 Updated Jun 30, 2024 rs-client Public A deobfuscated client for the 667 revision 2011Scape/rs-client’s past year of commit activity Java 7 49 1 0 Updated Feb 20, 2024
2025-04-15Skip to content Navigation Menu GitHub Copilot Write better code with AI Security Find and fix vulnerabilities Actions Automate any workflow Codespaces Instant dev environments Issues Plan and track work Code Review Manage code changes Discussions Collaborate outside of code Code Search Find more, search less Explore Learning Pathways Events & Webinars Ebooks & Whitepapers Customer Stories Partners Executive Insights GitHub Sponsors Fund open source developers The ReadME Project GitHub community articles Enterprise platform AI-powered developer platform Pricing Provide feedback Saved searches Use saved searches to filter your results more quickly ;ref_cta:Sign up;ref_loc:header logged out"}"> Sign up Overview Repositories Projects Packages People Popular repositories Loading Terraform provider for interacting with NiFi cluster Go 51 30 Technology powering C++ to Java/C# code translation. Python 23 5 Visual Docker cluster management tool JavaScript 5 1 Glympse EnRoute SDK for Xamarin C# 5 6 Simple web app that triggers PagerDuty incidents via SMS sent to a Twilio number C# 3 1 Repositories --> Type Select type All Public Sources Forks Archived Mirrors Templates Language Select language All C# C++ Go Java JavaScript Python Swift Sort Select order Last updated Name Stars Showing 10 of 22 repositories Glympse/glympse-ios-enroute-sdk-release’s past year of commit activity 0 0 0 0 Updated Mar 11, 2025 Glympse/glympse-android-sdk-release’s past year of commit activity 1 1 0 0 Updated Mar 11, 2025 Glympse/glympse-ios-sdk-release’s past year of commit activity Swift 2 0 0 0 Updated Mar 11, 2025 Glympse/kafka-development-node’s past year of commit activity JavaScript 0 Apache-2.0 6 0 1 Updated Mar 6, 2025 Glympse/enroute-xamarin-sdk’s past year of commit activity C# 5 MIT 6 1 5 Updated Mar 5, 2025 Glympse/glympse-app-sdk’s past year of commit activity Java 9 7 1 0 Updated Jan 16, 2025 CrossCompiling Public Technology powering C++ to Java/C# code translation. Glympse/CrossCompiling’s past year of commit activity Python 23 MIT 5 0 1 Updated Nov 1, 2022 Glympse/mongo-connector’s past year of commit activity Python 0 Apache-2.0 482 0 0 Updated Feb 25, 2020 Glympse/terraform-provider-nifi’s past year of commit activity Go 51 MIT 30 6 2 Updated May 29, 2019 Glympse/migrated_easyjson’s past year of commit activity Go 0 MIT 444
2025-04-13