A curated list of awesome tech companies that offer programs for CS/EE/CE-students.
If you haven’t worked with JavaScript in the last few years, these three points should give you enough knowledge to feel comfortable reading the React documentation:
- We define variables with
let
andconst
statements. For the purposes of the React documentation, you can consider them equivalent tovar
. - We use the
class
keyword to define JavaScript classes. There are two things worth remembering about them. Firstly, unlike with objects, you don't need to put commas between class method definitions. Secondly, unlike many other languages with classes, in JavaScript the value ofthis
in a method [depends on how it is called](https://developer.mozilla.org/en-US/docs/Web/Jav
Moved to Shopify/graphql-design-tutorial
[6:48 pm] <Guest25582> http://oortr.com/YmU5NT | |
[6:48 pm] <valorie> rather than pasting a random link, why not say what it is, Guest25582? | |
[6:48 pm] <Guest25582> Allah is doing | |
[6:48 pm] <Guest25582> sun is not doing Allah is doing | |
[6:48 pm] <Guest25582> moon is not doing Allah is doing | |
[6:48 pm] <meflin> this channel is about GSOC | |
[6:48 pm] <Guest25582> stars are not doing Allah is doing | |
[6:48 pm] <valorie> please stay on topic or leave, Guest25582 | |
[6:48 pm] <Guest25582> planets are not doing Allah is doing | |
[6:48 pm] <valorie> pfff |
Article by Faruk Ateş, [originally on KuraFire.net][original] which is currently down
One of the most commonly overlooked and under-refined elements of a website is its pagination controls. In many cases, these are treated as an afterthought. I rarely come across a website that has decent pagination, and it always makes me wonder why so few manage to get it right. After all, I'd say that pagination is pretty easy to get right. Alas, that doesn't seem the case, so after encouragement from Chris Messina on Flickr I decided to write my Pagination 101, hopefully it'll give you some clues as to what makes good pagination.
Before going into analyzing good and bad pagination, I want to explain just what I consider to be pagination: Pagination is any kind of control system that lets the user browse through pages of search results, archives, or any other kind of continued content. Search results are the o
""" | |
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
BSD License | |
""" | |
import numpy as np | |
# data I/O | |
data = open('input.txt', 'r').read() # should be simple plain text file | |
chars = list(set(data)) | |
data_size, vocab_size = len(data), len(chars) |
##################################################################### | |
# The LuL Cheat Code # | |
# # | |
# Editor in chief: # | |
# # | |
# pSyCh0_c0d3r # | |
# # | |
# Individual Authors: # | |
# # |
# Assume we are in your home directory | |
cd ~/ | |
# Clone the repo from GitLab using the `--mirror` option | |
$ git clone --mirror [email protected]:mario/my-repo.git | |
# Change into newly created repo directory | |
$ cd ~/my-repo.git | |
# Push to GitHub using the `--mirror` option. The `--no-verify` option skips any hooks. |
import sys | |
from socket import socket, AF_INET, SOCK_DGRAM | |
SERVER_IP = '127.0.0.1' | |
PORT_NUMBER = 5000 | |
SIZE = 1024 | |
print("Test client sending packets to IP {0}, via port {1}\n".format(SERVER_IP, PORT_NUMBER)) | |
mySocket = socket(AF_INET, SOCK_DGRAM) |