Skip to content

Instantly share code, notes, and snippets.

View LuisFX's full-sized avatar

LuisFX

  • Orange, CA
  • 18:29 (UTC -07:00)
View GitHub Profile
@LuisFX
LuisFX / README.md
Created October 30, 2025 18:48 — forked from citizenrich/README.md
How to setup HAPI FHIR and Postgres in Docker

Start with a fresh folder and copy a hapi.properties into it. It will be mounted into the container.

Carefully make sure your hapi.properties looks like this:

# add postgres
datasource.driver=org.postgresql.Driver
datasource.url=jdbc:postgresql://db:5432/hapi
hibernate.dialect=org.hibernate.dialect.PostgreSQL95Dialect
datasource.username=admin
datasource.password=admin
{
"nodes": [
{
"width": 300,
"height": 506,
"id": "llmChain_0",
"position": {
"x": 1361.675149891282,
"y": -358.73398583251014
},
{
"nodes": [
{
"width": 300,
"height": 508,
"id": "llmChain_0",
"position": {
"x": 1361.675149891282,
"y": -358.73398583251014
},

Converso

Source code for the paper Converso: Improving LLM Chatbot Interfaces and Task Execution via Conversational Forms.

Getting Started

Prerequisites

@LuisFX
LuisFX / yoga-auto-rotate
Created April 22, 2024 15:44 — forked from emiller/yoga-auto-rotate
Lenovo Yoga 13 tablet mode / auto rotation script (ubuntu/debian)
#!/bin/bash
#
# yoga-auto-rotate -- ghetto-style tablet mode, with keyboard and all.
#
# Simple little script that will detect an orientation change for a
# Lenovo Yoga 13 (very hackily) and adjust the active display's
# orientation and disable/enable the touchpad as necessary.
#
# The Yoga 13 will emit keycode `e03e` at one second intervals
# when the screen is flipped into tablet mode. Since this keycode

Genie+ Android Edition

Project Scope of Work

Objective: The scope of work outlines the tasks and activities required to develop and launch the Genie+ Android slated for release Q1-2024.

August 2023:

Week 1-2 (Aug 15 - Aug 31):

@LuisFX
LuisFX / fsharp-fable-tips.md
Created October 24, 2021 20:44 — forked from enerqi/fsharp-fable-tips.md
Fable F# Notes

Basic Tooling Setup

Fable is an F# language to javascript compiler powered by Babel.

F# is a language that runs on a Microsoft CLR. Using the .NET Core CLR implementation it works on Windows, Mac or Linux.

F# Linux

  • .NET Core SDK - download the latest 2.1 SDK
  • Mono - mono-complete package
  • F# compiler - fsharp package from the mono repository
# imports
from instapy import InstaPy
from instapy import smart_run
# login credentials
insta_username = 'Exxtrarancharmy1@gmail.com'
insta_password = 'Goodman@2021'
comments = [
'SShhheeeeeshhhh'
@LuisFX
LuisFX / instructions.md
Created February 22, 2021 15:31 — forked from richlander/instructions.md
Installing .NET Core 3.0 on Linux ARM64

Installing .NET Core on Linux ARM64

The following intructions can be used to install .NET Core on Linux ARM64.

Pro tip: Check out .NET Core Docker files to determine the exact instructions for installing .NET Core builds, for example .NET Core 3.1 ARM32 SDK Dockerfile.

Installing .NET Core Globally

The following instructions install the latest .NET Core globally. It isn't required to do that, but it provides the best experience.

@LuisFX
LuisFX / Notes.md
Last active February 23, 2021 21:16

Intro

Elm and Functional: Evolution and Career

My evolution with developing software goes a bit like this: I started writing software using C# with, obviously the object-oriented paradigm.

I then started introducing JavaScript, and when TypeScript came out, then I definitely jumped into that merely because programming without types seemed like many steps back.

I started getting interested in functional programming and Elm in particular when React and Redux came about. Since my background was in C# using the .NET framework, F# was an obvious choice to learn the paradigm, but always with the intention of having Elm be the language to be used for UI development.