flowchart TD
%% ์ค์ฌ ๋
ธ๋
OSS[์คํ์์ค ์ํํธ์จ์ด ๊ต์ก ๊ฒฝ๋ก]
%% ์๋ธ๊ทธ๋ํ ๋ ๋ฒจ ์ ์
subgraph ๋ ๋ฒจ1[๋ ๋ฒจ 1 - ํต์ฌ ๊ธฐ๋ฐ ๊ธฐ์ ]
direction TB
TERMINAL[ํฐ๋ฏธ๋ ๊ธฐ๋ณธ]
SHELL[์ ์คํฌ๋ฆฝํธ]
flowchart TB
subgraph "์์ฐ์ด ์ฒ๋ฆฌ ์ ํต์ ์ ๊ทผ๋ฒ (1950s~1980s)"
RULE["๊ท์น ๊ธฐ๋ฐ ์์คํ
<br>- ๋ฌธ๋ฒ ๊ท์น ์๋ ์ ์<br>- ์ ๋ฌธ๊ฐ ์ง์ ๊ธฐ๋ฐ<br>- ํ์ฅ์ฑ ํ๊ณ"]
SYM["๊ธฐํธ์ฃผ์ ์ ๊ทผ๋ฒ<br>- ํ์ ์ธ์ด ๋ฐ ๋ฌธ๋ฒ<br>- ๋
ผ๋ฆฌ ๊ธฐ๋ฐ ์ถ๋ก <br>- ์ ๋งค์ฑ ์ฒ๋ฆฌ ์ด๋ ค์"]
PARSE["๊ตฌ๋ฌธ ๋ถ์ ํธ๋ฆฌ<br>- ๋ฌธ์ฅ ๊ตฌ์กฐ ํํ<br>- ๊ณ์ธต์ ๋ถ์<br>- ์๋ฏธ ํ์
์ ํ"]
end
subgraph "์ํ์ ๊ธฐ๋ฐ"
subgraph "์ ํ๋์ํ (Linear Algebra)"
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
#!/bin/bash | |
# Create backup filename with current date and time | |
BACKUP_FILE=~/.zshrc.backup.$(date +%Y%m%d%H%M%S) | |
# Backup original file | |
cp ~/.zshrc "$BACKUP_FILE" | |
echo "Existing .zshrc file has been backed up to $BACKUP_FILE" | |
# Remove existing ASDF-related settings and create new file |
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
# train_grpo.py | |
# | |
# See https://github.com/willccbb/verifiers for ongoing developments | |
# | |
import re | |
import torch | |
from datasets import load_dataset, Dataset | |
from transformers import AutoTokenizer, AutoModelForCausalLM | |
from peft import LoraConfig | |
from trl import GRPOConfig, GRPOTrainer |
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
void main() { | |
var hello = 'Hello, ๐!'; | |
print(hello.toUpperCase()); // Output: "HELLO, ๐!" | |
hello = 'Hello, ๐!'; | |
print(hello.toLowerCase()); // Output: "hello, ๐!" | |
hello = ' Hello, ๐! '; | |
print(hello.trim()); // Output: "Hello, ๐!" |
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'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatefulWidget { | |
@override | |
State<MyApp> createState() => _MyAppState(); |
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'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatefulWidget { | |
@override | |
State<MyApp> createState() => _MyAppState(); |
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'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatefulWidget { | |
@override | |
State<MyApp> createState() => _MyAppState(); |
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:cloud_firestore/cloud_firestore.dart'; | |
import 'package:firebase_auth/firebase_auth.dart'; | |
import 'package:firebase_core/firebase_core.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:intl/intl.dart'; | |
const Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
const messageLimit = 30; |
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 'dart:convert'; | |
import 'package:http/http.dart'; | |
import 'package:flutter/material.dart'; | |
void main() async { | |
const jsonUrl = "hongsw/67e0d72dffa2908e1715dc89a7b0e802/raw/9c5b1388bd52396ff1917b6928f3bda5fcd3b5c7/webtoon.json"; | |
var toons = []; | |
try{ | |
var response = await get(Uri.https("gist.githubusercontent.com", jsonUrl)); | |
toons = json.decode(response.body)['webtoon']; |
NewerOlder