- Web Wormhole https://webwormhole.io/ https://github.com/saljam/webwormhole
- Localsend https://web.localsend.org/
- FilePizza https://file.pizza/
ShareDrop sharedrop.io https://github.com/szimek/sharedrop(SOLD, not recommended, use one of the forks)A clone SnapDrop snapdrop.net https://github.com/RobinLinus/snapdrop(SOLD, not recommended, use one of the forks)- A fork PairDrop https://pairdrop.net/ https://github.com/schlagmichdoch/pairdrop
- ToffeeShare https://toffeeshare.com/
- Instant.io https://instant.io/
| import * as React from 'react'; | |
| const useIsFirstRender = (): boolean => { | |
| const isFirst = React.useRef(true); | |
| if (isFirst.current) { | |
| isFirst.current = false; | |
| return true; | |
| } else { |
| import { Markdown } from "@/app/components/markdown"; | |
| import { getComments, getPost } from "@/lib/db"; | |
| import { Suspense } from "react"; | |
| export default async function PostPage({ | |
| params, | |
| }: { | |
| params: { postId: string }; | |
| }) { | |
| let post = await getPost(params.postId); |
As a security professional, it is important to conduct a thorough reconnaissance. With the increasing use of APIs nowadays, it has become paramount to keep access tokens and other API-related secrets secure in order to prevent leaks. However, despite technological advances, human error remains a factor, and many developers still unknowingly hardcode their API secrets into source code and commit them to public repositories. GitHub, being a widely popular platform for public code repositories, may inadvertently host such leaked secrets. To help identify these vulnerabilities, I have created a comprehensive search list using powerful search syntax that enables the search of thousands of leaked keys and secrets in a single search.
(path:*.{File_extension1} OR path:*.{File_extension-N}) AND ({Keyname1} OR {Keyname-N}) AND (({Signature/pattern1} OR {Signature/pattern-N}) AND ({PlatformTag1} OR {PlatformTag-N}))
**1.
You also might wanna just use Whisky which does this automatically
This guide works on macOS 13.4+ using Command Line Tools for XCode 15 Beta!
In the recent WWDC, Apple announced and released the "game porting toolkit", which upon further inspection this is just a modified version of CrossOver's fork of wine which is a "compatibility layer" that allows you to run Windows applications on macOS and Linux.
| //! A zig builder step that runs "libtool" against a list of libraries | |
| //! in order to create a single combined static library. | |
| const LibtoolStep = @This(); | |
| const std = @import("std"); | |
| const Step = std.build.Step; | |
| const RunStep = std.build.RunStep; | |
| const FileSource = std.build.FileSource; | |
| pub const Options = struct { |
| "use client"; | |
| import L from "leaflet"; | |
| import "leaflet.markercluster"; | |
| import { useEffect, useRef } from "react"; | |
| import { range } from "@/utils/range"; | |
| import "leaflet.markercluster/dist/MarkerCluster.Default.css"; | |
| import "leaflet.markercluster/dist/MarkerCluster.css"; | |
| import "leaflet/dist/leaflet.css"; |
| import {View, Text, StyleSheet, LayoutChangeEvent} from 'react-native'; | |
| import React, {useCallback, useState} from 'react'; | |
| import Animated, { | |
| Extrapolate, | |
| SharedValue, | |
| interpolate, | |
| runOnJS, | |
| useAnimatedGestureHandler, | |
| useAnimatedStyle, | |
| useSharedValue, |
| // zod schema | |
| z.object({ | |
| // valid if string or: | |
| optional: z.string().optional(), // field not provided, or explicitly `undefined` | |
| nullable: z.string().nullable(), // field explicitly `null` | |
| nullish: z.string().nullish(), // field not provided, explicitly `null`, or explicitly `undefined` | |
| }); | |
| // type | |
| { |
| import SwiftUI | |
| /** | |
| ### Exercises for the viewer | |
| - Phase interrupt handling. | |
| - Use Swift concurrency. | |
| - Color scheme awareness. | |
| - Rework animations to be more spring-like à la what shipped in `0.90.0`. |