Skip to content

Instantly share code, notes, and snippets.

@TheMolkaPL
TheMolkaPL / przekrój-poprzeczny.txt
Last active August 13, 2020 14:11
Dworzec Centralny
_______________________________________________________________________________________________________________________________________________________________________________
\____ ____/
.. ‾‾‾‾‾——————_____ _____——————‾‾‾‾‾ ..
|| ‾‾‾‾———___ ______————————‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾————————______ ___———‾‾‾‾ ||
|| ‾‾‾———__ _______ __———‾‾‾‾ |
@TheMolkaPL
TheMolkaPL / README.md
Created November 30, 2017 19:22 — forked from nikcub/README.md
Facebook PHP Source Code from August 2007
@TheMolkaPL
TheMolkaPL / Bukkit Entity Spawning.md
Last active November 27, 2017 18:59 — forked from tonybruess/Bukkit Entity Spawning.md
Bukkit Entity Spawning

Entities that work:

  • Arrow
  • Bat
  • Blaze
  • Boat bow charge has no effect, always spawns on player head
  • CaveSpider
  • Chicken
  • Cow
  • Creeper
  • Egg
class overcast::mongobackup {
file { '/root/mongo-backup':
source => 'puppet:///modules/overcast/mongo-backup',
mode => 0755,
}
cron { 'daily mongo backup':
command => '/root/mongo-backup',
user => 'root',
hour => 4,
@TheMolkaPL
TheMolkaPL / 00.md
Created March 14, 2017 15:50 — forked from tonybruess/00 Common App and Stanford Essays.md
Common App & Stanford Essays

Common App & Stanford Essays

The following are my responses to the main Common App essay and the Stanford application questions. You're welcome to read them to try and understand how I got "in" to Stanford, or just for fun. Whatever you choose to try and take away from these essays, I hope you get something out of them. Or nothing at all, that works too. Enjoy.

A Brief Note

There's no secret formula. There are a lot of people more qualified than me that got denied. Even though they may have been more qualified, I beat them when it came to the essays. The most important part of your application is your essays, so I would encourage you to spend a lot of time on them. Spend time reflecting on who you are and how you can use your essays to communicate that. The readers of the over 40,000 Stanford applicants know a fake essay from a mile away. If you want to have a chance at admission, your essays need to be 100% authentic you, not 90% authentic you and 10% your mom/tutor/fake self.

If you plan to apply, I

@TheMolkaPL
TheMolkaPL / Skin.php
Created February 3, 2017 20:16 — forked from tonybruess/Skin.php
avatar.oc.tc
<?php
class Skin {
public static function get($username) {
$steve = in_array(strtolower($username), array("steve", "player", "default"));
if(!$steve) $contents = self::fetch('http://skins.minecraft.net/MinecraftSkins/' . $username . '.png');
$defaultImage = WideImage::load("char.png");
$defaultType = "image/png";
if ($steve || $contents === false) {
$img = $defaultImage;
@TheMolkaPL
TheMolkaPL / quotes.txt
Last active July 22, 2017 13:25
Janusz Korwin-Mikke Official Quotes
Jestem za wejściem do strefy wolnego handlu! Tylko że UE nie jest taką strefą, a strefą szalejącej biurokracji...
Blokady? Jakie blokady? Za mojej władzy żadna nie utrzymałaby się dłużej jak 5 minut. Blokadę bym rozwalił, chłopom poobijał mordy, a ciągniki spalił!...
Każdy socjalizm - z euro socjalizmem włącznie - to ustrój niewolniczy - a ustrój niewolniczy jest gospodarczo niewydajny...
Co za różnica, czy Europą będzie socjalistyczny matoł z Niemiec, czy z Polski? Socjalista - to socjalista...
Należy zlikwidować obowiązkową słubę wojskową. Ludzi, którzy nie chcą być piekarzami, nie bierze się do piekarni...
Cywilizacja się rozwija gdy śpiewa się o królach, rycerzach, podbojach kosmosu. A gdy cywilizacja upadata, to się śpiewa o menelach, zbrodniarzach, mordercach...
Człowiek który zajmuje się dopłacaniem do eksportu, jest po prostu sabotażystą i należy go w gruncie rzeczy rozstrzelać za sabotaż gospodarczy!...
Dyktator sam się wyłania i jeśli jest dobry, to zakłada dynastię, a jeśli jest zły, to kończy jak
<map proto="1.4.0">
<name>Propulsion</name>
<version>1.0.0</version>
<objective>Blast all the other players into the void!</objective>
<!-- Map authors & contributors. -->
<authors>
<author>newnewfew</author>
<author uuid="97a0421a-068c-48d2-a92e-5b6d57c5d803"/>
</authors>
<!-- Map modules, i.e. objectives, regions, spawns. -->
@TheMolkaPL
TheMolkaPL / commands.yml
Created June 5, 2014 16:33
Polish aliases for OpenGuild2047
commands:
accept: true
admin: true
ally: true
create: true
description: true
disband: true
enemy: true
expand: true
home: true
@TheMolkaPL
TheMolkaPL / Teleport.java
Created January 12, 2014 13:20
Teleport a player (to player)
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
public class Teleport implements CommandExecutor {
@Override