Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.
Avoid being a link dump. Try to provide only valuable well tuned information.
Neural network links before starting with transformers.
import json | |
import xlwings as xw | |
import pandas as pd | |
fileName = 'Sample_Exhibit_01.xlsx' | |
metadata = "metadata.json" | |
sample_data = { | |
"ExhibitName01":{ |
let $ = (sel, el) => typeof sel === "string" ? (el || document).querySelector(sel) : sel || null, | |
$$ = (sel, el) => Array.prototype.slice.call((el || document).querySelectorAll(sel)); | |
function on(sel, handlers) { | |
$$(sel).forEach(e => { | |
Object.keys(handlers).forEach(function (evt) { | |
let fn = handlers[evt]; | |
if (typeof evt === 'string' && typeof fn === 'function') { | |
e.addEventListener(evt, fn.bind(e)); | |
} |
// Typescript definitions for React hooks | |
// Take with a grain of salt; these are a first attempt and I've only actually | |
// used a few so far :) | |
import { Context, RefObject } from 'react'; | |
declare module 'react' { | |
export function useState<T>(initialValue: T): [T, (newState: T) => void]; | |
export function useEffect(effect: Function, inputs?: Array<any>): void; | |
export function useMutationEffect(effect: Function, inputs?: Array<any>): void; |
<?xml version="1.0" encoding="utf-8"?> | |
<!-- Sample Autounattend.xml for Windows 10 media. This has been tested on 1511, 1607, and 1709 - x64 architecture only | |
For more details visit my blog http://blogs.catapultsystems.com/mdowst/archive/2017/12/11/create-zero-touch-windows-10-iso/ --> | |
<unattend xmlns="urn:schemas-microsoft-com:unattend"> | |
<settings pass="windowsPE"> | |
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"> | |
<DiskConfiguration> | |
<Disk wcm:action="add"> | |
<DiskID>0</DiskID> | |
<WillWipeDisk>true</WillWipeDisk> |
With all the plugins, boilerplate projects, SAAS and PAAS offerings plus great community support, what can be created in a weekend?
I will take you through the ups downs and highlights of using react at a Startup Weekend event, showing what can be achieved and how.
This will be a story of a wild weekend full of tips, framework and plugin summaries plus pictures from the weekend as the startup team attempt to validate an idea.
The talk will be a great insight into how react can help you rapidly prototype a business idea, with what went well and what went badly.
// LICENSE | |
// | |
// This software is dual-licensed to the public domain and under the following | |
// license: you are granted a perpetual, irrevocable license to copy, modify, | |
// publish, and distribute this file as you see fit. | |
using System; | |
using System.Collections.Generic; | |
public static class FuzzyMatcher |
### | |
### | |
### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
### https://christitus.com/windows-tool/ | |
### https://github.com/ChrisTitusTech/winutil | |
### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
### iwr -useb https://christitus.com/win | iex | |
### | |
### OR take a look at | |
### https://github.com/HotCakeX/Harden-Windows-Security |