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
$ 1 5.0E-6 10.20027730826997 43 5.0 43 | |
r 320 112 320 192 0 40.0 | |
r 512 112 512 192 0 40.0 | |
t 256 272 288 272 0 1 0.5075509036351608 0.700766219951909 100.0 | |
t 256 336 336 336 0 1 0.5075509036351608 0.700766219951909 100.0 | |
t 448 272 480 272 0 1 0.5075509036351208 0.700766219951909 100.0 | |
t 448 336 528 336 0 1 0.5075509036351208 0.700766219951909 100.0 | |
w 320 192 288 192 0 | |
w 288 192 288 256 0 | |
w 320 192 336 192 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
<Profile name="User" version="3"> | |
<ActionSet name="Generic"> | |
<Action name="StartChatText"> | |
<Trigger>Return</Trigger> | |
</Action> | |
<Action name="Reply"> | |
<Trigger>Backspace</Trigger> | |
</Action> | |
<Action name="TogglePerformance"> | |
<Trigger>Alt+U</Trigger> |
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
#version 400 core | |
#extension GL_ARB_gup_shader_fp64 : enable | |
in vec2 txcoords; | |
uniform double zoom; | |
uniform dvec2 offset; | |
out vec4 fragColor; | |
uniform int iter; | |
uniform sampler1D palette; |
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
#version 400 core | |
#extension GL_ARB_gup_shader_fp64 : enable | |
in vec2 txcoords; | |
uniform double zoom; | |
uniform dvec2 offset; | |
out vec4 fragColor; | |
uniform int iter; | |
uniform sampler1D palette; |
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 sys | |
class IndentOutput: | |
def __init__(self, backend): | |
self.level = 0 | |
self.backend = backend | |
self.buffer = "" | |
def indent(self): | |
self.level += 1 | |
def dedent(self): |
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
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEArWd8DrlRZo1L6e/lhaQ5OHG6UP4zgA4XaG2FeRg3MHabe2VR/S++BojVbQ8PXcZ4CNVuPbTxCIPCJnh0qvysZiODp4Q7kY+xYeo/hzBFqeMGHtLxz1sOxdHkMBwjpvaKAc9/0unQYXceuiJbxKElapORJ6BZeaXPBnV2VrIUrMts9ULlvVdcY5RZa1Gd1bkiyr/GlPxUeaGjtHFXtpTWI33nQ3a8V+2lQIF8sQzYz3d1Ef4yUPNELMALsY/McBumSFsEWE0+LFZmemEhgGPiRu3svN/Dbx9wy6/0Ouhb0YxertEz2zW6lqVPRtUPZ8AmpDESfxACXJlm6DUVRTXJ9w== [email protected] |
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
#!/usr/bin/python2 | |
import sys | |
sys.path += ["../../"] | |
from PIL import Image | |
from math import log, ceil | |
import os | |
from overviewer_core.dispatcher import MultiprocessingDispatcher | |
from overviewer_core.observer import ProgressBarObserver |
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
/******************************************************************************* | |
**3456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 | |
** 10 20 30 40 50 60 70 80 | |
** | |
** program: | |
** rgba-glx | |
** | |
** author: | |
** Mirco "MacSlow" Mueller <[email protected]> | |
** |
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 "oil.h" | |
#include <math.h> | |
#include <stdlib.h> | |
#include <string.h> | |
/* swaps two float * variables */ | |
#define SWAP_ROWS(a, b) { float *_tmp = (a); (a) = (b); (b) = _tmp; } | |
static float identity[4][4] = {{1.0f, 0.0f, 0.0f, 0.0f}, |
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
# synchronizing the home directory | |
root = /home/agrif | |
root = ssh://jad.gammalevel.com//home/agrif | |
#root = ssh://jad//home/agrif | |
# by default, sync all paths | |
# log all actions | |
log = true |