File tree Expand file tree Collapse file tree 5 files changed +55
-0
lines changed
Expand file tree Collapse file tree 5 files changed +55
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " MechMind Security Protocol"
2+ paths :
3+ - " projects/mechbot-2x/src"
4+ - " docs/ai-research"
5+ paths-ignore :
6+ - " **/tests/**"
7+ - " **/tmp/**"
Original file line number Diff line number Diff line change 1+ name : " 🛡️ MechMind Security Scan (Testing)"
2+
3+ on :
4+ push :
5+ branches : [codeql-fix]
6+ pull_request :
7+ branches : [codeql-fix]
8+
9+ jobs :
10+ analyze :
11+ runs-on : ubuntu-latest
12+ permissions :
13+ security-events : write
14+ actions : read
15+ steps :
16+ - uses : actions/checkout@v4
17+ - name : Initialize CodeQL
18+ uses : github/codeql-action/init@v3
19+ with :
20+ languages : rust,python
21+ config-file : .github/codeql/mechmind-config.yml
22+ - name : Analyze
23+ uses : github/codeql-action/analyze@v3
Original file line number Diff line number Diff line change 1+ // Configuración de partículas (simplificada)
2+ const canvas = document . getElementById ( 'particles' ) ;
3+ const ctx = canvas . getContext ( '2d' ) ;
4+ canvas . width = window . innerWidth ;
5+ canvas . height = window . innerHeight ;
6+
7+ // Implementar lógica de partículas aquí...
Original file line number Diff line number Diff line change 1+ // Efecto typewriter
2+ const elements = document . querySelectorAll ( '.type' ) ;
3+ elements . forEach ( el => {
4+ const text = el . textContent ;
5+ el . textContent = '' ;
6+ let i = 0 ;
7+ const typing = setInterval ( ( ) => {
8+ el . textContent += text [ i ] ;
9+ i ++ ;
10+ if ( i >= text . length ) clearInterval ( typing ) ;
11+ } , 100 ) ;
12+ } ) ;
Original file line number Diff line number Diff line change 1+ // ¡Mensaje de éxito!
2+ fn main() {
3+ println!("🎉 ¡Sitio desplegado con éxito!");
4+ println!("🌐 Visita: https://mechmind-dwv.github.io");
5+ println!("🤖 Recuerda: Grandes poderes requieren grandes commits");
6+ }
You can’t perform that action at this time.
0 commit comments