This file contains hidden or 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
| package io.jadu.nivi.ai | |
| import org.apache.commons.csv.CSVFormat | |
| import smile.anomaly.IsolationForest | |
| import smile.base.cart.SplitRule | |
| import smile.data.formula.Formula | |
| import smile.io.Read | |
| import smile.nlp.tokenizer.SimpleTokenizer | |
| fun main() { |
This file contains hidden or 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
| package io.jadu.nivi.ai | |
| import org.apache.commons.csv.CSVFormat | |
| import smile.classification.RandomForest | |
| import smile.data.DataFrame | |
| import smile.data.formula.Formula | |
| import smile.data.measure.NominalScale | |
| import smile.io.Read | |
| import smile.nlp.normalize |
This file contains hidden or 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 'package:flutter/material.dart'; | |
| import 'package:flutter_earth_globe/flutter_earth_globe.dart'; | |
| import 'package:flutter_earth_globe/flutter_earth_globe_controller.dart'; | |
| import 'package:flutter_earth_globe/globe_coordinates.dart'; | |
| import 'package:flutter_earth_globe/point.dart'; | |
| import 'package:flutter_earth_globe/point_connection.dart'; | |
| void main() { | |
| runApp(const MyApp()); | |
| } |
This file contains hidden or 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
| package io.jadu | |
| import java.io.File | |
| data class User( | |
| val name: String?, | |
| val email: String?, | |
| val role: String, | |
| val age: Int | |
| ) |
This file contains hidden or 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 androidx.compose.foundation.Canvas | |
| import androidx.compose.foundation.Image | |
| import androidx.compose.foundation.background | |
| import androidx.compose.foundation.border | |
| import androidx.compose.foundation.gestures.detectDragGestures | |
| import androidx.compose.foundation.layout.* | |
| import androidx.compose.foundation.shape.RoundedCornerShape | |
| import androidx.compose.material3.Text | |
| import androidx.compose.runtime.* | |
| import androidx.compose.ui.Alignment |
This file contains hidden or 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
| // add this to your commonMain.dependencies | |
| // implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.7.1") | |
| @OptIn(ExperimentalTime::class) | |
| @Composable | |
| fun CarouselCalendar() { | |
| //// Clock.System.now() -> Output: 2025-11-15T14:30:45.123456789Z | |
| //// (Year-Month-Day T Hour:Minute:Second.Nanoseconds Z for UTC) | |
This file contains hidden or 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 androidx.compose.animation.AnimatedVisibility | |
| import androidx.compose.foundation.Image | |
| import androidx.compose.foundation.background | |
| import androidx.compose.foundation.layout.Arrangement | |
| import androidx.compose.foundation.layout.Box | |
| import androidx.compose.foundation.layout.Column | |
| import androidx.compose.foundation.layout.Row | |
| import androidx.compose.foundation.layout.Spacer | |
| import androidx.compose.foundation.layout.fillMaxSize | |
| import androidx.compose.foundation.layout.fillMaxWidth |
This file contains hidden or 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
| %------------------------- | |
| % Generic Resume in LaTeX | |
| % Author : Your Name | |
| %------------------------ | |
| \documentclass[letterpaper,11pt]{article} | |
| \usepackage{latexsym} | |
| \usepackage[empty]{fullpage} | |
| \usepackage{titlesec} |
This file contains hidden or 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
| HTTP | |
| url | |
| Method : Get | |
| Headers | |
| Content-Type application/json | |
| Authorization Bearer <token> |
This file contains hidden or 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
| @Composable | |
| fun KawaiiCloudWithRainbow() { | |
| // Animation for cloud bounce | |
| val infiniteTransition = rememberInfiniteTransition() | |
| val cloudBounce by infiniteTransition.animateFloat( | |
| initialValue = 0f, | |
| targetValue = 20f, | |
| animationSpec = infiniteRepeatable( | |
| tween(1000, easing = FastOutSlowInEasing), | |
| repeatMode = RepeatMode.Reverse |
NewerOlder