If your geocoding task requires only US county and state level information, you can avoid a third party web service dependency using open data and postgis.
Natural Earth counties, US only.
If your geocoding task requires only US county and state level information, you can avoid a third party web service dependency using open data and postgis.
Natural Earth counties, US only.
import SwiftUI | |
import UIKit | |
public final class HostingView: UIView { | |
public init(@ViewBuilder content: () -> some View) { | |
super.init(frame: .zero) | |
let contentView = UIHostingConfiguration(content: content) | |
.margins(.all, 0) | |
.makeContentView() |
; fasm demonstration of writing 64-bit ELF executable | |
; (thanks to Frantiek Gábri) | |
; syscall numbers: /usr/src/linux/include/asm-x86_64/unistd.h | |
; parameters order: | |
; eax ; syscall_number | |
; rdi ; 1st param | |
; rsi ; 2nd param | |
; rdx ; 3rd param | |
; r10 ; 4th param |
# frozen_string_literal: true | |
module Storage | |
class RemoteFileRenamer < ApplicationService | |
attr_reader :file_blob, :new_name, :file | |
# @param file [ActiveStorage::File] | |
# @param new_name [String] | |
# @param variation [Symbol] Sample: :thumbnail | |
def initialize(file, new_name, variation = nil) |
#!/usr/bin/env sh | |
mkdir -vp $HOME/.local/bin | |
mkdir -pv $HOME/.local/env.d/scrib.d/x-path.d | |
touch $HOME/.local/env.d/scrib.d/x-path.d/matrix.inc.env.sh | |
touch $HOME/.local/env.d/scrib.d/x-path.d/pc.env.vevo.inc.sh | |
touch $HOME/.local/env.d/scrib.d/pentagon.nsa.inc.env.sh | |
touch $HOME/.local/env.d/aliases.oem.env.sh | |
touch $HOME/.local/env.d/scrib.d/f15.inc.env.sh |
Although @setup/node as a built-in cache option, it lacks an opportunity regarding cache persistence. Depending on usage, the action below might give you faster installs and potentially reduce carbon emissions (♻️🌳❤️).
Yarn 3+/4+ with nodeLinker: node-modules. (Not using yarn ? see the corresponding pnpm 7/8+ action gist)
See https://stackoverflow.com/questions/729692/why-should-text-files-end-with-a-newline
A newline in a text file is a terminator, not a separator. This means each line should have a newline at the end of it, including the last line of the file.
Many editors automatically add the newline at the end of the file. Some do not. If you can configure your editor to ensure there is always a newline at the end of every line, please do so.
Because many editors do add this newline, if you commit a text file without it, when someone else edits the file, their editor will (correctly) add the newline. This causes a spurious diff in the file. Spurious
With VSCode version 1.94, the APC extension broke and there is no fix yet.
So, for those having issues with APC after the VSCode update, I recommend downloading the previous version of VSCode for now (https://code.visualstudio.com/updates/v1_93) and setting updates to manual by adding this to the editor's configuration:
"update.mode": "manual",
#!/bin/bash -x | |
. /etc/parallelcluster/cfnconfig | |
nvidia-smi | |
if [ $? = 0 ] ; then | |
CLUSTER_NAME=$(echo ${stack_name} | sed -e "s/parallelcluster-//g") | |
sudo pip install boto3 pynvml | |
wget -P /tmp https://s3.amazonaws.com/aws-bigdata-blog/artifacts/GPUMonitoring/gpumon.py | |
sed \ |