ø bin .net Home Download 0bin Faq Contact "A client side encrypted PasteBin" All pastes are AES256 encrypted, we cannot know what you paste... /.nav-collapse This pastebin uses client-side encryption. Therefore, it needs JavaScript enabled. It seems like your browser doesn't have JavaScript enable. Please enable JavaScript for this website or use a JavaScript-capable web browser. Previous pastes Your previous pastes will be saved in your browser using localStorage . Sorry your browser does not support LocalStorage , We cannot display your previous pastes. /.well /span Copy To Clipboard | Get short url | Email this Clone New Paste Expire the 07/05/2114 {"iv":"gc+aUHel58YECC832oOAYA","salt":"Ks9pxcmOTbs","ct":"ep4K5AJlyeQqe8w6+pg6ZqKqlQnnMy/QIFDORNYOx5jrder/hk+xzYRaU8PtS4wTKrmq1/w5aMMje7x9dmlxuNOPRTPJJaDijOmgl...
nope.c Download Documentation Gallery Welcome to nope.c nope.c is a light flyweight platform for creating lightning fast and scalable network applications using C language. Just to give an idea of how light nope.c is, an app to print the "Hello world" page has a memory footprint(PSS) of 118KB in nope.c, which is about 1/75 of that node.js's 9MB or 9000KB footprint for the same app. #include "server.h" #include "nopeutils.h" void factor ( int client , const char * reqStr , const char * method ); void server ( Request request ) { routefh ( request , "/factor" ,& factor ); } void factor ( int client , const char * reqStr , const char * method ) { char * nStr = HSCANIT ( client , reqStr , "Number to factor:" ); if ( strcmp ( nStr , UNDEFINED )!= 0 ) { long n = strtol ( nStr , NULL , 10 ); nprintf ( client , "Factors of %li are: " , n ); long l ; for ( l = 2 ; l <= n ;++ l ) { if ( n %...
[lkml] [2014] [Jul] [24] [last100] Views: [wrap] [no wrap] [headers] [forward] Messages in this thread First message in thread Peter Zijlstra Linus Torvalds =?UTF-8?B?TWljaGVsIETDpG56ZXI=?= Linus Torvalds Peter Zijlstra =?UTF-8?B?TWljaGVsIETDpG56ZXI=?= Linus Torvalds Nick Krause Alexei Starovoitov Jakub Jelinek Linus Torvalds SiteSearch Google Enter your search terms Submit search form Web lkml.org SiteSearch Google Date Thu, 24 Jul 2014 11:47:17 -0700 Subject Re: Random panic in load_balance() with 3.16-rc From Linus Torvalds <> On Wed, Jul 23, 2014 at 6:43 PM, Michel Dänzer <michel@daenzer.net> wrote: >> >> Michel, mind doing >> >> make kernel/sched/fair.s >> >> and sending us the resulting file? > > Here it is, gzipped, hope that's okay. > > Note that my tree is now based on 3.16-rc6. Ok, so I'm looking at the code generation and your compiler is pure and utter *shit*. ...
CentralNotice Dependent type From Wikipedia, the free encyclopedia Jump to: navigation , search Type systems Type safety Dynamic type-checking Static type-checking Inferred vs. Manifest Nominal vs. Structural Dependent typing Duck typing Latent typing Substructural typing Uniqueness typing Strong and weak typing v t e In computer science and logic , a dependent type is a type that depends on a value. It is an overlapping feature of math-encoding type theory and bug-stopping type systems . In intuitionistic type theory , dependent types are used to encode logic's quantifiers like "for all" and "there exists". In functional programming languages like ATS , Agda , Idris and Epigram , dependent types prevent bugs by allowing very expressive types. Two common examples of dependent types are dependent functions and dependent pairs. A dependent function's retur...
Aris' Blog Home About OpenSSL and LibreSSL PRNG, what’s different? 23/07/14 - 11:55am In July, a blog post from Andrew Ayer described the new, unsafe behaviour of portable LibreSSL 2.0.1. While it is right to say that it’s unsafe, it is still safer than baseline’s OpenSSL and portable LibreSSL 2.0.2. That’s what I’ll explain in this blog post. During March 2014, I released two CVE on OpenSSL consumers, stunnel ( CVE-2014-0016 ) and libssh ( CVE-2014-0017 ). I also wrote a paper about it in the french magazine MISC mag 74. Unfortunately the paper is in french and not yet released in CC-BY-NC, so here are the major points: OpenSSL RAND_bytes() pool can be shared by two processes that are related, e.g. with a fork(). OpenSSL mitigates that problem by adding the result of getpid() in the entropy pool during a RAND_bytes() call. That means that two processes that share ...
efchan ef site ▲ ▼ The literary gems of Everfree Posting mode: Reply [Return] [▼] Name Email Subject Comment File Spoiler Image Password (For file deletion.) Welcome to the Everfree Forest! Remember to read the rules on the front page ; we do have a few . File: 1354247745635.jpg (178.39 KiB, 1393×667, steamy.jpg) Vausten Fri 30 Nov 12 03:55:45 №. 335 [+50] Original: >>>/ef/755755 Hmmm, this game of mine isn't running quite right. I better go into Steam and figure out whats up. Mach !kuzlunAJv6 Fri 30 Nov 12 03:56:13 №. 336 Follow me to the steamy bath house. Vausten Fri 30 Nov 12 03:56:50 №. 337 File: 1354247810756.jpg (177.59 KiB, 1390×663, steamy.jpg) Blah blah, click clicks Vausten Fri 30 Nov 12 03:57:20 №. 338 File: 1354247840910.jpg (198.12 KiB, 1392×662, steamier.jpg) >>336 That sounds like a very heterosexual time. Vausten Fri 30 Nov 12 03:58:21 №. 339 File: 1354...
Test case created 5 minutes ago and last updated 4 minutes ago < script > vmulMAP = function ( v , s ) { return v. map ( function ( i ) { return i * s ; } ) ; } ; vmulFOR = function ( v , s ) { var out = new Array ( v. length ) ; for ( var i = 0 ; i < v. length ; i ++ ) { out [ i ] = v [ i ] * s ; } return out ; } ; vmulFIXD = function ( v , s ) { return [ v [ 0 ] * s , v [ 1 ] * s , v [ 2 ] * s , v [ 3 ] * s ] ; } ; < / script > Warning! For accurate results, please disable Firebug before running the tests. (Why?) Java applet disabled. To run the tests, please enable JavaScript and reload the page. Testing in unknown unknown Test Ops/sec MAP vmulMAP ( [ 1 , 0.4 , 0.01 , 1 ] , 130 ) ; pending… FOR vmulFOR ( [ 1 , 0.4 , 0.01 , 1 ] , 130 ) ; pending… FIXED vmulFIXD ( [ 1 , 0.4 , 0.01 , 1 ] , 130 ) ; pending...