how to create a text file in kali - using nano
http://www.techtrick.in/description/3472-how-to-create-a-text-file-in-kali-using-nano
seen from Chile

seen from Germany
seen from Yemen
seen from India
seen from T1
seen from Malaysia
seen from United Kingdom
seen from Türkiye
seen from Türkiye
seen from United States
seen from Colombia
seen from China
seen from Saudi Arabia
seen from United States
seen from United States
seen from United States

seen from Belarus

seen from Malaysia
seen from France

seen from Sweden
how to create a text file in kali - using nano
http://www.techtrick.in/description/3472-how-to-create-a-text-file-in-kali-using-nano

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Excel VBA - Copying a Workbook to a SharePoint site via Windows Scripting
I created this as a part of a macro that refreshes a report and posts it to our sharepoint site. I decided to go with Windows Scripting since it copies the file to SharePoint without lagging the workbook in the meantime. For the FileSystemObject set a reference (VBA Editor > Tools > References) to "Microsoft Scripting Runtime".
  Dim WB as Workbook: Set WB = ActiveWorkbook
  Dim FSO As New FileSystemObject
  Dim TS As TextStream: Set TS = FSO.CreateTextFile("c:\copy.bat", True)
  TS.WriteLine "@echo off"
  TS.WriteLine "echo Uploading " & WB.Name & " to Sharepoint"
  TS.WriteLine "copy " & Chr(34) & WB.fullName & Chr(34) & " " & Chr(34) & "\\sharepoint_site\Reports\" & WB.Name & Chr(34)
  TS.WriteLine "echo " & WB.Name & " successfully uploaded."
  TS.WriteLine "pause"
  TS.Close
  Dim SH As Object: Set SH = CreateObject("wscript.shell")
  SH.Run "c:\copy.bat"
  Set SH = Nothing