« 141 142 143 144 145 227 »

Pages are deceptive. Live life in a basket.

D.J. Bernstein: The Good News Archive (Aaron Swartz: The Weblog)

With so much to be sad about in the world today, it is with a hopeful eye that we turn to D. J. Bernstein, professor of mathematics and computer science. You may know about Bernstein because his First Amendment lawsuit forced the government to stop banning export of computer encryption software. Or you may know of him because of his mathematical breakthroughs. Or you may know of him because his software, including qmail and djbdns, does important things with grace and without bugs. In any event, Prof. Bernstein has recently posted a statement of selected research activities [PDF] which provides more hope in these dark times. Bernstein is getting back on track: I haven’t published much software in the last few years; my department colleagues have made clear to me that they don’t value anything other than papers. Fortunately, my promotion has now been approved by the department...

Linked on 2015-01-30 18:37:06 | Similar Links
Bulk Get · Issue #148 · infoforcefeed/OlegDB · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 65 Fork 6 infoforcefeed / OlegDB /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Loading… Bulk Get #148 Open qpfiffer opened this Issue Jan 28, 2015 · 3 comments Apply labels to this issue enhancement frontend bug duplicate invalid question wontfix Nothing to show Loading… enhancement frontend No milestone qpfiffer Owner qpfiffer commented Jan 28, 2015 Needs to happen. Round-tripping to get a ...

Linked on 2015-01-30 05:01:30 | Similar Links
Home | Resin.io

What it's for How it works Docs Blog Team Contact Sign up Login resin.io resin.io in 2 minutes × Close Deploy YOUR FIRST APPLICATION Add your first device in less than 10 minutes, start coding instantly, add more devices as you grow your project. Keep delivering updates even after deployment in the wild. 1 DOWNLOAD IMAGE 3 power up device 2 write image <div id="home-start-carousel" class="home__section--start__carousel carousel slide" data-ride="carousel"> <ol class="carousel-indicators"> <li data-target="#home-start-carousel" data-slide-to="0" class="active"></li> <li data-target="#home-start-carousel" data-slide-to="1"></li> <li data-target="#home-start-carousel" data-slide-to="2"></li> </ol> <div class="carousel-inner"> <div class="item active"> <im...

Linked on 2015-01-29 03:43:44 | Similar Links
LocalHikes - Dog Mountain Trail, Portland Oregon

Banner_include.asp Display Localhikes banner at top of page Assume Page variable has been set to page name Asume that session variable FirstTime is set to False in Global.asa LocalHikes-998x40-TopBar <script type='text/javascript'>googletag.display('div-gpt-ad-1368207100115-0');</script> LocalHikes-728x90-Header LocalHikes-728x425-Video Reporter AllTrails Google Printer Friendly Weather MapQuest TopoZone Help Dog Mountain Trail, Portland Oregon Highlights: This extremely popular trail provides two options for hikers - an easy three mil Near: Bingen, WA Scenery: Distance: 7.1 miles round trip Elevation Gain: 2850 ft Hike Time: 4.5 hours Difficulty: Strenuous Trail Condition: OK, but a few difficult spots HikeType: Loop Summary: Dog Mountain is one of the area'...

Linked on 2015-01-29 01:36:40 | Similar Links
A Gentle Primer on Reverse Engineering | Emily St.

/toggle-container Home Activism Health Miscellaneous Religion Self Writing Technology About Code Photos @emilyst Home Activism Health Miscellaneous Religion Self Writing Technology About Code Photos @emilyst /navigation-inner /navigation A Gentle Primer on Reverse Engineering 27 Jan 15 / emilyst / Comments Off /post-header Over the weekend at Women Who Hack I gave a short demonstration on reverse engineering. I wanted to show how “ cracking ” works, to give a better understanding of how programs work once they’re compiled. It also serves my abiding interest in processors and other low-level stuff from the 80s. My goal was to write a program which accepts a password and outputs whether the password is correct or not. Then I would compile the program to binary form (the way in which most programs are distributed) and attempt to alter ...

Linked on 2015-01-29 01:03:04 | Similar Links
lua-users wiki: Curried Lua

