Building customer pricing platform so the bankers can create/ approve/ reject/ escalate new pricing offers. This platform is available for all Westpac group brands includes Westpac, St.Gerge, Bank of Melbourne, and BankSA.
The customers can be existing customer, new to bank customer or a customer acting on behalf of another customer/organization.
The customers can create a new term deposit account or reprice their existing accounts.
Webpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset. Its such a great tool for web development. One of the great feature it offers is the ability to tree shaking the javascript and CSS bundles with the right plugins.
For js tree shaking. I have used UglifyJsPlugin. Below is how I got the plugin works in my webpack.config.js file.
JavaScript
1
2
3
newwebpack.optimize.UglifyJsPlugin({
compress:{warnings:false}
}),
For css tree shaking. I have used PurifyCSSPlugin. Below is how I got the plugin works in my webpack.config.js file.
JavaScript
1
2
3
4
5
6
newPurifyCSSPlugin({
// Give paths to parse for rules. These should be absolute!
Another nice feature that I love to use in my webpack config is the ability to control how chunks should be sorted before they are included to the html via chunksSortMode option of html-webpack-plugin
JavaScript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
newHtmlWebpackPlugin({
title:'My Dashboard (Webpack)',
template:'./index.ejs',
hash:true,
minify:{
collapseWhitespace:true
},
chunksSortMode:function(a,b){//alphabetical order
if(a.names[0]>b.names[0]){
return1;
}
if(a.names[0]<b.names[0]){
return-1;
}
return0;
}
}),
To control the order of the chunks, I name them with the number at the front of that name. For example
Portfolio Press has always been one of my favorite free themes in term of showcasing any work portfolio or just normal gallery of pictures.
However, in some cases we would love to have a little introduction paragraph or some kind of summary of what this gallery page we am showing is about.
It’s very straight forward to show the gallery but whatever content we composed through WordPress admin doesn’t really get used at all.
I have had a look around on google and even portfolio press forum, and I found someone else also have the same issue reported. However, it wasn’t really the solution I was looking for.
Therefore I come up with my solution.
First of all, I didn’t want to touch the original portfolio theme files for numerous reasons:
Our changes in those original files will get swiped out when the theme gets updated.
We might break some functions because we am not fully aware of everything inside the theme.
As reasons above, we’re better off to create a child theme which inherits from the portfolio press theme and make changes in the child theme files instead. Click here to find out why and how to create a child theme from Portfolio Press.
Once we have child theme ready, create a sub folder called ‘templates’ as image below
Portfolio Press Child Theme Folder Structure
Next, create a copy of file called ‘full-width-image-gallery-formats.php‘ from the original Portfolio Press theme folder and move it into the themes folder created as above.
Then we need to add php code as below
PHP
1
2
3
<div id="post-<?phpthe_ID();?>">
<?phpthe_content();?>
</div><!--#post-<?phpthe_ID();?> -->
right after
XHTML
1
<div id="content"role="main">
and before
PHP
1
<?phpif($portfolio->have_posts()):?>
That’s it. After this change, we now can reused the content of the page to show some introduction text or whatever content we want before the images gallery.
Let me know what your thoughts are on this. Hope this help someone 🙂
I have done lots of research, and I found out that its impossible to do binding for ConverterParameter.
So I came up with the Solution. I created the Converter but inherited from FrameworkElement
public class ShowDeleteServiceConverter : FrameworkElement, IValueConverter
In the converter class, I created a dependency property
Looking for a online terminals to learn new programming languages?
Online Terminals
There are times when we just wanna test or learn something quickly without going through all the hassles to set up the environments; we can definitely use Online terminals.
Online terminals is extremely useful. It provides lots of different terminals.
Whether you are professional developer or beginner just trying to learn how to code, I recommend to give this one a go. You will see how extremely convenient and useful it is.
Been in IT industry for more than 10 years now, I've done lot of web development, content management system, mobile app, etc...Visit http://brandontruong.info for more details