Since Chrome apps are now being depracated. Download postman from https://dl.pstmn.io/download/latest/linux
tar -xzf Postman-linux-x64-5.3.2.tar.gzIf any version is installed before, remove it.
sudo rm -rf /opt/PostmanSince Chrome apps are now being depracated. Download postman from https://dl.pstmn.io/download/latest/linux
tar -xzf Postman-linux-x64-5.3.2.tar.gzIf any version is installed before, remove it.
sudo rm -rf /opt/Postman| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="com.example" | |
| android:versionCode="1" | |
| android:versionName="1.0"> | |
| <uses-sdk android:minSdkVersion="8"/> | |
| <uses-permission android:name="android.permission.READ_CONTACTS" /> | |
| <application android:label="@string/app_name"> |
| @echo off | |
| SET st3Path=C:\Program Files\Sublime Text 3\sublime_text.exe | |
| rem add it for all file types | |
| @reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f | |
| @reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f | |
| @reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f | |
| rem add it for folders | |
| @reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f |
| private String createCalendarEventReminder(String eventName, String location, int minutesAway) { | |
| String reminder = "You have an upcoming event in " + minutesAway + " minutes."; | |
| reminder = reminder + " It is " + eventName + " held at " + location + "."; | |
| return reminder; | |
| } |
| /** | |
| * Calculates the price of the order based on the current quantity. | |
| * | |
| * @return the price | |
| */ | |
| private int calculate price(int quantity { | |
| int price = quantity * 5; | |
| return price; | |
| } |