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
/** | |
* DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
* Version 2, December 2004 | |
* | |
* Everyone is permitted to copy and distribute verbatim or modified | |
* copies of this license document, and changing it is allowed as long | |
* as the name is changed. | |
* | |
* DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
* TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION |
This file has been truncated, but you can view the full file.
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
-- Logs begin at Sun 2018-06-17 14:00:53 BST, end at Mon 2019-01-14 23:28:29 GMT. -- | |
Jan 14 14:50:44 mew kernel: Linux version 4.18.16-arch1-1-ARCH (builduser@heftig-28760) (gcc version 8.2.1 20180831 (GCC)) #1 SMP PREEMPT Sat Oct 20 22:06:45 UTC 2018 | |
Jan 14 14:50:44 mew kernel: Command line: initrd=\initramfs-linux.img root=PARTUUID=98e450f7-682d-4fae-a7e2-39d12b233677 rw | |
Jan 14 14:50:44 mew kernel: KERNEL supported cpus: | |
Jan 14 14:50:44 mew kernel: Intel GenuineIntel | |
Jan 14 14:50:44 mew kernel: AMD AuthenticAMD | |
Jan 14 14:50:44 mew kernel: Centaur CentaurHauls | |
Jan 14 14:50:44 mew kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' | |
Jan 14 14:50:44 mew kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' | |
Jan 14 14:50:44 mew kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' |
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
if (!document.querySelectorAll) { | |
document.querySelector = function(selector) { | |
return document.querySelectorAll(selector)[0]; | |
} | |
document.querySelectorAll = function(selector) { | |
if (document.__querySelectorAllStylesheet === undefined) { | |
document.__querySelectorAllStylesheet = document.createStyleSheet(); | |
} |
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
package | |
{ | |
import flash.display.Sprite; | |
import flash.events.Event; | |
import flash.text.TextField; | |
import flash.geom.ColorTransform; | |
import flash.geom.Transform; | |
import flash.display.Shape; | |
import flash.events.MouseEvent; | |
import flash.events.KeyboardEvent; |
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
HELLO |
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
package | |
{ | |
import flash.display.Shape; | |
import flash.display.Sprite; | |
import flash.display.StageAlign; | |
import flash.display.StageScaleMode; | |
import org.stylekit.css.value.BorderCompoundValue; | |
import org.stylekit.css.value.ColorValue; | |
import org.stylekit.css.value.LineStyleValue; |
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
[Debug] Resetting the DrawingBoard and Canvas state on '[object DrawingBoard]' | |
[Info] About to change playback state to playbackPaused. on '[object Viewport]' | |
[Info] Playback state changed to PLAYBACK_PAUSED. on '[object Viewport]' | |
[Info] About to refresh with remote URL: http://sixty.im/demo.smil?v=0.010745052713900805 on '[object Viewport]' | |
[SWF] Users:sixones:Documents:Adobe Flash Builder 4:smilkit-demo:bin-debug:Main.swf - 257,810 bytes after decompression | |
[Debug] Heartbeat resetting. on '[object Heartbeat]' | |
[Debug] Removed drawn regions on '[object DrawingBoard]' | |
[Debug] Resetting the DrawingBoard and Canvas state on '[object DrawingBoard]' | |
[Debug] Re-drawn 1 regions to the DrawingBoard's Canvas on '[object DrawingBoard]' | |
[Debug] Handler added to RenderTree during update at 0ms on '[object HTTPVideoHandler]' |
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
#include <stdio.h> | |
#include <stdlib.h> | |
int main() | |
{ | |
FILE *file; | |
long size; | |
char *buffer; | |
size_t data; |
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
# | |
# RFC822 compliant regexp for email address validation | |
# | |
module Validator | |
def self.valid_email_address?(email) | |
email =~ /(?:(?:\r\n)?[ \t])*(?:(?:(?:[^()@,;:\\".\[\] 00-31]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()@,;:\\".\[\]]))|”(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*”(?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()@,;:\\".\[\] 00-31]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()@,;:\\".\[\]]))|”(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[\t]))*”(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*(?:[^()@,;:\\".\[\] 00-31]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()@,;:\\".\[\] 00-31]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*|(?:[^()@,;:\\".\[\] 00-31]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()@,;:\\".\[\]]))|”(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*”(?:(?:\r\n)?[ \t])*)*\<(?:(?:\r\n)?[ \t])*(?:@(?:[^()@,;:\\".\[\] 00-31]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[\t])*)(? |
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
Index: Portfile | |
=================================================================== | |
--- Portfile (revision 53834) | |
+++ Portfile (working copy) | |
@@ -38,6 +38,14 @@ | |
configure.args --enable-shared \ | |
--mandir=${prefix}/share/man | |
+platform darwin 10 { | |
+ set build_arch i386 |
NewerOlder