| import pygame | |
| import cv2 | |
| import mediapipe as mp | |
| import os | |
| import random | |
| ''' | |
| Thank you "Tech With Tim" and "Murtaza's Workshop" for great free python tutorials on youtube that help me so much with this work | |
| Tech With Tim | Making Tetris Tutorial: https://www.youtube.com/watch?v=uoR4ilCWwKA | |
| Murtaza's Workshop | Hand Tracking Tutorial: https://www.youtube.com/watch?v=p5Z_GGRCI5s |
libuv/libuv#1565 https://gist.github.com/thlorenz/8dd5d3a50ee14457afce https://stackoverflow.com/questions/37934388/clang-symbol-visibility-not-working-as-expected https://github.com/libuv/libuv/search?q=uv_backend_fd&type=Code&utf8=%E2%9C%93 https://github.com/libuv/libuv/search?q=uv_backend_fd&type=Issues&utf8=%E2%9C%93 https://github.com/libuv/libuv/pull/1651/files libuv/libuv#1544 libuv/libuv#1568 libuv/libuv#434 libuv/libuv#1007
| import React, { Component, createContext } from 'react' | |
| function initStore(store) { | |
| const Context = createContext(); | |
| class Provider extends React.Component { | |
| constructor() { | |
| super(); | |
| this.state = store.initialState; | |
| } |
Hello all, I'm in the process of learning Postgres and I find it very hard to find a resource where postgres is explained in terms of developer. Since I'm in the process of reading and applying it in my side project; I treat this gist as my knowledge sharing place on Postgres and its features. Each sub-heading tries to explain the concepts of Postgres with simple example. I may be wrong at times here, if so please free to comment.
All the codes are written and run on psql
I would be adding many stuffs as I learn them. There is no particular order in which I add the contents.
I'm using the following postgres version:
SELECT version();
| /* Semantic UI has these classes, however they're only applicable to*/ | |
| /* grids, containers, rows and columns.*/ | |
| /* plus, there isn't any `mobile hidden`, `X hidden` class.*/ | |
| /* this snippet is using the same class names and same approach*/ | |
| /* plus a bit more but to all elements.*/ | |
| /* see https://github.com/Semantic-Org/Semantic-UI/issues/1114*/ | |
| /* Mobile */ | |
| @media only screen and (max-width: 767px) { | |
| [class*="mobile hidden"], |
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
| echo-server-epoll | |
| echo-server-poll | |
| talk | |
| talk.dSYM |
| package main | |
| import ( | |
| "fmt" | |
| "net" | |
| "os" | |
| "syscall" | |
| ) | |
| const ( |
| package main | |
| import ( | |
| "fmt" | |
| "io" | |
| "os" | |
| ) | |
| var path = "/Users/novalagung/Documents/temp/test.txt" |