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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>First Page</title> | |
| <style> | |
| #wrapper { | |
| width: 960px; | |
| margin: 0px auto; |
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 java.util.*; | |
| public class AskPass { | |
| public static void main(String[] args) { | |
| int password = 1234; | |
| double amount = 5674.25; | |
| Scanner sc = new Scanner(System.in); | |
| System.out.print("Enter your PIN number : "); |
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 java.util.*; | |
| public class Atm { | |
| public static void main(String arg[]) { | |
| int pasward = 1234; | |
| double amount = 5674.25; | |
| Scanner sc = new Scanner(System.in); | |
| System.out.println("\tWelcome To ABC Bank"); |
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
| var initGrnDetailsViewDataTable = function() { | |
| $('#grn_list_table').DataTable({ | |
| ajax: { | |
| url: base_url + 'grn/ajax_getGrnListDatatableData', | |
| dataSrc: 'data' | |
| }, | |
| columns: [ | |
| { data: 'index' }, | |
| { data: 'id' }, |
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
| <?php | |
| namespace App\Traits; | |
| use Illuminate\Support\Str; | |
| trait UUIDable | |
| { | |
| /** |
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
| WidgetsFlutterBinding.ensureInitialized(); | |
| // more code in here | |
| await SystemChrome.setPreferredOrientations( | |
| <DeviceOrientation>[ | |
| DeviceOrientation.portraitUp, | |
| DeviceOrientation.portraitDown, | |
| ], | |
| ).then( |
OlderNewer