I hereby claim:
- I am gngchrs on github.
- I am ganga (https://keybase.io/ganga) on keybase.
- I have a public key ASB7GtPQJQf0r5N4bPu_kANfTtYd0jftXQf1mI92-IM4_go
To claim this, I am signing this object:
services: | |
ts-ollama-ui: | |
image: tailscale/tailscale:latest | |
container_name: ts-ollama-ui | |
hostname: ollama-ui # http://ollama-ui.<tailnet>.ts.net | |
extra_hosts: | |
- "host.docker.internal:host-gateway" # important for ollama web ui to communicate with ollama running locally | |
environment: | |
- TS_AUTHKEY=<YOUR_OAUTH_KEY / YOUR_AUTH_KEY > | |
- "TS_EXTRA_ARGS=--advertise-tags=tag:container --reset" ## only needed if you use YOUR_OAUTH_KEY with owner tags |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
f, err := os.Open("salary.txt") | |
if err != nil { | |
log.Fatal(err) | |
} | |
defer f.Close() | |
var xs []float64 | |
scan := bufio.NewScanner(f) | |
for scan.Scan() { | |
var v float64 |
pragma solidity ^0.4.20; | |
contract Cars { | |
// we declare a custom type car | |
struct Car { | |
bytes32 make; | |
uint year; | |
} | |
// we create a map that takes ethereum address and maps them to a Cars array |
version: '2' | |
networks: | |
basic: | |
services: | |
ca.example.com: | |
image: hyperledger/fabric-ca | |
environment: | |
- FABRIC_CA_HOME=/etc/hyperledger/fabric-ca-server |
// After studying the problem, you'll see an arithemetic progression like pattern | |
// Using the sum of arithmetic progression could easily work too. | |
// But on further inspection, it's a simple consectuive numbers problem. | |
function getConsecutiveDevisors(num) { | |
let lowerDevisor = Math.floor(Math.sqrt(num)) | |
let higherDevisor = lowerDevisor + 1; | |
if (lowerDevisor * higherDevisor === num) { | |
return [lowerDevisor, lowerDevisor + 1] | |
} |
<?php | |
Route::group(['middleware' => ['web', 'auth','adminMiddleware']], function () { | |
Route::get('/panel/home', 'UserAdminController@showAdminHome'); | |
Route::get('/panel/home', 'UserRegionController@showAdminRegionHome'); | |
Route::get('/panel/home', 'UserPlaceController@showAdminPlaceHome'); | |
}); |
DB_HOST=database | |
DB_DATABASE=homestead | |
DB_USERNAME=homestead | |
DB_PASSWORD=secret |