Curried Lua wiki Currying is defined by Wikipedia [1] as follows: "In computer science, currying is the technique of transforming a function taking multiple arguments into a function that takes a single argument (the first of the arguments to the original function) and returns a new function that takes the remainder of the arguments and returns the result" You can implement curried functions in all languages that support functions as first-class objects. For example, there's a little [tutorial about curried JavaScript] . Here is a small Lua example of a curried function: function sum(number) return function (anothernumber) return number + anothernumber end end local f = sum(5) print (f(3)) --> 8 -- WalterCruz Here is another, contributed by [ GavinWraith ], which takes a variable number of arguments terminated with a " () ": function addup(x)...

Linked on 2015-01-28 20:19:35 | Similar Links
ers35/luakernel · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 155 Fork 5 ers35 / luakernel /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Lua + SQLite + musl libc running on x86. 6 commits 1 branch 0 releases 1 contributor C 93.7% C++ 5.0% Assembly 1.2% Other 0.1% C C++ Assembly Other branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters master /.select-menu-item Nothing to show /.select-menu-list Nothing to show /.select-menu-list /.select-menu-modal /.select-menu-moda...

Linked on 2015-01-28 20:18:08 | Similar Links
ump_nearace

HOME CS:GO VLOG ABOUT COMMENT ump_nearace This media won't play because your browser doesn't support html5 video tags, you should probably try another browser, preferably one that isn't built by the Illuminati. ...

Linked on 2015-01-28 01:04:02 | Similar Links
SONG FOR CRISIUS

HOME CS:GO VLOG ABOUT COMMENT SONG FOR CRISIUS This media won't play because your browser doesn't support html5 video tags, you should probably try another browser, preferably one that isn't built by the Illuminati. ...

Linked on 2015-01-28 01:01:13 | Similar Links
Served

A C++11 library for quickly building RESTful web servers. CODE DOCS E.G. CODE DOCS E.G. Served was designed primarily to create RESTful C++ web services with ease and simplicity. To demonstrate, here's an example hello world application: # include <served/served.hpp> int main ( int argc, char const * argv[]) { // Create a multiplexer for handling requests served::multiplexer mux; // GET /hello mux.handle( "/hello" ) .get([](served::response & res, const served::request & req) { res << "Hello world!" ; }); // Create the server and run with 10 handler threads. served::net:: server server ("127.0.0.1", "8080", mux) ; server.run( 10 ); return (EXIT_SUCCESS); } $ curl http://localhost:8080/hello Hello world! Served supports URL parameters for easy RESTification. mux.handle( "/users/{id}" ) .get([](served::response & res, ...

Linked on 2015-01-27 03:49:08 | Similar Links
async.c by PrestonSmith01 · Pull Request #138 · infoforcefeed/OlegDB · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 59 Fork 6 infoforcefeed / OlegDB /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar base sha1: &quot;fe336fe7879983bdcb7cb1b5f1dd552503088a44&quot; head sha1: &quot;f9e4ad6b8490fc0f78d9cf52f8b83bf5363ad2ae&quot; Loading… New issue async.c #138 Open PrestonSmith01 wants to merge 1 commit into infoforcefeed : master from PrestonSmith01 : master + 57 − 0      Conversation 17 Commits 1 Files changed 1 Apply labels to this issue bug duplicate enhancement frontend ...

Linked on 2015-01-27 03:11:45 | Similar Links
infoforcefeed/oleg_dbooks · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 0 Fork 2 infoforcefeed / oleg_dbooks /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Marketing bot for OlegDB. 27 commits 1 branch 0 releases 2 contributors Python 98.2% Shell 1.8% Python Shell branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters master /.select-menu-item Nothing to show /.select-menu-list Nothing to show /.select-menu-list /.select-menu-modal /.select-menu-modal-holder /.select-menu oleg_dbooks / U...

Linked on 2015-01-27 03:10:06 | Similar Links
"Gerbage" was spelled incorrectly by hekar · Pull Request #11 · infoforcefeed/OlegDB-Website · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 0 Fork 3 infoforcefeed / OlegDB-Website /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar base sha1: &quot;40cde379703ba6132c45d9455d677ca2f9bda68c&quot; head sha1: &quot;9bd93d09024c37e6bfd563afae57f9139b28ab94&quot; Loading… New issue "Gerbage" was spelled incorrectly #11 Merged qpfiffer merged 1 commit into infoforcefeed : master from hekar : patch-1 Jan 27, 2015 + 1 − 1    Conversation 1 Commits 1 Files changed 1 Apply labels to this issue bug duplicate enhancement ...

