Reddit - The heart of the internet
Saved
on: 2015-08-20
https://crosswalk-project.org/
Saved
on: 2015-08-20
awesome-web-scraping/php.md at master · lorien/awesome-web-scraping
List of libraries, tools and APIs for web scraping and data processing. - lorien/awesome-web-scraping
Saved
on: 2015-08-18
http://piotrpasich.com/putting-all-pieces-together-and-shipping-with-codeship-continuous-deployment-part-iii/
Saved
on: 2015-08-18
search-script-scrape/README.md at master · stanfordjournalism/search-script-scrape
101 real world web scraping exercises in Python 3 for data journalists - stanfordjournalism/search-script-scrape
Saved
on: 2015-08-17
Ruby Midwest 2011 - Keynote: Architecture the Lost Years by Robert Martin -
Robert C. Martin (Uncle Bob) has been a software professional since 1970. In the last 40 years, he has worked in various capacities on literally hundreds of ...
Saved
on: 2015-08-16
sindresorhus/awesome
😎 Awesome lists about all kinds of interesting topics - sindresorhus/awesome
Tags:
#webdev
Saved
on: 2015-08-14
A practical guide to building fast web applications in the cloud!
In this post we highlighted some of the most common principles that you have to consider while building high performing web applications. Read full article.
Saved
on: 2015-08-13
reactjs - netflix - tony casparro - chasing 60fps - YouTube
Tony Casparro from Netflix talking about rebuilding the netflix ui with reactjsReact Render Visualizer: https://github.com/redsunsoft/react-render-visualizer...
Saved
on: 2015-08-13
Random Useful Websites
randomusefulwebsites.com ist die beste Quelle für alle Informationen die Sie suchen. Von allgemeinen Themen bis hin zu speziellen Sachverhalten, finden Sie auf randomusefulwebsites.com alles. Wir hoffen, dass Sie hier das Gesuchte finden!
Saved
on: 2015-08-12
PublicAPIs | Directory of public APIs for web and mobile
Your gateway to discovering and monetizing powerful public APIs.
Saved
on: 2015-08-12
Ian Cooper: TDD, where did it all go wrong
Since Kent Beck wrote the book on TDD in 2002 a lot of words have been dedicated to the subject. But many of them propogated misunderstandings of Kent's original…
Saved
on: 2015-08-12
Relay Technical Preview | React
This blog site has been archived. Go to react.dev/blog to see the recent posts. Relay Today we’re excited to share an update on Relay - the technical preview is now open-source and available on GitHub. Why Relay While React simplified the process of developing complex user-interfaces, it left open the question of how to interact with data on the server. It turns out that this was a significant source of friction for our developers; fragile coupling between client and server caused data-related…
Tags:
#javascript
Saved
on: 2015-08-12
piwik/device-detector
The Universal Device Detection library will parse any User Agent and detect the browser, operating system, device used (desktop, tablet, mobile, tv, cars, console, etc.), brand and model. - GitHub...
Saved
on: 2015-08-11
DesignPatternsPHP — DesignPatternsPHP 1.0 documentation
a collection of known design patterns along with implementations in PHP8
Saved
on: 2015-08-11
minimaxir/big-list-of-naughty-strings
The Big List of Naughty Strings is a list of strings which have a high probability of causing issues when used as user-input data. - minimaxir/big-list-of-naughty-strings
Tags:
#webdev
Saved
on: 2015-08-11
http://paul-m-jones.com/archives/6172
Saved
on: 2015-08-10
jasonmoo/lambda_proc: Running a companion process to an AWS Lambda function in go
Running a companion process to an AWS Lambda function in go - jasonmoo/lambda_proc
Saved
on: 2015-08-09
Your single AWS account is a serious risk
Your AWS account is one of the most valuable things you own if you run a business on AWS. If you only own a single AWS accoun...
Tags:
#aws
Saved
on: 2015-08-08
Automated deployment with AWS Elastic Beanstalk (EB) – Part II | Piotr Pasich
Saved
on: 2015-08-08
I migliori documentari di sempre - Il Post
Li ha scelti il British Film Institute, trovando concordi sul più bello di tutti sia i critici cinematografici che i registi
Saved
on: 2015-08-06
Influences: Bill Stevenson | Modern Drummer MagazineModern Drummer Magazine
Influences: Bill Stevenson Since 1977, the world's most widely read drum magazine: in print, online, and the Modern Drummer app. Where the world's greatest drummer meet.
Tags:
#read-later
Saved
on: 2015-08-05
Show HN: JAWS – A JavaScript and AWS Stack | Hacker News
Saved
on: 2015-08-04
New React Devtools Beta | React
This blog site has been archived. Go to react.dev/blog to see the recent posts. We’ve made an entirely new version of the devtools, and we want you to try it
out! The full devtools gif Why entirely new? Perhaps the biggest reason was to create a defined API for dealing with
internals, so that other tools could benefit as well and not have to depend on
implementation details. This gives us more freedom to refactor things
internally without worrying about breaking tooling. The current version of…
Saved
on: 2015-08-04
The Post-Mac Interface — Medium
In 1996 Don Gentner and Jakob Nielsen published a thought experiment, The Anti-Mac Interface. It’s worth a read. By violating the design principles of the entrenched Mac desktop interface, G and N…
Saved
on: 2015-08-04
Postgres Guide
We here are very big fans of Postgres as a database and believe it is often the best database for the job. For many though, working with and maintaining Postgres involves a steep learning curve. This guide is designed as an aid for beginners and experienced users to find specific tips and explore tools available within Postgres.
If you want to take the quick & painless approach instead, there are great services available for Postgres hosting.
Tags:
#postgres
Saved
on: 2015-08-03
A 10 Minutes Walk In The Future Of The Internet (And Journalism) — Medium
This summer, for reasons connected to my work as researcher, I’ve spent some time in London. If you’re interested in journalism and the web, this was a good time to be in town. While Berlin has…
Tags:
#read-later
Saved
on: 2015-07-30
Learn Symfony with Silex, the Demo App and the Best Practises Book | Symfon
Diese Domain steht zum Verkauf!
Saved
on: 2015-07-30
Flux Architecture Visual Cheatsheet | A Techsolutionist's Blog
Saved
on: 2015-07-29
Nginx with dynamic upstreams - Tenzer.dk
I recently made a setup at work where I had a Nginx server facing the user, which would forward requests to a service running behind an AWS Elastic Load Balancer (aka. ELB). That in itself doesn't sound like a difficult task, you just find the hostname for the ELB and point Nginx at it with a proxy_pass statement like this, right?
location / {
proxy_pass http://service-1234567890.us-east-1.elb.amazonaws.com;
}
Test it out and - assuming the firewall/security group configuration is set up right - it should work just fine. Some hours later you may however find the service is no longer working, even though no changes has been made. Calling the ELB endpoint directly works just fine, but calling it through Nginx just times out.
Saved
on: 2015-07-27
Continuous Deployment environment with Docker, AWS EB and Codeship | Piotr
Saved
on: 2015-07-24
malkusch/lock
Popular PHP library for serialized execution of critical code in concurrent situations - php-lock/lock
Saved
on: 2015-07-24
Implementing Secure User Authentication in PHP Applications with Long-Term Persistence (Login with "Remember Me" Cookies) - Paragon Initiative Enterprises Blog
Login forms with a remember me checkbox are a common requirement. We explore the security of login forms and a robust model for remember me checkboxes.
Saved
on: 2015-07-22
Under the Hood of Amazon EC2 Container Service - All Things Distributed
In this post I explore the Amazon ECS architecture and what this architecture enables.
Tags:
#aws
Saved
on: 2015-07-21
jenssegers/optimus: 🤖 Id obfuscation based on Knuth's multiplicative hashing method for PHP.
🤖 Id obfuscation based on Knuth's multiplicative hashing method for PHP. - jenssegers/optimus
Saved
on: 2015-07-21
namshi/jose
JSON Object Signing and Encryption library for PHP. - namshi/jose
Tags:
#php
Saved
on: 2015-07-20
Domain-Driven Design - Tuts Code Article
In my country, you won't make it through school without reading how Goethe's Faust complains, I've studied now Philosophy - And Jurisprudence, Medicine, - And even, alas! Theology - All through...
Saved
on: 2015-07-17
How To Survive Sitting in an Office All Day | Nerd Fitness
Do you feel sore after sitting at a desk all day? Learn how to set up your workplace to succeed. Level up with the proper ergonomics and stretches.
Saved
on: 2015-07-15
DrBoolean/mostly-adequate-guide · GitHub
Mostly adequate guide to FP (in javascript)
Saved
on: 2015-07-14
Dan Ariely: What makes us feel good about our work? | TED Talk | TED.com
What motivates us to work? Contrary to conventional wisdom, it isn't just money. But it's not exactly joy either. It seems that most of us thrive by making constant progress and feeling a sense of purpose. Behavioral economist Dan Ariely presents two eye-opening experiments that reveal our unexpected and nuanced attitudes toward meaning in our work.
Tags:
#video
Saved
on: 2015-07-14
Setting up Laravel 5.1 on Semaphore CI - YouTube
Here I show how to set up a Laravel 5.1 project on Semaphore CI for continuous integration testing.Sorry about the crickets in the background, and occasional...
Saved
on: 2015-07-14
101 Tips to MySQL Tuning and Optimization
Efficiently centralize, monitor, and manage your IT support with remote monitoring and management (RMM). Discover TeamViewer Remote Management.
Tags:
#mysql
Saved
on: 2015-07-14
jkoudys/immutable.php: Immutable collections, with filter, map, join, sort, slice, and other methods. Well-suited for functional programming and memory-intensive applications. Runs especially fast in PHP7.
Immutable collections, with filter, map, join, sort, slice, and other methods. Well-suited for functional programming and memory-intensive applications. Runs especially fast in PHP7. - jkoudys/immu...
Saved
on: 2015-07-14
React JS tutorial with React UI Builder - YouTube
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
Saved
on: 2015-07-13
Vagabonds, Crafty Bauds, and the Loyal Huzza: A History of London at Night
In the 16th & 17th centuries, “nightwalking” was a transgressive act in a city still on the brink of total nighttime illumination, but with complex implications depending on your social status.
Tags:
#read-later
Saved
on: 2015-07-13
http://coding-geek.com/how-shazam-works/
Saved
on: 2015-07-12
Domain error
Saved
on: 2015-07-11
PHP: Perform HTTP requests in parallel – VG Tech
Saved
on: 2015-07-10
React.js Introduction For People Who Know Just Enough jQuery To Get By · Re
Saved
on: 2015-07-09
base-php-challenges/challenges at master · wearebase/base-php-challenges
A few small PHP coding challenges
Saved
on: 2015-07-08
Jack's Adventures - Inner Mongolia
Saved
on: 2015-07-08
Rican7/incoming: Transform loose and complex input into consistent, strongly-typed data structures
Transform loose and complex input into consistent, strongly-typed data structures - Rican7/incoming
Saved
on: 2015-07-08
http://x-team.com/2015/07/automated-deployment-90-minutes-docker-aws-codeship/
Saved
on: 2015-07-08
How I Became an Artist — Medium
I am extraordinarily blessed to do what I love for a living. Somehow in the last decade I’ve turned a hobby into a profession and then into a lifestyle. While I don’t claim any profound wisdom nor…
Saved
on: 2015-07-07
Hyper Island Toolbox
Access Toolbox by Hyper Island to build an innovative workplace and support well-being. Unlock your team's full potential now!
Saved
on: 2015-07-06
Nick Justice
Saved
on: 2015-07-06
Dan Abramov - Live React: Hot Reloading with Time Travel at react-europe 20
React’s unique strength is bringing to JavaScript development some of the benefits previously exclusive to more radically functional languages such as Elm an...
Saved
on: 2015-07-05
gaearon/redux · GitHub
A JS library for predictable global state management - reduxjs/redux
Tags:
#react-js
Saved
on: 2015-07-05
Meteor: the missing infrastructure for building great React apps
Saved
on: 2015-07-03
Locust - A modern load testing framework
An open source load testing tool. Define user behaviour with Python code, and swarm your system with millions of simultaneous users.
Saved
on: 2015-07-01
Why experienced developers consider Laravel as a poorly designed framework?
Tags:
#php
Saved
on: 2015-07-01
flyjs/fly · GitHub
:rocket: Supporting request forwarding and Promise based HTTP client for all JavaScript runtimes. - wendux/fly
Tags:
#javascript
Saved
on: 2015-07-01
What Should a Service Layer Avoid Containing/Handling? : r/PHP
Saved
on: 2015-06-30
7 Ways My Modern Country Turned Into a Dystopia Overnight | Cracked.com
We sat down with Dimitra Nikolaou, a Greek journalist, who told us what to expect if our economy ever goes tits up.
Saved
on: 2015-06-30
arkency/reactjs_koans: Learn basics of React.js making the tests pass
Learn basics of React.js making the tests pass
Saved
on: 2015-06-29
tota11y – an a11y visualization toolkit
Saved
on: 2015-06-29
oak.is / Animated SVGs: Custom easing and timing
The chart above is an animated SVG featured on Sprout. This chart, and one other animation on Sprout, were initially GIFs. By using animated SVGs instead of GIFs we were able to reduce our page size from 1.6 mb to 389 kb, and reduce our page load time from 8.75 s to 412 ms. That’s a huge difference. Below, I’ll break down the animation of one of the circles seen in the chart. The technique applies to all of the elements in the graphic. With this you can create your own lightweight animated graphic.
Saved
on: 2015-06-29
Frameworkless, or How I use PHP — Medium
There are a lot of large frameworks for PHP out there that will do everything you could ever imagine. But what if you don’t need all of that extra power and complexity? I first started by looking at…
Tags:
#php
Saved
on: 2015-06-29
Reddit - The heart of the internet
Saved
on: 2015-06-26
Ultimate guide to learning AngularJS in one day
Angular is a client-side MVC/MVVM framework built in JavaScript, essential for modern single page web applications (and even websites). This post is a full end...
Saved
on: 2015-06-23
tpunt/PHP7-Reference · GitHub
An overview of the features, changes, and backward compatibility breakages in PHP 7 - tpunt/PHP7-Reference
Tags:
#php
Saved
on: 2015-06-22
Apple has published a great free learn to code course for Swift — on GitHub
TL;DR: Apple has apparently, via some sort of collaboration with a university professor, published last week — during WWDC — a really solid-looking learn-to-code curriculum for Swift that is kind of…
Tags:
#swift
Saved
on: 2015-06-19
Babel · The compiler for writing next generation JavaScript
The compiler for next generation JavaScript
Saved
on: 2015-06-17
marcelgsantos/learning-oop-in-php · GitHub
A collection of resources to learn object-oriented programming and related concepts for PHP developers. - marcelgsantos/learning-oop-in-php
Tags:
#php
Saved
on: 2015-06-16
A Comparison of Go Web Frameworks
The Corner is Square's technical blog covering software engineering, APIs, data, open source and more.
Tags:
#golang
Saved
on: 2015-06-16
What symfony components can do for you - AndreasHucks
Symfony 2 has had a profound impact on the PHP world since well before the initial stable release, and its components have since been picked up as building b...
Saved
on: 2015-06-16
The Journey: A refugee's odyssey from Syria to Sweden | World news | The Gu
Hashem Alsouki risks his life crossing the Mediterranean, his heart set on Sweden – and freedom for his family
Tags:
#later
Saved
on: 2015-06-15
drewm/morse: A feature detection library for PHP code that needs to run in multiple different environments
A feature detection library for PHP code that needs to run in multiple different environments - drewm/morse
Saved
on: 2015-06-14
Three small Guzzle 6 PSR-7 handler/middleware packages I've recently written : r/PHP
Saved
on: 2015-06-13
PHP Authorization with JWT (JSON Web Tokens)
Need to authenticate requests to a server? Learn what JWTs are and how to use them to authenticate your users via API calls.
Tags:
#php
Saved
on: 2015-06-12