- Name: Yash Lamba
- Organisation: Python Software Foundation
- Sub-Organisation: DFFML
- Project: Adding Machine Learning Models to DFFML
- Proposal: https://blogs.python-gsoc.org/media/proposals/GSoC_Proposal_for_PSF__DFFML2.pdf
This file contains 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 csv | |
from math import cos, pi, sin, sqrt | |
from sympy.physics.wigner import wigner_3j as w3j | |
from sympy.physics.wigner import wigner_6j | |
wigner_3j = lambda *args: w3j(*args).n() | |
# from wigners import clebsch_gordan, wigner_3j |
This file contains 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:async'; | |
import 'dart:math'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/services.dart'; | |
void main() { | |
runApp(const SnakeGame()); | |
} |
This file contains 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:async'; | |
import 'dart:math'; | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const SnakeGame()); | |
} | |
class SnakeGame extends StatelessWidget { |
This file contains 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'; | |
import 'dart:math'; | |
import 'dart:ui'; | |
final Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} |