Ubuntu 24.04 LTS, nearest region
2 GB RAM / 1 AMD CPU / 50 GB NVMe
| class TeamPrStatistics | |
| attr_accessor :team, :stats | |
| class Stat | |
| attr_accessor :titles | |
| attr_reader :name | |
| def initialize(name) | |
| @name = name | |
| @titles = [] | |
| end |
I recomend reading at least two of the above.
If you feel like you know enough about how your mind is fucked-up miscalibrated, you can move on to the lists below.
Each one has a few sublists. The order of the sublists does not matter. For each sublist, the first link is the one I see as a good starting point, but the order does not matter too much, either.
| comments() { | |
| local issue="${1?}" | |
| shift 1 | |
| paginate hub api --cache 3600 graphql -F issue="$issue" "$@" -f query=' | |
| query ($owner: String = "{owner}", $repo: String = "{repo}", $issue: Int!, $per_page: Int = 30, $after: String) { | |
| repository(owner: $owner, name: $repo) { | |
| issueOrPullRequest(number: $issue) { | |
| ... on Issue { | |
| comments(first: $per_page, after: $after) { | |
| ...Comments |
| import os | |
| from collections import defaultdict | |
| import requests # get from pypi | |
| import crayons # get from pypi | |
| pagination = "null" | |
| query = """ | |
| query($orderBy: LanguageOrder!, $pagination: String) { | |
| viewer { | |
| name |
For this exercise you will create a web page that embeds a photo carousel based on a Flickr gallery (Flickr API details here: https://www.flickr.com/services/api/flickr.galleries.getPhotos.html).
Hint: If you find yourself making more than one request to the
I upgraded my iPhone 5s to iOS 10 and could no longer retrieve photos from it. This was unacceptable for me so I worked at achieving retrieving my photos. This document is my story (on Ubuntu 16.04).
The solution is to compile libimobiledevice and ifuse from source.
Who is this guide intended for?
| import inspect | |
| class HandlerNotFound(Exception): | |
| pass | |
| class BasicCommandBus(object): | |
| def execute(self, command): |
| from operator import attrgetter | |
| from hashlib import md5 # because it's fast | |
| class BaseRepository(object): | |
| def find(self, pk): | |
| raise NotImplementedError() | |
| def find_by(self, **keys): | |
| raise NotImplementedError() |
| #!/bin/bash | |
| sudo kextunload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport | |
| sudo kextload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport |