Kiran Hivalekiranhivale.hashnode.dev·Aug 26, 2024oops concept in c#Abstraction in object oriented programming It is a process for showing necessary details and hiding implementation details from the user called abstraction . it can be used to make flexible ,maintainable and secure application with the help of abst...Discuss·88 reads.NET
Ronit Jadhavblog.maplabs.tech·Aug 3, 2024DIGIPIN: Geo-Coded Addressing in IndiaThe Department of India Post is advancing an initiative to establish a standardized, geo-coded addressing system, ensuring simplified addressing solutions for the citizen-centric delivery of public and private services. This initiative, in collaborat...Discuss·67 readsdigipin
HU, Pilihash.hupili.net·Jun 7, 2024Include HTML with dynamic URLHere is a solution to dynamically load any HTML into any HTML element that has a w3-include-html attribute. Use w3-include-html to specify the URL of HTML to include. Put the below script into the page. The solution is not authored by me. It was c...Discusspost
appvipo dot comappvipo.hashnode.dev·May 4, 2024Create new posts on Wordpress Site via REST API using PHP Code<?php // API URL for creating a new post $url = 'https://your_domain.com/wp-json/wp/v2/posts'; // Data for the new post $data = [ 'title' => 'Hello World', 'status' => 'publish', 'content' => 'This is the post content.', 'excerpt' => 'This is a short...Discuss·1 likePHP
HU, Pilihash.hupili.net·May 2, 2024Progress bar in Jupyter with tqdmtqdm is a drop-in solution to turn any iterable to a progress bar. It is useful when working on large datasets / simulations that require massive iterations, and most iterations are of similar computational size. Tips Here are the tips for applicatio...Discusspost
HU, Pilihash.hupili.net·Apr 27, 2024Recommender System by GCP Vector SearchRecommender system has never been so easy and versatile given the latest development of AI. The new paradigm are just two folds. Turn everything into a vector, aka embedding. For example, one can use GPT to embed text; one can use CLIP to embed text...Discusspost
HU, Pilihash.hupili.net·Apr 26, 2024Chat with any file using GeminiThe latest interface of Gemini Pro supports to send a sequence of interlaced text / files as input (aka parts). The raw JSON API is convenient and straightfoward. One can wrap a utility function in 20 lins of codes. Utility function import requests ...Discusspost
HU, Pilihash.hupili.net·Apr 26, 2024Quick Restyling with Stable Diffusion and Control Net on MacI'm using Mac M1 2021 version. The steps to bring up the UI: Clone ConfyUI . Setup accelerated pytorch on Mac. Download SD-XL, and put the files under models/checkpoints. I chose sd_xl_turbo_1.0.safetensors. Download vae and put the files under m...Discusspost
HU, Pilihash.hupili.net·Mar 6, 2024Running EnvelopeRunning Envelope The running envelope is formed by combining a scatter plot with the Peter Riegel formula as an upper bound. With the running envelope, we can track the average speed that athletes can actually achieve under different (equivalent) dis...Discusspost
Giver Kdkgiver-node.hashnode.dev·Jan 16, 2024Node.js: HTTP ModuleWhat is this HTTP all about? The 'http' that we use as a module is actually a protocol which allows data exchange between client and server. As discussed before, 'http' is a built-in module in Node.js. It has 2 types of messages: HTTP Request and HT...Discusshttp