File size: 7,872 Bytes
94c2a89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Mark's Hugging Face Links</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            color: white;
            padding: 40px;
            text-align: center;
        }
        
        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .content {
            padding: 40px;
        }
        
        .section {
            margin-bottom: 40px;
        }
        
        .section h2 {
            color: #4a4a4a;
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #4ecdc4;
            display: inline-block;
        }
        
        .link-card {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .link-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-color: #4ecdc4;
        }
        
        .link-card h3 {
            color: #333;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        
        .link-card p {
            color: #666;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }
        
        .link-card a {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
            word-break: break-all;
            font-size: 0.9rem;
        }
        
        .link-card a:hover {
            color: #4ecdc4;
            text-decoration: underline;
        }
        
        .warning {
            background: linear-gradient(135deg, #ff9a9e, #fecfef);
            border: 2px solid #ff6b6b;
            border-radius: 8px;
            padding: 10px;
            margin-top: 8px;
            font-size: 0.85rem;
            color: #721c24;
            font-weight: 500;
        }
        
        .footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .content {
                padding: 20px;
            }
            
            .section h2 {
                font-size: 1.5rem;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <h1>Mark's Hugging Face Links</h1>
            <p>A curated collection of AI tools and spaces on Hugging Face</p>
        </div>
        
        <div class="content">
            <div class="section">
                <h2>🎨 Image Creation</h2>
                
                <div class="link-card">
                    <h3>Qwen Image LORA</h3>
                    <p>An AI image generation tool that uses LORA (Low-Rank Adaptation) technology with the Qwen model to create custom images based on text prompts.</p>
                    <a href="https://huggingface.co/spaces/Heartsync/Qwen-Image-LORA" target="_blank">https://huggingface.co/spaces/Heartsync/Qwen-Image-LORA</a>
                </div>
                
                <div class="link-card">
                    <h3>NSFW Uncensored Photo Generator</h3>
                    <p>An uncensored image generation tool for adult content creation. Requires age verification and appropriate usage guidelines.</p>
                    <a href="https://huggingface.co/spaces/Heartsync/NSFW-Uncensored-photo?not-for-all-audiences=true" target="_blank">https://huggingface.co/spaces/Heartsync/NSFW-Uncensored-photo</a>
                    <div class="warning">⚠️ Adult Content - Not suitable for all audiences</div>
                </div>
                
                <div class="link-card">
                    <h3>NSFW Generator by Jesse311</h3>
                    <p>Another adult-oriented image generation tool that creates NSFW content based on text descriptions and parameters.</p>
                    <a href="https://huggingface.co/spaces/Jesse311/nsfw_gen?not-for-all-audiences=true" target="_blank">https://huggingface.co/spaces/Jesse311/nsfw_gen</a>
                    <div class="warning">⚠️ Adult Content - Not suitable for all audiences</div>
                </div>
            </div>
            
            <div class="section">
                <h2>🎬 Video Creation Tools</h2>
                
                <div class="link-card">
                    <h3>Video Looper v2</h3>
                    <p>A tool for creating seamless video loops. Perfect for creating GIFs, cinemagraphs, or continuous video content that loops smoothly.</p>
                    <a href="https://huggingface.co/spaces/MarkTheArtist/video-looper-v2" target="_blank">https://huggingface.co/spaces/MarkTheArtist/video-looper-v2</a>
                </div>
                
                <div class="link-card">
                    <h3>WAN2-2 FP8DA AOTI Faster</h3>
                    <p>An optimized video processing tool that uses advanced algorithms (FP8DA and AOTI) for faster video generation and manipulation with improved performance.</p>
                    <a href="https://huggingface.co/spaces/zerogpu-aoti/wan2-2-fp8da-aoti-faster" target="_blank">https://huggingface.co/spaces/zerogpu-aoti/wan2-2-fp8da-aoti-faster</a>
                </div>
            </div>
            
            <div class="section">
                <h2>📺 Video Player</h2>
                
                <div class="link-card">
                    <h3>Advanced Video Player</h3>
                    <p>A feature-rich video player with advanced controls, multiple format support, and enhanced viewing options for better video playback experience.</p>
                    <a href="https://huggingface.co/spaces/MarkTheArtist/advanced-video-player" target="_blank">https://huggingface.co/spaces/MarkTheArtist/advanced-video-player</a>
                </div>
            </div>
            
            <div class="section">
                <h2>💻 Coding Help</h2>
                
                <div class="link-card">
                    <h3>DeepSite - New Projects</h3>
                    <p>A development environment for creating new coding projects. Provides tools and templates to help kickstart your development workflow.</p>
                    <a href="https://enzostvs-deepsite.hf.space/projects/new" target="_blank">https://enzostvs-deepsite.hf.space/projects/new</a>
                </div>
            </div>
        </div>
        
        <div class="footer">
            <p>🤗 Powered by Hugging Face Spaces | Curated by Mark</p>
        </div>
    </div>
</body>
</html>