Skip to content

Instantly share code, notes, and snippets.

View CyberGhost007's full-sized avatar
🦉
I lack the arrogance to ignore details

Knight Owl CyberGhost007

🦉
I lack the arrogance to ignore details
View GitHub Profile
@CyberGhost007
CyberGhost007 / gist:2f75e2f4171b5687e1c8f45d4b90760c
Created April 28, 2025 19:55
Happie Child Safety Standards Against CSAE
# Happie Child Safety Standards Against CSAE
## Introduction
Happie is committed to maintaining a safe environment for all users, with special emphasis on protecting children from sexual abuse and exploitation. This document outlines our standards, policies, and procedures designed to prevent, detect, and address child sexual abuse and exploitation (CSAE) within our platform.
## Definitions
### Child Sexual Abuse and Exploitation (CSAE)
Content or behavior that sexually exploits, abuses, or endangers children. This includes but is not limited to:
- Grooming a child for sexual exploitation
@CyberGhost007
CyberGhost007 / sliver_scroll.dart
Created April 29, 2020 05:40 — forked from slightfoot/sliver_scroll.dart
Example of having a layout with nested scrolling tabs with Slivers.
// MIT License
//
// Copyright (c) 2019 Simon Lightfoot
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
@CyberGhost007
CyberGhost007 / snapping_list_view.dart
Created April 18, 2020 09:15 — forked from yunyu/snapping_list_view.dart
A Flutter PageView replacement/snapping ListView for fixed-extent items
import "package:flutter/widgets.dart";
import "dart:math";
class SnappingListView extends StatefulWidget {
final Axis scrollDirection;
final ScrollController controller;
final IndexedWidgetBuilder itemBuilder;
final List<Widget> children;
final int itemCount;
import 'dart:math' as math;
import 'package:flutter/material.dart';
import 'package:vector_math/vector_math_64.dart' as vectors;
void main() => runApp(TestApp());
class TestApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(