I hereby claim:
- I am scorphus on github.
- I am pablito (https://keybase.io/pablito) on keybase.
- I have a public key ASDYg1IWkWcdYXP00eGQAkWVkcPgEtD0GCRBBAGT_XuT6Ao
To claim this, I am signing this object:
| class memoize(dict): | |
| def __init__(self, func, timeout=15): | |
| logger.info('Initiating cache for %s', func) | |
| self.func = func | |
| self.timeout = None | |
| if timeout: | |
| self.timeout = float(timeout) | |
| def __call__(self, *args): |
| function ipip -d "Indexes-aware pip" | |
| if test (count $argv) -ge 2 | |
| if test $argv[1] = "install" | |
| if test (count $PIP_INDEX_URLS) -ge 1 | |
| set index_urls "--index-url"=$PIP_INDEX_URLS[1]"simple/" | |
| set trusted_host (__extract_domain $PIP_INDEX_URLS[1]"simple/") | |
| set trusted_hosts "--trusted-host" $trusted_host | |
| if test (count $PIP_INDEX_URLS) -ge 2 | |
| for index_url in $PIP_INDEX_URLS[2..-1] | |
| set index_urls $index_urls "--extra-index-url"=$index_url"simple/" |
| extern crate r2d2; | |
| extern crate r2d2_couchdb; | |
| extern crate serde_json; | |
| use r2d2_couchdb::{CouchdbConnectionManager}; | |
| use std::thread; | |
| use std::time::Duration; | |
| fn main() { |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "bytes" | |
| "fmt" | |
| "io/ioutil" | |
| "log" | |
| "net" | |
| "net/http" | |
| "net/http/httputil" |
| .build-monitor .successful { | |
| background-color: #EA80B0; | |
| } | |
| .build-monitor .project.successful > .progress { | |
| background-color: #A85C7F; | |
| } | |
| @keyframes forSuccessful { | |
| 0% { |
| .build-monitor .successful { | |
| background-color: hsl(36, 100%, 50%); | |
| } | |
| .build-monitor .project.successful > .progress { | |
| background-color: hsl(36, 100%, 40%); | |
| } | |
| @keyframes forSuccessful { | |
| 0% { |
| from dataclasses import dataclass | |
| from itertools import groupby | |
| from operator import countOf | |
| from typing import Callable, Dict, Iterable, List, Tuple | |
| @dataclass | |
| class Document: | |
| url: str | |
| title: str |
Would advise you all to practice just for fun. I know a lot of students don't get much practice for interviews.
These are some questions you really should ask in a job interview.
Which platforms (Linux, Windows, Mac, Embedded) will I develop for?
What programming languages are you using for which kind of projects / applications?
What Development Environment are you using?
Are you using any coding style guidelines? If yes, can I take a look at the document?
Are you actively supporting / allowing time for keeping your code base maintainable and up to date?