Skip to content

Instantly share code, notes, and snippets.

View fededri's full-sized avatar

Federico Torres fededri

  • Autodesk
  • Argentina | Mexico
View GitHub Profile
@lukeredpath
lukeredpath / Converting a TCA App to Swift 6.md
Last active January 5, 2026 17:34
Converting a TCA app to Swift 6

I maintain the Community mobile app - a moderately large codebase that is fully modularized using Swift Package Manager and uses The Composable Architecture. I have recently completed the process of getting the project ready for Xcode 16 and Swift 6 and I wanted to outline the approach I took and some of the issues I encountered, especially regarding TCA.

The Approach

There are already [good

@dcatanzaro
dcatanzaro / botcito_galicia.js
Last active April 15, 2026 18:41
Botcito para el Galicia
const axios = require("axios");
let lastIndexMovement = 0;
const TELEGRAM_BOTID = "";
const TELEGRAM_CHATID = "";
class Telegram {
sendTelegramMessage(message) {
const botId = TELEGRAM_BOTID;
@tank777
tank777 / CustomLinearLayoutManager.java
Created June 15, 2017 16:58
stop recyclerview scroll
package com.bgt.stopscrollrecycleview;
import android.content.Context;
import android.support.v7.widget.LinearLayoutManager;
import android.util.AttributeSet;
/**
* Created by Bhavesh on 15-06-2017.
*/