[Solved] how do u make a program that checks many txt files [closed]

I’m not sure if this is what you are asking, but I interpreted this as list the files in a given directory, and then check if the input is in the file. import os string = input(“Please type the input “) directory = “c://files//python” for file in os.listdir(directory): if file.endswith(“.txt”): filecontent = open(file, “r”) if … Read more

[Solved] Updating php values using jquery

If you are using sessions, you will need an ajax call that will call a php file within the session that will update a particular session variable. The issue at hand though is that it would not be an update until the next time the base page was loaded since that information would need to … Read more

[Solved] What is the correct syntax for jq?

-f is for specifying a filename to read your “filter” from – the filter in this case being .sm_api_content It sounds as if you just want to run jq without -f, e.g. jq -r .sm_api_content JSON.txt 0 solved What is the correct syntax for jq?

[Solved] Why does the java accepts integer with a ‘+’ sign and how to not accept integer input with a ‘+’ sign

You are reading an int using Scanner.nextInt(): as described in the documentation, this uses Integer.parseInt to read the number; and that method explicitly states that it accepts a leading + sign: The characters in the string must all be digits of the specified radix (as determined by whether Character.digit(char, int) returns a nonnegative value), except … Read more

[Solved] Generate column Alias name dynamically in MS SQL Server [closed]

create procedure my_procedure (@col_alias varchar(100)) as declare @my_stmt nvarchar(max) = N’select 1+1 as ‘ + @col_alias exec sp_executesql @stmt = @my_stmt exec my_procedure @col_alias=”[This is a dynamix col alias]” This is a dynamix col alias ————————— 2 15 solved Generate column Alias name dynamically in MS SQL Server [closed]

[Solved] Java String Containing Spaces

Well you can use java.util.Scanner.next() method. see the documentation next() Finds and returns the next complete token from this scanner. Scanner sc = new Scanner(System.in); String str = sc.next(); System.out.println(str); There are also plenty of other options available if you’re willing to switch from Scanner class. One possible option is using java.io.BufferedReader class. BufferedReader bi … Read more

[Solved] Convert map values to plain strings without brackets? [closed]

From the below information provided by you: when I iterate over it and return the values they return [hello] [world] It seems that your currentMap actually stores string slices []string as values, behind the interface{} type. Assuming that above line means that you see this when printing the map using fmt.Println(), or similar functions. map[first:[hello] … Read more

[Solved] HTML iframe not working when i write src= of facebook

Updating the page reference in the source (src) attribute will display the page you specified. <iframe src=”http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fbigfishlaspalmas&amp;width=320&amp;colorscheme=light&amp;show_faces=false&amp;border_color=&amp;stream=true&amp;header=false&amp;height=395″ scrolling=”no” frameborder=”0″ style=”border:none; overflow:hidden; width:320px; height:395px;” allowTransparency=”true”></iframe> src=”http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fbigfishbudapest&width=320&colorscheme=light&show_faces=false&border_color=&stream=true&header=false&height=395″ src=”http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fbigfishlaspalmas&width=320&colorscheme=light&show_faces=false&border_color=&stream=true&header=false&height=395″ solved HTML iframe not working when i write src= of facebook

[Solved] How to draw a histogram from existing bin values

Since you already have binned data, just use pyplot.errorbar or add yerr kwarg to bar plot from matplotlib import pyplot as plt plt.errorbar( [n/len(bins) for n, x in enumerate(bins)], [x[0][0] for x in bins], yerr = [x[0][1]**0.5 for x in bins], marker=”_”, fmt=”.”) plt.bar( [n/len(bins) for n, x in enumerate(bins)], [x[0][0] for x in bins], … Read more

[Solved] Python String concatenation with in double quotes [closed]

That isn’t a concatenation: you’re not appending this to anything else. It’s only a value substitution. Thus, you should (1) use the variable name, rather than a string; (2) leave out the concatenation attempt. “device-id”: d1, This should substitute the desired value of varibale d1. solved Python String concatenation with in double quotes [closed]

[Solved] How to make threads write their numbers in reverse order using OpenMP?

I don’t really understand the purpose of what you are asking but this works #include “omp.h” #include <iostream> using namespace std; int main() { #pragma omp parallel { int nthreads = omp_get_num_threads(); for(int i=nthreads-1; i>=0; i–) { #pragma omp barrier { if(i==omp_get_thread_num()) { #pragma omp critical cout << “I am thread “<< i <<endl; } … Read more