Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
@lvanasse
lvanasse / ci-sim-02.log
Created February 11, 2025 19:24
[sim-02] CI Log for nuttx @ 381d3fe64f4da2b09f12bd8f0cd2d1f07d86b3d3 / nuttx-apps @ fb0c1e10ded2a6fb9f066b9893662cbcc86e4646
Script started on 2025-02-11 19:03:42+00:00 [COMMAND="/home/ludovic/nuttx-release/run-job.sh sim-02" <not executed on terminal>]
Now running https://github.com/lupyuen/nuttx-release/blob/main/run-job.sh
Called by https://github.com/lupyuen/nuttx-release/blob/main/run-ci.sh
+ job=sim-02
+ neofetch
.-/+oossssoo+/-.
`:+ssssssssssssssssss+:`
-+ssssssssssssssssssyyssss+-
.ossssssssssssssssssdMMMNysssso.
/ssssssssssshdmmNNmmyNMMMMhssssss/
using System.Text;
namespace Lesson;
internal class Program
{
static void Main(string[] args)
{
Console.InputEncoding = Encoding.Unicode;
Console.OutputEncoding = Encoding.Unicode;
@dosasacades
dosasacades / gist:4145c4f2fa9a3a7bcfb0c904c5b90098
Created February 11, 2025 19:24
Stardock Start10 Full Download [Latest] 2025
Stardock Start10 is an handy application that adds a start button in Windows 10. It brings a more familiar look to the Windows 10 start menu. The new start menu in Windows 10 has a layout that places great emphasis on applications.Stardock Start10 Full Version can help users become familiar with the layout of the Windows 7 style and provide other custom settings with just a few mouse clicks. The Windows 10 Start menu is designed to be very useful on both desktop and tablet computers.
Download Link
https://sulkurl.com/lxr
@prakhart111
prakhart111 / main.dart
Created February 11, 2025 19:24
Snippet created via Next.js API
// Dualite Generated Code
import 'package:flutter/material.dart';
import 'dart:convert';
@alex4825
alex4825 / Задание 1
Created February 11, 2025 19:24
UnityAdventure - блок 2-3
using System;
namespace _1_infinitySum
{
internal class Program
{
static void Main(string[] args)
{
const string commandToGetAnswer = "=";
@msmohamedfaruk
msmohamedfaruk / external-client.json
Last active February 11, 2025 19:24
keycloak-open-id-configuration
{
"issuer": "http://localhost:8080/realms/external",
"authorization_endpoint": "http://localhost:8080/realms/external/protocol/openid-connect/auth",
"token_endpoint": "http://localhost:8080/realms/external/protocol/openid-connect/token",
"introspection_endpoint": "http://localhost:8080/realms/external/protocol/openid-connect/token/introspect",
"userinfo_endpoint": "http://localhost:8080/realms/external/protocol/openid-connect/userinfo",
"end_session_endpoint": "http://localhost:8080/realms/external/protocol/openid-connect/logout",
"frontchannel_logout_session_supported": true,
"frontchannel_logout_supported": true,
"jwks_uri": "http://localhost:8080/realms/external/protocol/openid-connect/certs",
@sancristm
sancristm / GoogleSignIn.js
Created February 11, 2025 19:23 — forked from SinaMN75/GoogleSignIn.js
Google Sign up/in in NodeJS and MongoDB
const express = require('express');
const keys = require('./configs/keys');
const mongoose = require('mongoose');
const cookieSession = require('cookie-session');
const passport = require('passport');
require('./models/user');
require('./service/passport');
mongoose.connect(keys.mongoURI);
const app = express();
@ALJEMor
ALJEMor / 11.02.2025_массив слов.cs
Last active February 11, 2025 19:32
11.02.2025_массив слов
using System;
namespace Массив_слов
{
internal class Program
{
static void Main(string[] args)
{
string text = "Дом это стены и стены осыпающейся штукатурки";
#!/usr/bin/env python3
import ast
import os
import argparse
import importlib
import sys
import re
from typing import List, Dict, Any, Optional, Tuple
from pathlib import Path