Linked on 2015-01-27 03:07:07 | Similar Links
Brian Mitchell on Twitter: "OlegDB should really be winning some prizes for its elaborate design."

<![endif] Twitter Search query Search Twitter Remove Verified account @ Suggested users Verified account @ Verified account @ Language: English Bahasa Indonesia Bahasa Melayu Čeština Dansk Deutsch English UK Español Filipino Français Italiano Magyar Nederlands Norsk Polski Português Română Suomi Svenska Tiếng Việt Türkçe Русский Українська мова עִבְרִית العربية فارسی हिन्दी বাংলা ภาษาไทย 한국어 日本語 简体中文 繁體中文 Have an account? Log in New to Twitter? Join Today » Log in Phone, email or username Password Log in Remember me Forgot password? Already using Twitter via text message? Follow Following Unfollow Blocked Unblock Pending Cancel Brian Mitchell ‏ @ strmpnk 3h 3 hours ago OlegDB should really be ...

Linked on 2015-01-27 01:40:08 | Similar Links
Nginx image processing server with OpenResty and Lua

leafo Tweet Follow @moonscript Nginx image processing server with OpenResty and Lua on Fri Sep 20 2013 09:40:00 Today I'll be showing you how to create a fast on the fly image processing server. The whole system can be created in less than 100 lines of code. We'll be using OpenResty , an enhanced distribution of Nginx. We'll also need to write a little bit of Lua to get all the functionality we want. Lastly, we'll be using this Lua ImageMagick binding . If you're not familiar with any of these that’s OK, I'll be showing you how to get everything running from scratch. The code nginx.conf serve_image.lua What’s an image processing server? Initial thoughts Installation requirements Nginx configuration Lua script Running the server Final notes Because the entire system isn’t that many lines of code I'll show everything first and you can read on if you want to learn ...

Linked on 2015-01-26 21:21:55 | Similar Links
Badge Program - Heap | Mobile and Web Analytics

Talk to Us Reach out with questions, bugs, or suggestions. We'll respond ASAP. Your message is sent! We'll respond via email shortly. Submit Dismiss Features Customers Pricing Docs Login Our Badge Program lets you upgrade to the Startup tier for free. That includes 25,000 monthly visits , completely free! Just add the Heap badge to your website to upgrade. Add the following code to the footer of your website: Dark Light <a href="https://heapanalytics.com/?utm_source=badge"><img style="width:108px;height:41px" src="//heapanalytics.com/img/badge.png" alt="Heap - iOS and Web Analytics" /></a> That's it! Once the badge is on your site, we'll automatically give you 25,000 monthly visits for free. Datablog Blog Jobs About Twitter Privacy Terms ...

Linked on 2015-01-26 19:21:49 | Similar Links
Alex on Twitter: "Nachtrag zu OlegDB für Bonus-"Fun". (Ist nichts schlimmes. Promise.) http://t.co/DpEGSpLhqU"

<![endif] Twitter Search query Search Twitter Remove Verified account @ Suggested users Verified account @ Verified account @ Language: English Bahasa Indonesia Bahasa Melayu Čeština Dansk Deutsch English UK Español Filipino Français Italiano Magyar Nederlands Norsk Polski Português Română Suomi Svenska Tiếng Việt Türkçe Русский Українська мова עִבְרִית العربية فارسی हिन्दी বাংলা ภาษาไทย 한국어 日本語 简体中文 繁體中文 Have an account? Log in New to Twitter? Join Today » Log in Phone, email or username Password Log in Remember me Forgot password? Already using Twitter via text message? Follow Following Unfollow Blocked Unblock Pending Cancel Alex ‏ @ m0dprobe 12h 12 hours ago Nachtrag zu OlegDB für Bonus-"F...

Linked on 2015-01-26 19:18:22 | Similar Links
« 141 142 143 144 145 227 »

Pages are deceptive. Live life in a basket.