Skip to content

Instantly share code, notes, and snippets.

@eval7524
eval7524 / StudentGradeManageExample.java
Last active March 13, 2025 12:38
Auto-uploaded file: /Users/eval7524/IdeaProjects/learn-java/src/Test/StudentGradeManageExample.java
package Test;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Scanner;
public class StudentGradeManageExample {
private static Scanner scanner = new Scanner(System.in);
private static HashMap<String, List<Integer>> student = new HashMap<>();
https://docs.google.com/forms/d/e/1FAIpQLSd3YLEJwfcM63SQThb8_vJ8IHiT1Y6SgeyXbU_IT18k860hXg/viewform?usp=pp_url&entry.1604177347=Ho%C3%A0ng%20%C4%90%C4%83ng%20T%C3%ADn&entry.934278241=16&entry.1967832303=10&entry.1266219751=2%20months&entry.1578862410=Very%20important&entry.1872946092=Communicate%20professionally&entry.1872946092=Opportunities%20to%20improve%20presentation%20skills&entry.1872946092=Find%20a%20job&entry.1029244542=A%20few%20times%20a%20week&entry.2134210311=2%20to%205%20hours&entry.1409566066=Somewhat%20Confident&entry.138928753=Practicing%20English%20conversations%20with%20friends%2C%20tutors%2C%20or%20language%20partners.&entry.138928753=Watching%20IELTS%20Speaking%20test%20videos%20and%20mimicking%20responses.&entry.1165262576=Practising%20with%20foreigners&entry.1165262576=Using%20online%20dictionaries%20(Oxford%2C%20Cambridge%E2%80%A6)%20and%20imitate&entry.1165262576=Chatting%20with%20AI&entry.1165262576=Using%20apps%20(like%20ELSA%20speak%2C%20duolingo%2C%E2%80%A6)%20to%20practice&entry.
- id: <package id>
name: <package name>
version: <version>
date: <date>
requires:
- <ids of packages required by this package (optional)>
- ...
path: <path to package zip file>
sha256: <sha256 of zip>
metadata:
@evmxattr
evmxattr / GoogleDorking.md
Created March 13, 2025 12:06 — forked from sundowndev/GoogleDorking.md
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
https://docs.google.com/forms/d/e/1FAIpQLSdPAPt1zDEh2sG0SGmQe5zvKDtLC4yrhSOu74gK5XeRkdXEmQ/viewform?usp=pp_url&entry.1882982798=Ho%C3%A0ng%20%C4%90%C4%83ng%20T%C3%ADn&entry.175390783=8.0&entry.1917580605=3%20years&entry.608139971=Immediately%20pointing%20out%20the%20mistakes%20and%20correcting%20them%20while%20the%20student%20is%20still%20speaking&entry.608139971=Using%20mouth%20diagrams%2C%20gestures%2C%20or%20mirrors%20to%20show%20how%20to%20position%20the%20tongue%2C%20lips%2C%20and%20teeth.&entry.608139971=Breaking%20down%20long%20or%20difficult%20words%20into%20smaller%20parts.%20(Eg%3A%20Com-fort-a-ble%20%E2%86%92%20Comf-tuh-bul)&entry.885588448=Providing%20the%20synonyms%2C%20antonyms%2C%20and%20word%20families%20when%20teaching%20new%20words&entry.885588448=Practicing%20new%20words%20in%20speaking%20%26%20writing&entry.1725446628=Teaching%20the%20speaking%20formula%20for%20IELTS%20answers&entry.1725446628=Encouraging%20students%20to%20expand%20their%20answers&entry.1725446628=Others&entry.1216682654=H
const std = @import("std");
const microzig = @import("microzig");
const rp2xxx = microzig.hal;
const gpio = rp2xxx.gpio;
const time = rp2xxx.time;
const Pio = rp2xxx.pio.Pio;
const StateMachine = rp2xxx.pio.StateMachine;
@zagorizont111
zagorizont111 / widget.html
Created March 13, 2025 12:04
ElevenLabs Widget
<!DOCTYPE html>
<html>
<head>
<title>ElevenLabs Widget</title>
<style>
body { margin: 0; padding: 0; }
elevenlabs-convai {
display: block !important;
min-height: 200px;
width: 300px !important;
@sunmeat
sunmeat / Program.cs
Created March 13, 2025 12:04
CLIENT SIDE TcpListener / TcpClient example
using System.Net.Sockets;
using System.Net;
using System.Text;
class Client
{
private const int DEFAULT_BUFLEN = 512;
private const int DEFAULT_PORT = 27015;
static async Task Main()
@lisonge
lisonge / list.kt
Last active March 13, 2025 12:06
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.aspectRatio
import androidx.compose.foundation.layout.fillMaxHeight
@sunmeat
sunmeat / Program.cs
Created March 13, 2025 12:04
SERVER SIDE TcpListener / TcpClient example
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Collections.Concurrent;
class Server
{
private const int DEFAULT_BUFLEN = 512;
private const int DEFAULT_PORT = 27015;
private static ConcurrentQueue<(TcpClient, byte[])> messageQueue = new ConcurrentQueue<(TcpClient, byte[])>();