IRC client | unique | total | multiple |
---|---|---|---|
Shout | 2327 | 3819 | 1492 |
HexChat | 1177 | 1705 | 528 |
Slate | 1174 | 2018 | 844 |
Irssi | 1127 | 1686 | 559 |
The Lounge | 1073 | 1708 | 635 |
Komanda | 1016 | 1829 | 813 |
Textual | 1009 | 1513 | 504 |
Subway | 869 | 1536 | 667 |
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
HashMap<UUID,Location> stands = new HashMap<UUID, Location>(); | |
double particleHeight = 1.5; | |
public void onEnable() { | |
getServer().getPluginManager().registerEvents(this, this); | |
Bukkit.getScheduler().scheduleSyncRepeatingTask(this, new Runnable() { | |
@Override | |
public void run() { |
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
use Irssi; | |
use strict; | |
use FileHandle; | |
use vars qw($VERSION %IRSSI); | |
$VERSION = "0.9.8.1 - 1.0"; | |
%IRSSI = ( | |
authors => 'Phoenix616 <[email protected]>, Andreas \'ads\' Scherbaum <[email protected]>', | |
name => 'proxy_and_screen_away', |
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 com.sk89q.worldguard.LocalPlayer; | |
import com.sk89q.worldguard.bukkit.RegionContainer; | |
import com.sk89q.worldguard.bukkit.RegionQuery; | |
import com.sk89q.worldguard.bukkit.WGBukkit; | |
import com.sk89q.worldguard.bukkit.util.Materials; | |
import com.sk89q.worldguard.protection.flags.DefaultFlag; | |
import com.sk89q.worldguard.protection.flags.StateFlag; | |
import org.bukkit.entity.LivingEntity; | |
import org.bukkit.entity.Player; |
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
/* | |
* TranslationMapping is an util for mapping pre 1.13 Bukkit materials to | |
* the language keys of minecraft items in the language files of the client | |
* | |
* Licensed under the following (MIT) license: | |
* | |
* Copyright (C) 2018 Max Lee (https://github.com/Phoenix616) | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal |
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
/* | |
* Copyright (C) 2012 | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: | |
* |
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 de.themoep.utils; | |
/* | |
* IconRpMapping utils for mapping of Bukkit materials to WolfieMario's | |
* Custom Text Icons Resourcepack (https://s.moep.tv/iconrp) | |
* Copyright (C) 2018 Max Lee aka Phoenix616 ([email protected]) | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or |
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
importPackage(Packages.com.sk89q.worldedit); | |
importPackage(Packages.com.sk89q.worldedit.blocks); | |
function main() { | |
context.checkArgs(1, -1, "<regex>"); | |
var regexString = argv[1]; | |
for (var i = 2; i < argv.length; i++) { | |
regexString += " " + argv[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
; Switch Sound Device by Phoenix616 | |
; Based on work by fohrums: | |
; https://autohotkey.com/board/topic/68257-toggle-set-default-audio-device-in-windows-7/page-2#entry632858) | |
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
#Warn ; Recommended for catching common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
nirSoundVolumeViewPath := "D:\Programme\NirSoftPackage\NirSoft\SoundVolumeView.exe" |
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
echo "File: unique (total - duplicate)" | |
for file in "$@"; do | |
for compare in "$@"; do | |
if [ "$file" == "$compare" ]; then | |
continue; | |
fi; | |
cat $compare >> /tmp/get_unique_line_count-others.txt | |
done; | |
lines=$(cat $file | wc -l) | |
duplicate=$(comm -12 <( sort $file ) <( sort /tmp/get_unique_line_count-others.txt ) | wc -l) |
OlderNewer