Rename a file using Java

Copied from http://exampledepot.8waytrips.com/egs/java.io/RenameFile.html // File (or directory) with old name File file = new File(“oldname”); // File (or directory) with new name File file2 = new File(“newname”); if (file2.exists()) throw new java.io.IOException(“file exists”); // Rename file (or directory) boolean success = file.renameTo(file2); if (!success) { // File was not successfully renamed } To append to … Read more

Rename Pandas DataFrame Index

The rename method takes a dictionary for the index which applies to index values. You want to rename to index level’s name: df.index.names = [‘Date’] A good way to think about this is that columns and index are the same type of object (Index or MultiIndex), and you can interchange the two via transpose. This … Read more

How to change dataframe column names in PySpark?

There are many ways to do that: Option 1. Using selectExpr. data = sqlContext.createDataFrame([(“Alberto”, 2), (“Dakota”, 2)], [“Name”, “askdaosdka”]) data.show() data.printSchema() # Output #+——-+———-+ #| Name|askdaosdka| #+——-+———-+ #|Alberto| 2| #| Dakota| 2| #+——-+———-+ #root # |– Name: string (nullable = true) # |– askdaosdka: long (nullable = true) df = data.selectExpr(“Name as name”, “askdaosdka as … Read more

Renaming files in a folder to sequential numbers

Try to use a loop, let, and printf for the padding: a=1 for i in *.jpg; do new=$(printf “%04d.jpg” “$a”) #04 pad to length of 4 mv -i — “$i” “$new” let a=a+1 done using the -i flag prevents automatically overwriting existing files, and using — prevents mv from interpreting filenames with dashes as options.

Renaming a branch in GitHub

As mentioned, delete the old one on GitHub and re-push, though the commands used are a bit more verbose than necessary: git push origin :name_of_the_old_branch_on_github git push origin new_name_of_the_branch_that_is_local Dissecting the commands a bit, the git push command is essentially: git push <remote> <local_branch>:<remote_branch> So doing a push with no local_branch specified essentially means “take … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)