Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { serve } from 'https://deno.land/[email protected]/http/server.ts'; | |
const PORT = 8088; | |
const ALLOWED_HEADERS = ['x-api-key', 'anthropic-version', 'Content-Type']; | |
function addCORSHeaders(responseHeaders: Headers) { | |
responseHeaders.set('Access-Control-Allow-Origin', '*'); // Allow requests from any origin | |
responseHeaders.set('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS'); // Allowed methods | |
responseHeaders.set('Access-Control-Allow-Headers', '*'); // Allow all headers | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function anthropicReproducable(content: string): Promise<string> { | |
try { | |
let apiKey = 'Add API key' | |
const data = { | |
model: 'claude-3-sonnet-20240229', | |
system: "You are helpful assistant and your name it Le'Claude. Always add your name in response", | |
messages: [ | |
{ | |
role: 'user', | |
content: content, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### A Pluto.jl notebook ### | |
# v0.12.18 | |
using Markdown | |
using InteractiveUtils | |
# ╔═╡ 72d474ec-4327-11eb-26d0-072a3be1e84f | |
begin | |
using Pkg | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta name="viewport" content="width=device-width" /> | |
<title>⚡ Pluto.jl ⚡</title> | |
<meta charset="utf-8" /> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fonsp/[email protected]/frontend/editor.css" type="text/css" /> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fonsp/[email protected]/frontend/treeview.css" type="text/css" /> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fonsp/[email protected]/frontend/hide-ui.css" type="text/css" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Func = (...args: any[]) => any; | |
type FirstParam<T extends Func> = | |
T extends (arg: infer J, ...args: infer U) => infer V | |
? J | |
: never; | |
type TailParams<T extends Func> = | |
T extends (arg: infer J, ...args: infer U) => infer V | |
? U |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Define variables | |
DOMAIN=foo.example.com | |
# renew cert | |
certbot renew | |
# combine latest letsencrypt files for mongo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.21; | |
import './GlobalCalculator.sol'; | |
contract GlobalCalculator_V2 is GlobalCalculator_V1 { | |
function getMul() public view returns (uint mul) { | |
mul = 1; | |
for (uint i = 0;i < _nums.length; i++) { | |
mul *= _nums[i]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.21; | |
contract GlobalCalculator_V1 { | |
uint[] internal _nums; | |
function addNum(uint x) public { | |
_nums.push(x); | |
} | |
function getSum() public view returns (uint sum) { |
NewerOlder