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 | |
| sudo apt install gnupg ca-certificates | |
| sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | |
| echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list | |
| sudo apt update | |
| sudo apt install mono-complete |
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
| {"lastUpload":"2019-02-12T06:31:20.615Z","extensionVersion":"v3.2.4"} |
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
| %% | |
| %% This is file `model2-names.bst', | |
| %% | |
| %% Copyright 2009 Elsevier Ltd | |
| %% | |
| %% This file is part of the 'Elsarticle Bundle'. | |
| %% --------------------------------------------- | |
| %% | |
| %% It may be distributed under the conditions of the LaTeX Project Public | |
| %% License, either version 1.2 of this license or (at your option) any |
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
| # Built application files | |
| *.apk | |
| *.ap_ | |
| # Files for the ART/Dalvik VM | |
| *.dex | |
| # Java class files | |
| *.class |
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
| <form name="form1"> | |
| <input type="text" name="sdate"> | |
| <input type="submit" value="Submit" onclick="checkDate(form1.sdate)"> | |
| </form> |
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
| #include<stdio.h> | |
| int main() | |
| { | |
| printf("Hello World!"); | |
| } |
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
| \documentclass{exam} | |
| \usepackage{tikz} | |
| \usepackage{subfig} | |
| \usepackage{amsmath} | |
| \usepackage[margin=1.0in]{geometry} | |
| \pagestyle{empty} | |
| \title{\textbf{Mock Test OMR Sheet}} | |
| \author{Author Name} | |
| \date{} | |
| \begin{document} |
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.io.*; | |
| import java.net.*; | |
| public class Receiver{ | |
| ServerSocket reciever; | |
| Socket connection=null; | |
| ObjectOutputStream out; | |
| ObjectInputStream in; | |
| String packet,ack,data=""; | |
| int i=0,sequence=0; | |
| Receiver(){} |
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.io.*; | |
| import java.net.*; | |
| public class Sender{ | |
| Socket sender; | |
| ObjectOutputStream out; | |
| ObjectInputStream in; | |
| String packet,ack,str, msg; | |
| int n,i=0,sequence=0; | |
| Sender(){} | |
| public void run(){ |
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.awt.*; | |
| import java.awt.event.*; | |
| import java.io.*; | |
| import java.net.*; | |
| public class AppClient extends Frame implements ActionListener,Runnable | |
| { | |
| //Declarations | |
| Button b; |
NewerOlder