I'm no longer using this exact setup, it is based on an old version of libfprint and further development is moving at a slow pace.
This document will still be available for further reference, but I don't plan to update it.
import { gemini20Flash, googleAI } from "@genkit-ai/googleai"; | |
import { genkit, z } from "genkit/beta"; | |
const ai = genkit({ | |
plugins: [googleAI()], | |
model: gemini20Flash, | |
}); | |
const StepsSchema = z.object({ | |
steps: z |
library(mapboxapi) | |
library(mapview) | |
mb_access_token("YOUR TOKEN GOES HERE") | |
isos <- mb_isochrone("2500 Victory Ave, Dallas TX", | |
time = c(5, 10, 15), | |
profile = "driving-traffic") | |
mapview(isos, zcol = "time", |
You are an AI assistant tasked with creating a highly engaging, personalized check-in flow for a user. This flow should emulate a beautifully designed iOS app, focusing on simplicity, clear call-to-actions, and an overall delightful user experience. Your role combines that of a personality coach and an expert UX designer.
Here's the theme for today's check-in: {{THEME}}
And here's the context we have about the user: <user_context> {{USER_CONTEXT}}
{ config, pkgs, lib, ... }: { | |
imports = [ | |
(import <nixpkgs/nixos/modules/system/etc/etc.nix>) | |
]; | |
options.system.build.etc = lib.mkOption { type = lib.types.package; }; | |
options.system.activationScripts.etc = | |
lib.mkOption { type = lib.types.unspecified; }; | |
config = { |
import Foundation | |
import RxSwift | |
import DeviceCheck | |
public struct Client { | |
private static func retrieveDeviceToken() -> Observable<String?> { | |
if #available(iOS 11.0, *) { | |
return Observable.create({ observer -> Disposable in | |
guard DCDevice.current.isSupported else { |
/* | |
typedef struct { | |
int size; | |
char* data; | |
} test_struct; | |
void some_func(test_struct **s); |
import jwt from "jsonwebtoken"; | |
import uuid from "uuid"; | |
import config from "../../../config"; | |
import { DeviceCheckService, DeviceCheckParams } from "./DeviceCheckService"; | |
import BaseService from "./BaseService"; | |
export class AppleDeviceCheckService extends BaseService implements DeviceCheckService { |
Most Android users face hurdles when attempting to root their phones because they require a boot image for patching, and custom recoveries specifically designed for their devices are often unavailable. Additionally, finding the phone firmware online can be challenging. As a result, rooting such phones becomes a daunting task. In this guide, I'll provide a comprehensive solution for users who want to extract the boot image from their phone without the need to root it first, download firmware from the internet, or rely on custom recoveries.
Before diving into the guide, please thoroughly review the Frequently Asked Questions (FAQ) to understand the basics of GSI and the various naming conventi
import moment = require("moment"); | |
import config from "../../../config"; | |
import BaseService from "../BaseService"; | |
import { DeviceCheckService, DeviceCheckParams } from "./DeviceCheckService"; | |
import { buildQueryParams } from "../helper/QueryHelper"; | |
import { isSuccessStatus } from "../helper/ResponseHelper"; | |
import { isTokenReplayed } from "../helper/DatabaseHelper"; |