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
<div class="box_default right" style="width: 290px; height: 250px;"> | |
<div class="box_title"> | |
<div class="bt_header bth_fixed" style="background: | |
#9c110c; color: #fff; "><a style="color: #fff;" target="_blank" | |
href="http://www.hatharom.hu">Hathárom.hu</a> - <a style="color: | |
#fff;" target="_blank" href="http://63.hu/">63.hu</a> - | |
Sporthírek</div> | |
<div class="bt_arrow "></div> | |
</div> | |
<div class="box_default_content"></div> |
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
var Base = {} | |
Object.defineProperty(Base, 'extend', { | |
enumerable: false, | |
value: function(obj) { | |
var descs = {} | |
Object.getOwnPropertyNames(obj).forEach(function(key) { | |
descs[key] = Object.getOwnPropertyDescriptor(obj, key) | |
}) | |
return Object.create(this, descs) |
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
"use strict"; | |
var z,y,i; | |
var i =-100; | |
function Obiekt(z,y,t,iddiv) { | |
var self = this; | |
self.ruch = function() { | |
++i; | |
$(iddiv).css('left', ($("#punkt").position().left)+i);//I want send var. indiv in place on orbita1 | |
$(iddiv).css('top', ($("#punkt").position().top) + (Math.round(Math.sqrt((1-Math.pow(i,2)/Math.pow(z,2))*Math.pow(y,2)))));//I want send var. indiv in place on orbita1 | |
} |
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
<script src="http://code.jquery.com/jquery-latest.js"></script> | |
<script type="text/javascript"> | |
//$(document).ready(function(){ | |
var context; | |
var dx= 4; | |
var dy=4; | |
var y=150; | |
var x=10; | |
var rightDown = false; | |
var leftDown = false; |
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
#Debian default list | |
deb http://ftp.de.debian.org/debian stable main contrib non-free security updates | |
deb-src http://ftp.de.debian.org/debian stable main contrib non-free security updates | |
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
26504: | |
26504: file=libpthread.so.0 [0]; needed by firefox [0] | |
26504: file=libpthread.so.0 [0]; generating link map | |
26504: dynamic: 0xb7749e98 base: 0xb7732000 size: 0x0001a1fc | |
26504: entry: 0xb7737b30 phdr: 0xb7732034 phnum: 9 | |
26504: | |
26504: | |
26504: file=libdl.so.2 [0]; needed by firefox [0] | |
26504: file=libdl.so.2 [0]; generating link map | |
26504: dynamic: 0xb7730eb8 base: 0xb772d000 size: 0x00004074 |
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
[ashnur@myhost ../frontend]$ make --debug | |
GNU Make 3.82 | |
Built for i686-pc-linux-gnu | |
Copyright (C) 2010 Free Software Foundation, Inc. | |
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> | |
This is free software: you are free to change and redistribute it. | |
There is NO WARRANTY, to the extent permitted by law. | |
Reading makefiles... | |
Updating goal targets.... | |
File `all' does not exist. |
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
#! /bin/sh | |
# ------------------------------------------------------------------------------ | |
# SOME INFOS : fairly standard (debian) init script. | |
# Note that node doesn't create a PID file (hence --make-pidfile) | |
# has to be run in the background (hence --background) | |
# and NOT as root (hence --chuid) | |
# | |
# MORE INFOS : INIT SCRIPT http://www.debian.org/doc/debian-policy/ch-opersys.html#s-sysvinit | |
# INIT-INFO RULES http://wiki.debian.org/LSBInitScripts | |
# INSTALL/REMOVE http://www.debian-administration.org/articles/28 |
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
#!upstart | |
description "APPNAME node.js server" | |
author "Shimon Doodkin" | |
# license: public domain | |
start on runlevel [2345] | |
stop on runlevel [06] | |
#pre-start script | |
# exec touch /var/log/APPNAME.nodejs.log |
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
server.coffee server.js X | |
fs = require('fs'); | |
ecstatic = (require('ecstatic'))(__dirname); | |
uri = require('URIjs'); | |
async = require('async'); |
OlderNewer