_id
stringlengths
2
6
text
stringlengths
4
46k
title
stringclasses
1 value
d9801
You must run a web server (even locally) when working with Google+ Sign in. A simple example is to run Python with your port set to 8080: python -m SimpleHTTPServer 8080 You can also configure / run Apache or another server for local testing.
d9802
This can be done via the filterMenuInit event: /* grid configuration snip */ .Events(e => e.FilterMenuInit("filterMenuInit")) /* grid configuration snip */ <script> function filterMenuInit(e) { e.container .find("select.k-filter-and") .data("kendoDropDownList") .value("or"); } </...
d9803
Look at the documentation here https://github.com/mysqljs/mysql#escaping-query-values. connection.query('INSERT INTO posts SET ?', post, function(err, result) { if (!err) { console.log('Successfully added information.'); } else { console.log(result); console.log('Was ...
d9804
You just need to specify the breaks in scale_color_continous() g1 <- ggplot(mtcars, aes(x=mpg, y=carb, color=disp)) + geom_point(size=3) + theme(legend.key.height = unit(2,'cm')) g1 + scale_color_continuous(breaks=seq(50,500,25))
d9805
Use the property value you pass in as computed key of your el object (tag in your code), in order to pass the property value for the element inside the forEach dynamically, depending on the property you passed in arr.forEach(el => { links.push(el[property]); })
d9806
I think you need see documentation about Hierarchical Queries to connect your data use connect by, to get root element - connect_by_root, to filter the elements by root you need use where connect_by_root(E622SIM.CodPro) = 'BSFX30' I tried to compile your description into scripts create table E622SIM(NumLig int, CodPro...
d9807
I found the answer, sorted it out. I must add the expression begin for multiple statements after when. Not the double parentheses. (for ([I (range (- (length List) 1))]) (for ([J (range (+ I 1) (length List))]) (set! Left (list-ref List I)) (set! Right (list-ref List J)) (when (> Left Right) (begi...
d9808
there are few things which i am not able to understand... <ul ng-change="timeline.selectNote()" ng-model="timeline.updateNotes" ng-repeat="note in timeline.notes"> why ng-change and ng-model on the ul ng-model="timeline.updateNotes" timeline.updateNotes = function(){ updateNotes is a function, it can not be...
d9809
Hole punching is what it sounds like you may need. Add a etc/cache.xml file with a <config> root to your module. (see Enterprise/PageCache/etc/cache.xml). Choose a unique [placeholder] name. The placeholders/[placeholder]/block node value must match the class-id of your custom dynamic block, e.g. mymodule/custom The pl...
d9810
The MDM is supposed to handle this. You should not be required to check every request in the API to make sure it is secure. Airwatch, for instance, makes all of your applications downloadable only through their catalog and the agent or vpn system connects when the application is opened. If the user were to attempt to c...
d9811
Basically, you're constructing a programming language here (albeit simple, it's still a programming language). To interpret a programming language you need a compiler, which usually contains a lexer (which splits input stream into meaningful tokens) and a parser (which reads tokens one by one and takes whatever actions...
d9812
I think I found a solution for you man check this out: <i id="icon">click</i> <input class="datepicker" style="display:none;" value="click"></input> $('.datepicker').pickadate({ selectMonths: true, selectYears: 15 }); $('#icon').click(function(event){ event.stopPropagation(); $(".datepicker").fir...
d9813
BY USING JQUERY: $('.pds-votebutton-outer').css('text-align','center'); DEMO USING JQUERY http://jsfiddle.net/rathoreahsan/25LjE/29/ OR BY USING CSS: .pds-votebutton-outer { text-align:center; } DEMO USING CSS http://jsfiddle.net/rathoreahsan/25LjE/33/ A: You can try $('#example td:nth-col(1)').textAlign(','); ...
d9814
Yes, last week. No warning from Facebook. A: Our apologies for this change - we've reverted this change and will take precaution to avoid these things in the future. Thank you for the report. We've added another parameter to use in your query if you want to get the city name without the state. Documentation updated: ...
d9815
You can use the Cordova plugin InAppBrowser https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-inappbrowser/ A: No need to change, if you just want your cordova project would run on web as well then use below command : cordova platform add browser This works for me.
d9816
check the construct of the class : AuthorCollection . it seems that it si not supporting ; \Magento\Store\Model\StoreManagerInterface; but need an \Magento\Framework\DB\Adapter\AdapterInterface object . so when you call the construct of the class AuthorCollection you should use exactly the same type share your cl...
d9817
The problem you're having is because you're trying to convert a string to a currency. From MSDN: The Currency ("C") Format Specifier The "C" (or currency) format specifier converts a number to a string that represents a currency amount. The .ToString(string format, IFormatProvider formatProvider) overload you're try...
d9818
From Apple documentation: // Reference type example class C { var data: Int = -1 } var x = C() var y = x // x is copied to y x.data = 42 // changes the instance referred to by x (and y) println("\(x.data), \(y.data)") // prints "42, 42" Copying a reference implicitly creates a...
d9819
One option is to use the onNavigationStateChange event handler to intercept and seize control from the WebView: render() { var recipientViewURL = this.props.route.data.url; console.log('Recipient URL is: ' + recipientViewURL); return ( <View style={styles.container}> <WebView source=...
d9820
You need BooleanField. BinaryField is for binary data. https://docs.djangoproject.com/en/dev/ref/models/fields/#booleanfield
d9821
It seems as if this has a historic background. What makes using -hd graphics still worthwhile is that loading them doesn't rely on Apple functionality but is rather done in framework code. So -hd can be loaded for iPads in iPhone Simulator mode and make use of the higher resolution pictures in 2x mode. Other than that ...
d9822
The validation you are doing is asynchronous. You call the User.find method, and after that the validation method returns. Sequelize has no way of knowing that you are doing something async in your validation, unless you tell it so. Once your find call is done you throw the error, but the validation has completed, so t...
d9823
I can think of 3 possible causes of your problems, given that no errors are shown in your console. * *JQuery could have been loaded twice. * *check for inclusions of files which may already have been included in the others. *The .js files which you are referencing might not be in the right order, * *make s...
d9824
I found the Solution for this problem. I am having method inside method which closing the database. Because of that error coming. Thanks for help.
d9825
In Scanner you can use it with Locale to specify Locale like dot . as decimal separator: Scanner fin = new Scanner((new URL(url)).openStream()).useLocale(Locale.ENGLISH);
d9826
It called "Ripple effect". there are many related question in SO, see this https://stackoverflow.com/a/27237195/3814729 .
d9827
The problem is that you are always calling the mypass function inside myModule. This happens also when you import it from the main module. This is why you don't see the password printed to the terminal on the first time when running the main.py file. You should put the mypass() function call in the myModule inside the ...
d9828
You can save your music file in the documents folder and set "Application supports iTunes file sharing" to YES. Then you can reach the file from outside the app. Hope this helps
d9829
Quoting the manual: When using ‘fields’ and ‘contain’ options - be careful to include all foreign keys that your query directly or indirectly requires. A: I think you should remove the 'fields' option and the model name in the fields lists: $this->Review->Behaviors->attach('Containable'); $latestReviews = $this-...
d9830
Here is how to get a report to fit on a letter page: * *Click on the blank space outside of your report *Look at the properties and find interactive size. Set it to 11,8.5in. Set your Margins to 0.5in, 0.5in, 0.5in, 0.5in *Click on the body and select properties. Set the width to 10in and something less than 7.5...
d9831
Did you implement the mail class in your .h files A: Replace your hard coded values in "launchMailAppOnDevice".. it works for mine
d9832
Of course this question will be opinionated because it's fairly broad. Everyone has their own preferred choice. Though if you are a beginner to web programming and you'd like to use python I'd say start with flask.
d9833
Here are some of the possible causes: * *The encoding of the file doesn't match the encoding that you are using to read it, and the "pound" character in the file is getting "mangled" into something else. *The file and your source code are using different pound-like characters. For instance, Unicode has two code po...
d9834
I got the same error (for archiving only) for my Swift framework with C code inside. Only this remedy helped me. Add -Xcc -Wno-error=non-modular-include-in-framework-module in Other Swift Flags (build settings of framework). This flag forces the compiller count that error as a warning.
d9835
You can use the checklist parent() property Assuming your rendered html look like this <div id="repeater_435734957439857435"> <input type="text" class="RepeaterTextbox">Test</input> <input type="checkbox"> </div> Your checkbox select event can be something like $(this).parent().find(".RepeaterTextbox")[0].text()...
d9836
A : in the function signature always means an input argument to the function. The function signature contains the argument label followed by a :. The _ means there's no argument label, in which case you can omit the : as well when supplying that specific input argument to the function call. This is exactly what you see...
d9837
You can group the data by ParentCategory and within that group order the grouped data by PackageCost. This should give you the expected output:- var packageId = objentity.PackageGalleries .Where(p => p.ParentCategory != "Indian" && p.ParentC...
d9838
Your description says that you are actually not interested in the concatenation but in the (2-element) sets that are composed from the paired data. Representing them (as you do) as a 2-letter string, go along the following template. WITH CTE AS ( SELECT CPR1.PARTY_IDENTIFIER AS PARTY1, CPR2.PARTY_IDE...
d9839
Note that in Pandas you can index in ways other than elementwisely with at. In the four-liner below, index is a list which can then be used for indexing with loc. for parameter in dictionary_of_parameters: index = df[df[parameter].isin(dictionary_of_parameters[parameter]['target'])].index df.loc[index,'financia...
d9840
Difficult to tell from the snippet you provide, but I'd consider having three derived foo classes, FooI1, FooI2 and FooI3, and constructing the appropriate one with a factory based on InputType. Then all the specializations just get implemented in virtual methods for each of the new classes. class FooI1: public Foo { ...
d9841
Try something like this: nvim -c ':vsp|Explore|sp|Explore|sp|Explore' Placing terminal in front is tricky because it steals focus. Now I got a idea. nvim -c ':vsp|Explore|sp|Explore|sp|Explore|wincmd w|te'
d9842
What you're seeing is the list of Element objects that were selected by xpath(). In this case, it's just one Element with the name {http://autosar.org/schema/r4.0}ECUC-CONTAINER-VALUE. That's the full name with the namespace uri in Clark notation. If you want to print the serialized tree, try (untested): print(etree.to...
d9843
What about this solution: public class Pages { private string _folderName; public int PageID { get; set; } public string FolderName { get { return _folderName; } set { _folderName = value?.Trim() ?? string.Empty; } } } A: You need a ba...
d9844
Fatal errors can't be muted or catched. You need to raise amount of memory allowed for PHP script by using memory_limit setting in php.ini
d9845
Just use something like df[df != 0] to get at the nonzero parts of your dataframe: import pandas as pd import numpy as np np.random.seed(123) df = pd.DataFrame(np.random.randint(0, 10, (5, 5)), columns=list('abcde')) df Out[11]: a b c d e 0 2 2 6 1 3 1 9 6 1 0 1 2 9 0 0 9 3 3 4 0 0 4 1 ...
d9846
Use {{comida.id}} to get unique ids : {% for comida in comidas %} {% if comida.slug_food == page.slug %} <div class="food2"> <div id="food-title">{{comida.titulo}}</div> <div id="food-price">{{comida.precio|floatformat:"-1"}}€</div> <button class="button" onclick="showDescription('{{co...
d9847
I made an example of what you are trying to achieve: class SO extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( body: Center( child: Container( height: 200, width: 300, decoration: BoxDecoration( color: Color...
d9848
Try this instead : @Html.DropDownListFor(model => model.PropertyStatus, ViewBag.PropertyStatus) Edit ::: Alternately try this Controler: public ActionResult Edit(int id) { Property property = db.Properties.Find(id); ViewBag.PropertyStatusList = SetViewBagPropertyStatus(property.PropertyStatus); return Vi...
d9849
The server error indicates that is searching something called aws/dev (where aws is the data bag's name and dev is the name of the item within that data bag). So you would have to place your JSON file under test/integration/data_bags/aws/dev.json. Btw. you don't have to manually specify the data_bags_path, as test-kitc...
d9850
try to use wrap_content to RelativeLayout height attribute inside NestedScrollView like below code <android.support.v4.widget.NestedScrollView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/postDetails" android:background="?attr/backgroundColor"> <Relati...
d9851
You need to call a method like ToList() to force linq to get the data. Then just add that list to your cache.
d9852
Your parameter for the Include method should be the column name which is a pointer, not the class name which is pointed to. Try changing this line: $pqry->whereInclude("productId") ;
d9853
Add it here: $this->fileHandle = @fopen($this->filename, 'w'); if (!$this->fileHandle) { $this->setError('Could not open file'); $this->fileHandle = NULL; return FALSE; } fputs($this->fileHandle, chr(0xEF) . chr(0xBB) . chr(0xBF));
d9854
possibly syntax, it's working on this fiddle A: The background-size property allows you to change the dimensions of the background image, unless you need it to work in IE8 and perhaps Opera Mini.
d9855
Machine Independence Machine independence refers to the idea of software that can be executed irrespective of the machine on which it executes. A piece of Machine dependent software might be something written to use, say assembly instructions that are specific to a certain architecture. For example, if you write a C++ ...
d9856
I did this using https://stackoverflow.com/a/54561421/12302484. I've made the class that implements the IControl interface. Then returned the component from the onAdd method resolved by dynamic component service. map.component.ts: private configureControls(): void { this.map.dragRotate.disable(); this.map.touch...
d9857
You are doing nothing wrong here. You need to use the methods like .entires(), .get(), .getAll() and so on to access the values, or keys. I had the same issue some time ago, and if you need to convert your FormData to JSON, you need to write some code, which does this for you, JSON.stringify() does not work in this ca...
d9858
EditPad Pro can do this: Using the Convert - &#65535; and &#xFFFF; -> Character command (and assuming that the current file is set to UTF-8 and that you're using a font that contains the required glyphs), you get When you save that, you get a correctly UTF-8-encoded file with or without BOM, as you choose. Disclaime...
d9859
Does this works? Button button = (Button) findViewById(R.id.button); button .setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { EditText et = findViewById(R.id.number); int num = Integer.parseInt(et...
d9860
Use ` to escape the $ in an expandable string literal: $Read_Opus_Category -replace 'Tag000: (.*)', "Tag000: `$1 hello $scategory"
d9861
Instead of trying to create a separate widget SearchUsers, try to create a dialog and show it when anyone wants to search users. You can also use the navigator and the back button in this case and get arguments passed from the next screen to the previous screen.
d9862
RegEx: (?:<iframe.+src=")([^"]+)(?:.*>) Then you'll have a captured group $1 containing only the src url.
d9863
Sure. Just use OPENROWSET(BULK ...) instead of BULK INSERT and you can add whatever extra columns you want. EG select * from openrowset(bulk 'C:\TEMP\dane.csv', format='CSV')
d9864
You have to draw over using a suitable Layout like RelativeLayout. Using ImageView and TextView, it is possible to have such result.
d9865
I made some napkin math, and I have an idea that may work. As per Reference Manual, page 948, the max baud rate for UART of STM32F334 is 9Mbit/s. If we want to send memory at the specific address, it will be 32 bits. 1 bit takes 1/9Mbps or 1.111*10^(-7)s, multiply that by 32 bits, that makes it 3.555 microseconds. Obvi...
d9866
I did not look through all your code. I will answer only your question. You have to pass pRoot to TTree_Insert by reference. Otherwise you pass its copy to the function and any changes of the copy within the function do not influence the original value. For example void TTree_Insert ( TNo **pRoot, char word[80] ){ ...
d9867
:h :sort is your friend: :[range]sort r /[^;]*/ If along the way you wish to remove duplicates, add the uniq flag: :[range]sort ur /[^;]*/ (This won't do any good if you have different comments after the ';' though) A: :1,4s/;$// :sort :1,4s/$/;/ (where 1,4 are lines with using statements) A: Not using CodeRush or...
d9868
var_dump out your query just before you run it, Are all the expected parameters there? Try running that in your local db tool (mysql workbench, phpmyadmin), does it do what you like? var_dump out the variables at each step of the way and die (or alternatively use a debugger to step through the code 1 line at a time), ...
d9869
This code should get you close. I tried to document exactly what I was doing. It does rely on BASH and the GNU version of find to handle spaces in file names. I tested it on a directory fill of .DOC files, so you'll want to change the extension as well. #!/bin/bash V=1 SRC="." DEST="/tmp" #The last path we saw -- ma...
d9870
For HTML like this: ... <div> <label for="NameTextBox">Name:</label> <input type="text" id="NameTextBox" /> </div> <div> <label for="AgeTextBox">Age:</label> <input type="text" id="AgeTextBox" /> </div> <div> <label for="EducationSelect">Education:</label> <select id="EducationSelect"> ...
d9871
The problem described in the question can be resolved by changing the application.css.scss manifest to use import instead of require: @import "bootstrap_local"; It is also necessary to remove any require_tree . from the manifest because it would otherwise require the same bootstrap_local file because it lies in its pa...
d9872
Found it! The variable hash is not in hexadecimal format - well, it actually is, but not in the way the system wants it. I don't understand why, but the fact is that you have to do a hash.toHex() in order to get the right value. So, the solution is something like this: const hash = await api.tx.balances .transfer...
d9873
I can't see anywhere where you set the cell sizes so be sure your cells content sizes are being setup correctly. If you're using a flow layout you can set the size like this: let layout = UICollectionViewFlowLayout() layout.scrollDirection = .vertical layout.itemSize = CGSize(width: 50, height: 50) collectionView.colle...
d9874
You need to add GROUP BY cities.name SELECT cities.name, COUNT(answers.id) FROM answers JOIN users ON users.id = answers.user_id JOIN cities on users.city_id = cities.id GROUP BY cities.name This will tell MySQL that you want the COUNT to be grouped by cities. Without this, mysql will group everything together and cou...
d9875
* *change < to > in if condition as n >(Math.pow(3,i)) *or use below code which calculates pow only once int temp = 0, a; Scanner obj = new Scanner(System.in); System.out.print("Enter the number "); int n = obj.nextInt(); int i = 1; while (true) { int pow = (int) Math.pow(3, i); if (pow > n) { ...
d9876
Just update your androidx.test.ext:junit dependency to 1.1.3 or later. This should solve your problem. androidTestImplementation "androidx.test.ext:junit:1.1.3" A: It might be due to deprecated gradle features used is incompatible with your Gradle version 8.0 Try running the Gradle build with this command line argume...
d9877
A submodule can work, but if you try to clone something that contains submodules for which one of the remotes is unavailable, you'll have aggravating errors. My alternative would be to use the 'filter-branch' command to maintain a public branch that would omit the copyrighted files for public consumption on GitHub. A:...
d9878
Use the struct module (documentation), specifying the data as a float.
d9879
You need to use extern "C" to prevent name mangling and ensure the function is exported: extern "C" __declspec(dllexport) void Myfunction(BOOL); To view the exports from your DLL you can use dumpbin.exe utility that is shipped with Visual Studio: dumpbin.exe /EXPORTS MyDll.dll This will list the names of all exported...
d9880
to share a an url, website, in facebook u can use: https://www.facebook.com/sharer.php?u=URLHERE so, to get the thumbnail, title and the excerpt, to show properly in anywhere, u need to set in ur website as meta-tags inside head tags. like: <!-- FB Share --> <meta property="og:url" content="URLHERE" /> <meta property=...
d9881
You need a file to tie them together. So along with a.js and b.js, have a main.js that looks like this: import A from './a'; import B from './b'; export default { A, B, }; Then update your rollup.config.js with input: path/main.js.
d9882
With Java 8, life is easy: list.removeIf(s -> !s.startsWith("ab")); This will remove all elements that don't begin with "ab". Note that you can use values() to retrieve the map's values and work directly on them, without the need to convert to ArrayList.
d9883
Windows by default will prefer .DLL files in the same directory as the .EXE. So while developing, you can put them in your Visual Studio Debug and Release folders. For other people, you include the DLL's in the installer. The exception is the *140.dll stuff, for which you need the Visual C++ redistributable. That's ins...
d9884
You should initialize your app in the ng-app. Like this <html ng-app="appModule"> Then it will work. if the ngApp directive were not placed on the html element then the document would not be compiled, the AppController would not be instantiated See angularjs docs for reference on this https://docs.angularjs.org/api/...
d9885
In gridview setAdapter() as you normally do for custom ListView by extending BaseAdapter and passing the arraylist of paths to this adapter class. Now in getView() method of Adapter add following lines Bitmap mBitmap = BitmapFactory.decodeFile(path); mView.setImageBitmapReset(mBitmap, 0, true); where mView is an Image...
d9886
Singleton pattern is a common approach if you only want one instance of the object. A lot of people regard it as an anti-pattern, yet it is still very popular. Spring beans are singletons, and redux store is a singleton! If you are only using it in one method, you might as well free up the heap and store it locally in ...
d9887
Follow steps : 1. Get registration ID of app user's device and save it to your database. private String getRegistrationId(Context context) { final SharedPreferences prefs = getGCMPreferences(context); String registrationId = prefs.getString(PROPERTY_REG_ID, ""); if (registrationId.isEmpty()) { Log.d(TA...
d9888
This was the solution i found by the hint from Ander Biguri. I used surf to plot spheres instead of scatter3. fig = figure(1); hold on daspect([1,1,1]); colormap summer shading interp % removes the lines in surfplot surface.xnum = 8; surface.znum = 8; surface.r = 0.75; circlenumber = 0; for m = 1:surface.xnum ...
d9889
Yes that's possbile. let el_array = document.getElementsByClassName('edit'); Then loop on el_array and apply this to each element el.contentEditable = true; A: Yes this is possible, just run a simple loop over all elements with the edit class and give them contentEditable true [...document.getElementsByClassName("ed...
d9890
Three issues appear to need attention. * *"time to go" needs to be stored outside the screen update function and decremented or calculated each time the screen is updated. *using parseInt to convert numbers to integer numbers is regarded as a hack by some. Math.floor() or integer calculation can be alternatives. *...
d9891
I am not sure what is going on here. If I take a very simple DGEMM example (cribbed directly from the MKL fortran guide): PROGRAM MAIN IMPLICIT NONE DOUBLE PRECISION ALPHA, BETA INTEGER M, K, N, I, J PARAMETER (M=8000, K=8000, N=8000) DOUBLE PRECISION A(M,K), B(K,...
d9892
You ever heard of SQL Server? Like SQL Server EMBEDDED? No install ;) A: You have contradictory requirements. Small and embedded (no server) usually means SQL Server compact or SQLLite. But these are neither multi-user not network aware in practice. Especially whan you say "hundreds of multiple users" So you have to ...
d9893
public List<string> FirstNames { get { return _contactList.Select(C => C.FirstName).ToList(); } } A: You want to use the Select method, not Where here: _contactList.Select(C => C.FirstName).ToList(); Further, the need for the ToList() only exists because the property demands it. You could return a...
d9894
I can't reproduce the problem. If I run this snippet of code: myRef.orderByKey().addValueEventListener(new ValueEventListener() { public ArrayList<Long> mDataArrayList; @Override public void onDataChange(DataSnapshot dataSnapshot) { if (mDataArrayList == null) { mDataArrayList = new A...
d9895
Seems I had automatic backup turned on but the config file was missing. So, the server looked like it started up but actually didn't. I created the config file and set enabled to false. Still didn't start up because it sees the false and stops the configuration and throws an exception because the 'delay' parameter isn...
d9896
An overload of CreateFullTextQuery exists that allows you to specify the types to search: fullTextSession.CreateFullTextQuery(query, typeof(EntityA), typeof(EntityB)).List<ISearchable>(); It's a little clunky having to specify all the types, but they load fine. The only remaining problem I have is that my assumption t...
d9897
I originally wrote a for loop that was straightforward but I incurred in the problem to delete item(i) recursively. The next item previously accessed as item(i+1) will decrease by 1, creating a strange effect of erasing several rows unexpectedly. As proposed by @absolute.madeness, below the solution that avoids that. I...
d9898
Jobs are asynchronous. Your code is not. Ignoring for the moment the fact that if you're dynamically granting privileges that something in the world is creating new tables live in production without going through a change control process (at which point a human reviewer would ensure that appropriate grants were includ...
d9899
use the split function: string[] paths = txtattach.Text.Split(','); A: One way to do this is using the Split method so you easily can iterate over the items in a loop: foreach(var filename in txtAttach.Text.Split(',')) { // Do something with filename }
d9900
A different approach: final = [] for i in range(10): temp = ["." for j in range(10)] temp[int(i / 2)] = "#" temp[int(i / 2) + 1] = "#" temp[-int(i / 2) - 1] = "#" temp[-int(i / 2) -2] = "#" final.append(temp) for a in final: print("".join(a)) Will print: ##......## ##......## .##....##. .#...