Leave who you were. Love who you are. Look forward to who you will become.
Unknown (via deeplifequotes)
this week the senate will vote on whether or not to give the fbi warrantless access to your browsing data. this is extremely dangerous and a violation of privacy. not only would the fbi be able to essentially hack into your computers and internet service, but they might also hack into ones overseas. anything on your computers, they’ll be able to have access to. this is an extremely dangerous power the fbi is trying to get, and it CAN be stopped, but only if you guys are willing to put forth the effort.
how do you stop it? first, get the word out. twitter, tumblr, facebook, just get the word out by either making your own status or sharing this link.
secondly, call your senators. on this website, just enter your phone number and it will give you a script to read off of. it will take you less than 30 seconds, trust me. you can also tweet them, send them emails, etc. all the contact info is on this site here. they will listen. dont know who your senators are? go here and scroll to the bottom. it lists all the senators and who you can call. also, you can tweet at them or send them an email. (all the links in this paragraph lead to the same source)
guys, it is extremely important this bill not get passed. PLEASE reblog this and at least tweet at them? you dont even have to think of anything to type. you literally click the tweet button and it does it for you. please, guys, please.
me_irl
**NOT MINE**
Reposting in case the original source is lost someday. Check back on the original though; OP said he would keep it updated.
SOURCE
–
“
After seeing a list of pretty much only frameworks, with no actual learning resources I decided to throw together an actual list of resources. I will admit my personal focus has always been front & backend web, so this list may be a little biased. I’m sure I missed some and skipped some, sorry.
========== LEARNING ==========
Codecademy - https://www.codecademy.com //Multi Languages
SoloLearn - http://www.sololearn.com //Multi Languages
TutorialsPoint - http://www.tutorialspoint.com //Multi Languages
thenewboston - https://www.youtube.com/user/thenewboston //Multi Languages
Derek Banas - https://www.youtube.com/user/derekbanas //Multi Languages
Coursera - https://www.coursera.org //Multi Languages
TechRocket - https://www.techrocket.com //Multi Languages
FreeCodeCamp - http://www.freecodecamp.com //Web Languages
The Odin Project - http://www.theodinproject.com //Web Languages
DataCamp - https://www.datacamp.com //R
Learn-C - http://www.learn-c.org
Learn C++ - http://www.learncpp.com
Learn C# - http://www.learncs.org
Learn Python - http://www.learnpython.org
Think Python - http://greenteapress.com/wp/think-python
Learn Java - http://www.learnjavaonline.org
Learn JavaScript - http://www.learn-js.org
Learn PHP - http://www.learn-php.org
========== HOME PAGES ==========
PHP.net - http://php.net
ASP.net - http://www.asp.net
Ruby - https://www.ruby-lang.org/en
Ruby On Rails - http://rubyonrails.org
Python - https://www.python.org
Java - http://java.com/en/download/faq/develop.xml
MySQL - https://www.mysql.com
PostgreSQL - http://www.postgresql.org
sqLite - https://www.sqlite.org
Lua - http://www.lua.org
========== REFERENCES ==========
MDN - https://developer.mozilla.org/en-US //Web Documentation & Tools
Stackoverflow - http://stackoverflow.com //Large Question Forum
GitHub - https://github.com //Repository
W3School - http://www.w3schools.com //Web Documentation. Contains some outdated or wrong info, but not terrible for quick references
W3C - https://www.w3.org //Web Standards
========== PLAYGROUNDS ==========
JSFiddle - https://jsfiddle.net
CodePen - http://codepen.io
JS Bin - http://jsbin.com
CodePad - http://codepad.org
PHP Fiddle - http://phpfiddle.org
SQLFiddle - http://sqlfiddle.com
RegEx101 - https://regex101.com
txt2re - http://txt2re.com
CheckiO - http://www.checkio.org
========== Editors / Clients ==========
NotePad++ - https://notepad-plus-plus.org //windows
SublimeText - https://www.sublimetext.com //windows & OSX & Ubuntu
Atom - https://atom.io //Windows & OSX & Ubuntu & Linux
Coda - https://panic.com/coda //osx
TextWrangler - http://www.barebones.com/products/textwrangler //osx
Brackets - http://brackets.io
Cloud9 - https://c9.io //Dev in the Cloud
VIM - http://www.vim.org //Cross platform
Emacs - https://www.gnu.org/software/emacs //Cross platform
Putty - http://www.putty.org //windows
iTerm2 - https://www.iterm2.com //osx
phpMyAdmin - https://www.phpmyadmin.net //browser based
FileZilla - https://filezilla-project.org //windows
Cyberduck - https://cyberduck.io/?l=en //osx
Transmit - https://panic.com/transmit //osx
MATLab - http://www.mathworks.com/products/matlab
========== Frameworks / Helpers ==========
====== DO NOT JUST JUMP INTO THESE =======
============ LEARN FIRST =============
========= There are tons more ==========
— HTML & CSS —
Bootstrap - http://getbootstrap.com
HTML5 BoilerPlate - https://html5boilerplate.com
LESS - http://lessframework.com
SASS - http://sass-lang.com
— Javascript —
jQuery - http://jquery.com
Prototype - http://prototypejs.org
YUI - http://yuilibrary.com
React - https://facebook.github.io/react
Angular - https://angularjs.org
— PHP —
Zend - http://framework.zend.com
Cake - http://cakephp.org
Laravel - https://laravel.com
Symfony - http://symfony.com
yii - http://www.yiiframework.com/wiki/?tag=yii2
— Ruby —
Rails - http://rubyonrails.org
Sinatra - http://www.sinatrarb.com
Ramaze - http://ramaze.net
— Python —
Django - https://www.djangoproject.com
Gears - http://turbogears.org
Cherry - http://www.cherrypy.org
Flask - http://flask.pocoo.org
— Perl —
Catalyst - http://www.catalystframework.org
Mojolicious - http://mojolicio.us
— Java —
Spring - http://spring.io
Play - https://www.playframework.com
Dropwizard - http://www.dropwizard.io
Eclipse - https://eclipse.org/downloads
IntelliJ - https://www.jetbrains.com/idea
========== PERSONAL TIPS ==========
// Stay hydrated. I recommend Mt Dew, Monster, or Red Bull //The last line was sarcasm, these drinks do not hydrate you. Drink water for hydration. Green tea, coffee and dark chocolate can be good (moderation matters) sources for an extra energy boost. // Comment heavy, comment often. You may know what you’re doing at 4:30am, but when you revisit that code in 2 months you can quickly become your own wost enemy. // When switching languages, remember your syntax. + is not . // A semicolon can make or break you // KISS - Keep It Simple, Stupid. What seems to be the most complex problem is usually the easiest solution; e.g. after debugging for an hour, remember you changed a default in your table from 0 to NULL and that is why our code is breaking … not that I’ve ever done that; especially not last night.
“ Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.” -Martin Golding
“ A good programmer is someone who always looks both ways before crossing a one-way street.” -Doug Linder
“Programming is like sex. One mistake and you have to support it for the rest of your life.” -Michael Sinz
“
SOURCE
DO NOT DELETE SYSTEM32!!! There is a post going around saying it’s a virus from 4chan but that is NOT true! It is a part of the windows operating system and if you delete it your computer will be rendered useless. So please, do not reblog the post and don’t follow it’s instructions!
Info about System32 so you know I’m serious here [x]
Creativity is not a rare insight, that comes to you suddenly, once in a lifetime, to change the world. It’s just the opposite…The key is to learn how to bring your ideas together, over time.
Keith Sawyer (via creativesomething)
If you read a great book, or see a really good film, they can change the way you view things. It’s the quality of the things you invest in that’ll add to who you are.
Saoirse Ronan (via a-thousand-words)
Sometimes I really wonder how people manage to be larries but also kind of think that louis is some kind of idiot that just accepts whatever ‘nasty selfish Harry’ is doing like he’s some love fool that just accepts things while the fandom clearly sees through said version of Harry like what kind of relationship do people think they have? And do people realise they are basically questioning louis’ intelligence?
i think one of my favorite parts about traveling is knowing that others have been here before, but they’ll never experience it the way i do.
ramblings past midnight (via bisexual-lance)