-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
73 additions
and
13 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
'To-Do list : | ||
|
||
'Faire un syst�me d'envoi de message local � l'aide d'Ethernet. | ||
'Pouvoir envoyer des fichiers � l'aide de FTP | ||
'Le gestionnaire pourra LIRE et T�L�CHARGER des fichiers mais pas modifier ou autres. | ||
'Faire un syst�me qui d�tecte clic droit ou gauche pour PASTE. |
Binary file not shown.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
https://benchspark.dev - Creator's website | ||
https://undernet.onion - just a rondom undernet webiste | ||
https://undertale-network.tumblr.com/ - like okay tumblr | ||
https://undertale-rp.fandom.com/wiki/Undernet#Main_Use - UnderNet Fandom | ||
https://undertale.fandom.com/fr/wiki/Accueil - Undertale Fandom |
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
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Sub reader | ||
'20 lines and more | ||
|
||
_Title "FBD Broadcast Reader" | ||
|
||
Open "./puns.txt" For Input As #1 | ||
10 | ||
For x% = 1 To 20 | ||
Line Input #1, line$ ' A way to loop threw until the 1st 20 lines area read in | ||
Print line$ | ||
Next x% | ||
|
||
Input "Read more or Quit"; responce$ | ||
If responce$ = "Go On" Then | ||
Cls | ||
GoTo 10 'starts over and gets the next 20 | ||
Else | ||
Close #1 | ||
System | ||
End If | ||
|
||
End Sub |