sometimes... to get a task done... you have to break it down into very tiny tasks over a period of time
and sometimes... you forget in the middle of this process... and close the tab you had open, instantly obliterating all your progress

seen from Singapore
seen from Malaysia
seen from United Kingdom

seen from China
seen from United States

seen from United Kingdom

seen from Sweden
seen from China
seen from Germany

seen from Malaysia
seen from China
seen from South Korea

seen from Singapore

seen from Malaysia

seen from Russia
seen from China
seen from Sweden
seen from Singapore
seen from Croatia
seen from India
sometimes... to get a task done... you have to break it down into very tiny tasks over a period of time
and sometimes... you forget in the middle of this process... and close the tab you had open, instantly obliterating all your progress
Чтение текстовых файлов
Часто в моушен-дизайне требуется создавать какие-то сложные текстовые сцены, будь то облака тегов, всплывающие титры и так далее. Конечно, можно их всех расставлять вручную, но это не наш метод. Было бы здорово читать тексты из отдельного файла!
golangでテキストファイルをstringとして読む
multipart/form-dataにて送られてきたテキストファイルをstringとして出力する方法メモ
func readReceiveFileToString(r *http.Request, fieldName string) (string, error) { // limit your max input length r.ParseMultipartForm(32 << 20) // open file file, _, err := r.FormFile(fieldName) if err != nil { return "", errors.New("failed to read file") } defer file.Close() // read to buffer var buf bytes.Buffer io.Copy(&buf, file) content := buf.String() buf.Reset() return content, nil }
ref
https://stackoverflow.com/questions/40684307/how-can-i-receive-an-uploaded-file-using-a-golang-net-http-server
ESP8266 SPIFFS: Reading a file
ESP8266 SPIFFS: Reading a file
In this tutorial we will learn how to read the content of file from the ESP8266 SPIFFS file system, using the Arduino core. The tests shown on this tutorial were performed on a DFRobot’s ESP8266 FireBeetle board.
(more…)
View On WordPress
VBScript that read from one file to write in another
VBScript that read from one file to write in another
Hello,
Here I leave you a VBScript I did to modify a TXT file with the information of other file.
We read the file “C:\myfolder\information.txt” and fil the variables. We read and write the file “C:\myfolder\final.txt” with the values we did read before in the case is needed.
‘*************************************************************************** *********** Const ForReading=1 Const…
View On WordPress
La manipulation des fichiers textes est une tâche quotidienne. Ainsi, pouvoir lire un fichier texte en une seule ligne de code constitue un...
La manipulation des fichiers textes est une tâche quotidienne. Ainsi, pouvoir lire un fichier texte en une seule ligne de code constitue un...
Micro:bit MicroPython: reading a file from the file system
Micro:bit MicroPython: reading a file from the file system
In this tutorial we will check how to read the content of a file from the micro:bit file system, using MicroPython.
(more…)
View On WordPress
(via https://www.youtube.com/watch?v=2Ntnlv-nuV8)